Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "SMESH_SMESHGUI.hxx"
33
34 #include "LightApp_SelectionMgr.h"
35
36 #include "SMESH_LogicalFilter.hxx"
37
38 // QT Includes
39 #include <qdialog.h>
40
41 class QGridLayout; 
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class QSpinBox;
50 class SMESHGUI_SpinBox;
51 class SMESHGUI;
52 class SMESH_Actor;
53 class SMESHGUI_SpinBox;
54 class SVTK_ViewWindow;
55 class SVTK_Selector;
56
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
99     QButtonGroup* GroupConstructors;
100     QRadioButton* RadioButton1;
101     QRadioButton* RadioButton2;
102     QGroupBox* GroupButtons;
103     QPushButton* buttonOk;
104     QPushButton* buttonCancel;
105     QPushButton* buttonApply;
106     QPushButton* buttonHelp;
107     QGroupBox* GroupArguments;
108     QGroupBox* GroupAxis;
109     QLabel* TextLabelElements;
110     QPushButton* SelectElementsButton;
111     QLineEdit* LineEditElements;
112     QCheckBox* CheckBoxMesh;
113     QCheckBox* MakeGroupsCheck;
114
115     QLabel* TextLabelPoint;
116     QPushButton* SelectPointButton;
117     QLabel* TextLabelX;
118     SMESHGUI_SpinBox* SpinBox_X;
119     QLabel* TextLabelY;
120     SMESHGUI_SpinBox* SpinBox_Y;
121     QLabel* TextLabelZ;
122     SMESHGUI_SpinBox* SpinBox_Z;
123     QLabel* TextLabelVector;
124     QPushButton* SelectVectorButton;
125     QLabel* TextLabelDX;
126     SMESHGUI_SpinBox* SpinBox_DX;
127     QLabel* TextLabelDY;
128     SMESHGUI_SpinBox* SpinBox_DY;
129     QLabel* TextLabelDZ;
130     SMESHGUI_SpinBox* SpinBox_DZ;
131
132     QLabel* TextLabelAngle;
133     SMESHGUI_SpinBox* SpinBox_Angle;
134     QLabel* TextLabelNbSteps;
135     QSpinBox* SpinBox_NbSteps;
136     QLabel* TextLabelTolerance;
137     SMESHGUI_SpinBox* SpinBox_Tolerance;
138
139     QString myHelpFileName;
140
141 private slots:
142
143     void ConstructorsClicked (int constructorId);
144     void ClickOnOk();
145     void ClickOnCancel();
146     void ClickOnApply();
147     void ClickOnHelp();
148     void SetEditCurrentArgument();
149     void SelectionIntoArgument();
150     void DeactivateActiveDialog();
151     void ActivateThisDialog();
152     void onTextChange (const QString&);
153     void onSelectMesh (bool toSelectMesh);
154     void onVectorChanged();
155
156 protected:
157     QGridLayout* SMESHGUI_RevolutionDlgLayout;
158     QGridLayout* GroupConstructorsLayout;
159     QGridLayout* GroupButtonsLayout;
160     QGridLayout* GroupArgumentsLayout;
161 };
162
163 #endif // DIALOGBOX_REVOLUTION_H