Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RevolutionDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH 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   : SMESHGUI_RevolutionDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_REVOLUTION_H
30 #define DIALOGBOX_REVOLUTION_H
31
32 #include "SALOME_Selection.h"
33 #include "SMESH_LogicalFilter.hxx"
34 // QT Includes
35 #include <qdialog.h>
36
37 class QGridLayout; 
38 class QButtonGroup;
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class QCheckBox;
45 class QSpinBox;
46 class SMESHGUI_SpinBox;
47 class SMESHGUI;
48 class SMESH_Actor;
49 class SMESHGUI_SpinBox;
50
51 // IDL Headers
52 #include <SALOMEconfig.h>
53 #include CORBA_SERVER_HEADER(SMESH_Mesh)
54
55
56 //=================================================================================
57 // class    : SMESHGUI_RevolutionDlg
58 // purpose  :
59 //=================================================================================
60 class SMESHGUI_RevolutionDlg : public QDialog
61
62     Q_OBJECT
63
64 public:
65     SMESHGUI_RevolutionDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
66     ~SMESHGUI_RevolutionDlg();
67
68 private:
69
70     void Init( bool ResetControls = true ) ;
71     void closeEvent( QCloseEvent* e ) ;
72     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
73     void hideEvent ( QHideEvent * );                        /* ESC key */
74     int  GetConstructorId();
75     bool IsAxisOk();
76
77     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
78     SALOME_Selection*             mySelection ;             /* User shape selection */
79     int                           myNbOkElements ;          /* to check when elements are defined */
80     QString                       myElementsId;
81     QWidget*                      myEditCurrentArgument;    /* Current  argument */
82
83     bool                          myBusy;
84     SMESH::SMESH_Mesh_var         myMesh;
85     SMESH_Actor*                  myActor;
86     Handle(SMESH_LogicalFilter)   myMeshOrSubMeshOrGroupFilter;
87
88     QButtonGroup* GroupConstructors;
89     QRadioButton* RadioButton1;
90     QRadioButton* RadioButton2;
91     QGroupBox* GroupButtons;
92     QPushButton* buttonOk;
93     QPushButton* buttonCancel;
94     QPushButton* buttonApply;
95     QGroupBox* GroupArguments;
96     QGroupBox* GroupAxis;
97     QLabel* TextLabelElements;
98     QPushButton* SelectElementsButton;
99     QLineEdit* LineEditElements;
100     QCheckBox* CheckBoxMesh;
101     
102     QLabel* TextLabelPoint;
103     QPushButton* SelectPointButton;
104     QLabel* TextLabelX;
105     SMESHGUI_SpinBox* SpinBox_X;
106     QLabel* TextLabelY;
107     SMESHGUI_SpinBox* SpinBox_Y;
108     QLabel* TextLabelZ;
109     SMESHGUI_SpinBox* SpinBox_Z;
110     QLabel* TextLabelVector;
111     QPushButton* SelectVectorButton;
112     QLabel* TextLabelDX;
113     SMESHGUI_SpinBox* SpinBox_DX;
114     QLabel* TextLabelDY;
115     SMESHGUI_SpinBox* SpinBox_DY;
116     QLabel* TextLabelDZ;
117     SMESHGUI_SpinBox* SpinBox_DZ;
118     
119     QLabel* TextLabelAngle;
120     SMESHGUI_SpinBox* SpinBox_Angle;
121     QLabel* TextLabelNbSteps;
122     QSpinBox* SpinBox_NbSteps;
123     QLabel* TextLabelTolerance;
124     SMESHGUI_SpinBox* SpinBox_Tolerance;
125
126     private slots:
127
128     void ConstructorsClicked(int constructorId);
129     void ClickOnOk();
130     void ClickOnCancel();
131     void ClickOnApply();
132     void SetEditCurrentArgument() ;
133     void SelectionIntoArgument() ;
134     void DeactivateActiveDialog() ;
135     void ActivateThisDialog() ;
136     void onTextChange(const QString&);
137     void onVectorChanged();
138     void onSelectMesh(bool toSelectMesh);
139
140 protected:
141     QGridLayout* SMESHGUI_RevolutionDlgLayout;
142     QGridLayout* GroupConstructorsLayout;
143     QGridLayout* GroupButtonsLayout;
144     QGridLayout* GroupArgumentsLayout;
145 };
146
147 #endif // DIALOGBOX_REVOLUTION_H