Salome HOME
sources v1.2
[modules/geom.git] / src / GEOMGUI / GeometryGUI_ArchimedeDlg.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_ArchimedeDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_ARCHIMEDE_H
30 #define DIALOGBOX_ARCHIMEDE_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <qvariant.h>
36 #include <qdialog.h>
37 #include <qvalidator.h>
38
39 class QVBoxLayout; 
40 class QHBoxLayout; 
41 class QGridLayout; 
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class GeometryGUI;
49
50
51 //=================================================================================
52 // class    : GeometryGUI_ArchimedeDlg
53 // purpose  :
54 //=================================================================================
55 class GeometryGUI_ArchimedeDlg : public QDialog
56
57     Q_OBJECT
58
59 public:
60     GeometryGUI_ArchimedeDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
61     ~GeometryGUI_ArchimedeDlg();
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
73     Handle(SALOME_InteractiveObject)  myIO ; 
74
75     Standard_Real                 myWeight ;
76     Standard_Real                 myWaterDensity ;
77     Standard_Real                 myMeshingDeflection ;
78
79     bool                          myOkIO ; 
80     bool                          myOkWeight ; 
81     bool                          myOkWaterDensity ; 
82     bool                          myOkMeshingDeflection ;
83
84     int                           myConstructorId ;         /* Current constructor id = radio button id */
85     QLineEdit*                    myEditCurrentArgument;    /* Current LineEdit */
86
87     QDoubleValidator              *myVa ;                   /* Double validator for numeric input */
88     QDoubleValidator              *myVb ;                   /* Double validator for numeric input */
89     QDoubleValidator              *myVc ;                   /* Double validator for numeric input */
90
91     QButtonGroup* GroupConstructors;
92     QRadioButton* Constructor1;
93     QGroupBox* GroupButtons;
94     QPushButton* buttonApply;
95     QPushButton* buttonOk;
96     QPushButton* buttonCancel;
97     QGroupBox* GroupC1;
98     QLineEdit* LineEditC1A1;
99     QLineEdit* LineEditC1A2;
100     QLineEdit* LineEditC1A3;
101     QLineEdit* LineEditC1A4;
102     QPushButton* SelectButtonC1A1;
103     QLabel* TextLabelC1A1;
104     QLabel* TextLabelC1A2;
105     QLabel* TextLabelC1A3;
106     QLabel* TextLabelC1A4;
107
108 private slots:
109
110     void ConstructorsClicked(int constructorId);
111     void ClickOnOk();
112     void ClickOnCancel();
113     void ClickOnApply();
114     void SetEditCurrentArgument() ;
115     void TextChangedInLineEdit(const QString&) ;
116     void SelectionIntoArgument() ;
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119
120 protected:
121     QGridLayout* GeometryGUI_ArchimedeDlgLayout;
122     QGridLayout* GroupConstructorsLayout;
123     QGridLayout* GroupButtonsLayout;
124     QGridLayout* GroupC1Layout;
125 };
126
127 #endif // DIALOGBOX_ARCHIMEDE_H