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