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