]> SALOME platform Git repositories - modules/geom.git/blob - src/MeasureGUI/MeasureGUI_Skeleton.h
Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[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              ClickOnHelp(); 
56     virtual void              DeactivateActiveDialog();
57     virtual void              ActivateThisDialog();
58     virtual void              SelectionIntoArgument();
59     virtual void              LineEditReturnPressed();
60     virtual void              SetEditCurrentArgument();                              
61
62 protected:
63
64     void                      Init();
65
66     void                      enterEvent( QEvent* e );
67     void                      closeEvent( QCloseEvent* e );
68     void                      redisplayPreview();
69     GEOM_Displayer*           getDisplayer();
70
71     virtual bool              isValid( QString& msg );
72     virtual SALOME_Prs*       buildPrs();
73     virtual void              processObject();
74     virtual void              activateSelection();
75
76     virtual GEOM::GEOM_IOperations_ptr createOperation();
77
78 protected:    
79     
80     QPushButton*              mySelBtn;
81     QLineEdit*                mySelEdit;
82     GEOM::GEOM_Object_var     myObj;
83     
84     GeometryGUI*              myGeomGUI;
85     GEOM_Displayer*           myDisplayer;
86
87     QString                   myHelpFileName;
88 };
89
90 #endif // MEASUREGUI_SKELETON_H
91
92
93
94
95
96
97
98
99
100
101