Salome HOME
NPAL17910: GUI for KindOfShape.
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "GEOM_MeasureGUI.hxx"
33
34 #include "MeasureGUI_Skeleton_QTD.h"
35 #include "GEOMBase_Helper.h"
36
37 class GeometryGUI;
38 class QWidget;
39 class QLineEdit;
40 class QPushButton;
41 class GEOM_Displayer;
42
43 class GEOM_MEASUREGUI_EXPORT 
44     MeasureGUI_Skeleton : public MeasureGUI_Skeleton_QTD,
45                           public GEOMBase_Helper
46
47     Q_OBJECT
48
49 public:
50                               MeasureGUI_Skeleton( GeometryGUI*      GUI,
51                                                    QWidget*          parent,
52                                                    const char*       name );
53                               ~MeasureGUI_Skeleton();
54
55 protected slots:
56
57     virtual void              ClickOnCancel();
58     virtual void              ClickOnHelp(); 
59     virtual void              DeactivateActiveDialog();
60     virtual void              ActivateThisDialog();
61     virtual void              SelectionIntoArgument();
62     virtual void              LineEditReturnPressed();
63     virtual void              SetEditCurrentArgument();                              
64
65 protected:
66
67     void                      Init();
68
69     void                      enterEvent( QEvent* e );
70     void                      closeEvent( QCloseEvent* e );
71     void                      keyPressEvent( QKeyEvent* e );
72     void                      redisplayPreview();
73     GEOM_Displayer*           getDisplayer();
74
75     virtual bool              isValid( QString& msg );
76     virtual SALOME_Prs*       buildPrs();
77     virtual void              processObject();
78     virtual void              activateSelection();
79
80     virtual GEOM::GEOM_IOperations_ptr createOperation();
81
82 protected:    
83     
84     QPushButton*              mySelBtn;
85     QLineEdit*                mySelEdit;
86     GEOM::GEOM_Object_var     myObj;
87     
88     GeometryGUI*              myGeomGUI;
89     GEOM_Displayer*           myDisplayer;
90
91     QString                   myHelpFileName;
92 };
93
94 #endif // MEASUREGUI_SKELETON_H
95
96
97
98
99
100
101
102
103
104
105