]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_SuppressFacesDlg.h
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_SuppressFacesDlg.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   : GeometryGUI_SuppressFacesDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_SUPPRESSFACES_H
30 #define DIALOGBOX_SUPPRESSFACES_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <qvariant.h>
36 #include <qdialog.h>
37
38 #include <AIS_InteractiveContext.hxx>
39
40 class QVBoxLayout; 
41 class QHBoxLayout; 
42 class QGridLayout; 
43 class QButtonGroup;
44 class QCheckBox;
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class QRadioButton;
50 class GeometryGUI;
51
52
53 //=================================================================================
54 // class    : GeometryGUI_SuppressFacesDlg
55 // purpose  :
56 //=================================================================================
57 class GeometryGUI_SuppressFacesDlg : public QDialog
58
59     Q_OBJECT
60
61 public:
62     GeometryGUI_SuppressFacesDlg( QWidget* parent = 0,
63                                   const char* name = 0,
64                                   SALOME_Selection* Sel = 0,            
65                                   Handle (AIS_InteractiveContext) ic = 0,       
66                                   bool modal = FALSE,
67                                   WFlags fl = 0 );
68     
69     ~GeometryGUI_SuppressFacesDlg();
70
71 private :
72       
73     void Init( SALOME_Selection* Sel, Handle (AIS_InteractiveContext) ic ) ;
74     void closeEvent( QCloseEvent* e ) ;
75     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
76     void ResetStateOfDialog() ;
77     
78     /* Interactive and local context management see also : bool myUseLocalContext() */
79     Handle (AIS_InteractiveContext) myIC ;                 /* Interactive context */ 
80     Standard_Integer                myLocalContextId ;     /* identify a local context used by this method */
81     bool                            myUseLocalContext ;    /* true when this method as opened a local context  */
82
83     GEOM::GEOM_Gen_var           myGeom ;                /* Current Geom object */
84     GeometryGUI*                    myGeomGUI ;             /* Current GeomGUI object */
85     SALOME_Selection*               mySelection ;           /* User shape selection */
86
87     TopoDS_Shape                    myShape ;
88     char*                           myShapeIOR ;
89     bool                            myOkShape ;
90
91     bool                            myOkSelectSubMode ;     /* true = sub mode selection activated */
92     QLineEdit*                      myEditCurrentArgument;  /* Current LineEdit */   
93     int                             myConstructorId ;       /* Current constructor id = radio button id */
94  
95     QButtonGroup* GroupConstructors;
96     QRadioButton* Constructor1;
97     QGroupBox* GroupC1;
98     QLabel* TextLabelC1A1;
99     QPushButton* SelectButtonC1A1;
100     QLineEdit* LineEditC1A1;
101     QGroupBox* GroupButtons;
102     QPushButton* buttonOk;
103     QPushButton* buttonApply;
104     QPushButton* buttonClose;
105
106     QCheckBox* CheckBox1;
107
108 private slots:
109
110     void ConstructorsClicked(int constructorId);
111     void ClickOnOk();
112     void ClickOnApply() ;
113     void ClickOnClose();
114
115     void LineEditReturnPressed() ;
116     void SetEditCurrentArgument() ;
117     void SelectionIntoArgument() ;
118     void DeactivateActiveDialog() ;
119     void ActivateThisDialog() ;
120     void ActivateUserSelection() ;
121
122 protected:
123     QGridLayout* GeometryGUI_SuppressFacesDlgLayout;
124     QGridLayout* GroupConstructorsLayout;
125     QGridLayout* GroupC1Layout;
126     QHBoxLayout* Layout2;
127     QGridLayout* GroupButtonsLayout;
128 };
129
130 #endif // DIALOGBOX_SUPPRESSFACES_H