Salome HOME
SMH: Merged GEOM (NEWGUI, HEAD, POLYWORK)
[modules/geom.git] / src / MeasureGUI / MeasureGUI_Skeleton.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : MeasureGUI_Skeleton.h
25 //  Author : Damine COQUERET
26 //  Module : GEOM
27 //  $Header: 
28
29 #ifndef MEASUREGUI_SKELETON_H
30 #define MEASUREGUI_SKELETON_H
31
32 #include "MeasureGUI_Skeleton_QTD.h"
33 #include "GEOMBase_Helper.h"
34
35 class GeometryGUI;
36 class QWidget;
37 class QLineEdit;
38 class QPushButton;
39 class GEOM_Displayer;
40
41 class MeasureGUI_Skeleton : public MeasureGUI_Skeleton_QTD,
42                             public GEOMBase_Helper
43
44     Q_OBJECT
45
46 public:
47                               MeasureGUI_Skeleton( GeometryGUI*      GUI,
48                                                    QWidget*          parent,
49                                                    const char*       name );
50                               ~MeasureGUI_Skeleton();
51
52 protected slots:
53
54     virtual void              ClickOnCancel();
55     virtual void              DeactivateActiveDialog();
56     virtual void              ActivateThisDialog();
57     virtual void              SelectionIntoArgument();
58     virtual void              LineEditReturnPressed();
59     virtual void              SetEditCurrentArgument();                              
60
61 protected:
62
63     void                      Init();
64
65     void                      enterEvent( QEvent* e );
66     void                      closeEvent( QCloseEvent* e );
67     void                      redisplayPreview();
68     GEOM_Displayer*           getDisplayer();
69
70     virtual bool              isValid( QString& msg );
71     virtual SALOME_Prs*       buildPrs();
72     virtual void              processObject();
73     virtual void              activateSelection();
74
75     virtual GEOM::GEOM_IOperations_ptr createOperation();
76
77     virtual SUIT_Desktop* getDesktop() const;
78
79 protected:    
80     
81     QPushButton*              mySelBtn;
82     QLineEdit*                mySelEdit;
83     GEOM::GEOM_Object_var     myObj;
84     
85     GeometryGUI*              myGeomGUI;
86     GEOM_Displayer*           myDisplayer;
87 };
88
89 #endif // MEASUREGUI_SKELETON_H
90
91
92
93
94
95
96
97
98
99
100