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