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