Salome HOME
Bug 0020378: Gui of SMESH hypothesis not multi-study ?
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RevolutionDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_RevolutionDlg.h
24 //  Author : Michael ZORIN
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef DIALOGBOX_REVOLUTION_H
29 #define DIALOGBOX_REVOLUTION_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34
35 #include "SMESH_LogicalFilter.hxx"
36
37 // QT Includes
38 #include <qdialog.h>
39
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class QCheckBox;
48 class QSpinBox;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SMESHGUI_SpinBox;
53 class SVTK_ViewWindow;
54 class SVTK_Selector;
55 class SALOME_Actor;
56 class SMESHGUI_MeshEditPreview;
57
58 // IDL Headers
59 #include <SALOMEconfig.h>
60 #include CORBA_SERVER_HEADER(SMESH_Mesh)
61
62
63 //=================================================================================
64 // class    : SMESHGUI_RevolutionDlg
65 // purpose  :
66 //=================================================================================
67 class SMESHGUI_EXPORT SMESHGUI_RevolutionDlg : public QDialog
68
69     Q_OBJECT
70
71 public:
72     SMESHGUI_RevolutionDlg (SMESHGUI*,
73                             const char* name = 0,
74                             bool modal = FALSE,
75                             WFlags fl = 0);
76     ~SMESHGUI_RevolutionDlg();
77
78 private:
79     void Init (bool ResetControls = true);
80     void closeEvent (QCloseEvent*);
81     void enterEvent (QEvent*);                          /* mouse enter the QWidget */
82     void hideEvent (QHideEvent*);                       /* ESC key */
83     void keyPressEvent(QKeyEvent*);
84     int  GetConstructorId();
85     bool IsAxisOk();
86
87     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
88     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
89     int                           myNbOkElements;          /* to check when elements are defined */
90     QString                       myElementsId;
91     QWidget*                      myEditCurrentArgument;   /* Current  argument */
92     SVTK_Selector*                mySelector;
93
94     bool                          myBusy;
95     SMESH::SMESH_Mesh_var         myMesh;
96     SMESH_Actor*                  myActor;
97     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
98     SMESHGUI_MeshEditPreview*     mySimulation;
99     SALOME_Actor*                 myPreviewActor;
100
101     QButtonGroup* GroupConstructors;
102     QRadioButton* RadioButton1;
103     QRadioButton* RadioButton2;
104     QGroupBox* GroupButtons;
105     QPushButton* buttonOk;
106     QPushButton* buttonCancel;
107     QPushButton* buttonApply;
108     QPushButton* buttonHelp;
109     QGroupBox* GroupArguments;
110     QGroupBox* GroupAxis;
111     QLabel* TextLabelElements;
112     QPushButton* SelectElementsButton;
113     QLineEdit* LineEditElements;
114     QCheckBox* CheckBoxMesh;
115     QCheckBox* MakeGroupsCheck;
116     QButtonGroup* GroupAngle;
117     QRadioButton* RadioButton3;
118     QRadioButton* RadioButton4;
119     QCheckBox* CheckBoxPreview;
120
121     QLabel* TextLabelPoint;
122     QPushButton* SelectPointButton;
123     QLabel* TextLabelX;
124     SMESHGUI_SpinBox* SpinBox_X;
125     QLabel* TextLabelY;
126     SMESHGUI_SpinBox* SpinBox_Y;
127     QLabel* TextLabelZ;
128     SMESHGUI_SpinBox* SpinBox_Z;
129     QLabel* TextLabelVector;
130     QPushButton* SelectVectorButton;
131     QLabel* TextLabelDX;
132     SMESHGUI_SpinBox* SpinBox_DX;
133     QLabel* TextLabelDY;
134     SMESHGUI_SpinBox* SpinBox_DY;
135     QLabel* TextLabelDZ;
136     SMESHGUI_SpinBox* SpinBox_DZ;
137
138     QLabel* TextLabelAngle;
139     SMESHGUI_SpinBox* SpinBox_Angle;
140     QLabel* TextLabelNbSteps;
141     QSpinBox* SpinBox_NbSteps;
142     QLabel* TextLabelTolerance;
143     SMESHGUI_SpinBox* SpinBox_Tolerance;
144
145     QString myHelpFileName;
146
147 private slots:
148
149     void ConstructorsClicked (int constructorId);
150     void ClickOnOk();
151     void ClickOnCancel();
152     void ClickOnApply();
153     void ClickOnHelp();
154     void SetEditCurrentArgument();
155     void SelectionIntoArgument();
156     void DeactivateActiveDialog();
157     void ActivateThisDialog();
158     void onTextChange (const QString&);
159     void onSelectMesh (bool toSelectMesh);
160     void onVectorChanged();
161     void toDisplaySimulation();
162     void onDisplaySimulation(bool toDisplayPreview);
163
164 protected:
165     QGridLayout* SMESHGUI_RevolutionDlgLayout;
166     QGridLayout* GroupConstructorsLayout;
167     QGridLayout* GroupButtonsLayout;
168     QGridLayout* GroupArgumentsLayout;
169 };
170
171 #endif // DIALOGBOX_REVOLUTION_H