Salome HOME
NRI : 1_3_0 version.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_FillingDlg.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_FillingDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_FILLING_H
30 #define DIALOGBOX_FILLING_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <qvariant.h>
36 #include <qdialog.h>
37
38 class QVBoxLayout; 
39 class QHBoxLayout; 
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QSpinBox;
46 class QPushButton;
47 class QRadioButton;
48 class GeometryGUI;
49
50
51 //=================================================================================
52 // class    : GeometryGUI_FillingDlg
53 // purpose  :
54 //=================================================================================
55 class GeometryGUI_FillingDlg : public QDialog
56
57     Q_OBJECT
58
59 public:
60     GeometryGUI_FillingDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
61     ~GeometryGUI_FillingDlg();
62
63 private:
64
65     void Init( SALOME_Selection* Sel ) ;
66     void closeEvent( QCloseEvent* e ) ;
67     void enterEvent ( QEvent * ) ;                 /* mouse enter the QWidget */
68
69     GEOM::GEOM_Gen_var myGeom ;                 /* Current GeomI object */
70     GeometryGUI*          myGeomGUI ;              /* Current GeomGUI object */
71     SALOME_Selection*     mySelection ;            /* User shape selection */
72     GEOM::GEOM_Shape_var        myGeomShape ;            /* is mySectionShape */
73     TopoDS_Shape          mySectionShape ;
74     Standard_Integer      myMinDeg ;
75     Standard_Integer      myMaxDeg ;
76     Standard_Real         myTol3D ;
77     Standard_Real         myTol2D ;
78     Standard_Integer      myNbIter ;
79
80     bool                  myOkSectionShape ;         /* to check when arguments is defined */
81     int                   myConstructorId ;          /* Current constructor id = radio button id */
82     QLineEdit*            myEditCurrentArgument;     /* Current LineEdit */
83     Handle(GEOM_ShapeTypeFilter) myCompoundFilter ;  /* Filter selection */
84
85     QButtonGroup* GroupConstructors;
86     QRadioButton* Constructor1;
87     QGroupBox* GroupButtons;
88     QPushButton* buttonApply;
89     QPushButton* buttonOk;
90     QPushButton* buttonCancel;
91     QGroupBox* GroupC1;
92     QLineEdit* LineEditC1A1;
93     QLabel* TextLabelC1A2;
94     QLabel* TextLabelC1A3;
95     QLabel* TextLabelC1A5;
96
97     QLineEdit* LineEditC1A5;
98     QLabel* TextLabelC1A1;
99     QPushButton* SelectButtonC1A1;
100     QLabel* TextLabelC1A4;
101     QLabel* TextLabelC1A6;
102     QLineEdit* LineEditC1A4;
103
104     QSpinBox* SpinBox_C1A2;
105     QSpinBox* SpinBox_C1A3;
106     QSpinBox* SpinBox_C1A6;
107
108 private slots:
109
110     void ConstructorsClicked(int constructorId);
111     void ClickOnOk();
112     void ClickOnCancel();
113     void ClickOnApply();
114     void SetEditCurrentArgument() ;
115     void SelectionIntoArgument() ;
116     void LineEditReturnPressed() ;
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119
120 protected:
121     QGridLayout* GeometryGUI_FillingDlgLayout;
122     QGridLayout* GroupConstructorsLayout;
123     QGridLayout* GroupButtonsLayout;
124     QGridLayout* GroupC1Layout;
125 };
126
127 #endif // DIALOGBOX_FILLING_H