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