Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[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_TypeFilter.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 QSpinBox;
45 class SMESHGUI_SpinBox;
46 class SMESHGUI;
47 class SMESH_Actor;
48 class SMESHGUI_SpinBox;
49
50 // IDL Headers
51 #include <SALOMEconfig.h>
52 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53
54
55 //=================================================================================
56 // class    : SMESHGUI_RevolutionDlg
57 // purpose  :
58 //=================================================================================
59 class SMESHGUI_RevolutionDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     SMESHGUI_RevolutionDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
65     ~SMESHGUI_RevolutionDlg();
66
67 private:
68
69     void Init() ;
70     void closeEvent( QCloseEvent* e ) ;
71     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
72     void hideEvent ( QHideEvent * );                        /* ESC key */
73     int  GetConstructorId();
74     bool IsAxisOk();
75
76     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
77     SALOME_Selection*             mySelection ;             /* User shape selection */
78     int                           myNbOkElements ;          /* to check when elements are defined */
79     QWidget*                      myEditCurrentArgument;    /* Current  argument */
80
81     bool                          myBusy;
82     SMESH::SMESH_Mesh_var         myMesh;
83     SMESH_Actor*                  myActor;
84     
85     QButtonGroup* GroupConstructors;
86     QRadioButton* RadioButton1;
87     QRadioButton* RadioButton2;
88     QGroupBox* GroupButtons;
89     QPushButton* buttonOk;
90     QPushButton* buttonCancel;
91     QPushButton* buttonApply;
92     QGroupBox* GroupArguments;
93     QGroupBox* GroupAxis;
94     QLabel* TextLabelElements;
95     QPushButton* SelectElementsButton;
96     QLineEdit* LineEditElements;
97
98     QLabel* TextLabelPoint;
99     QPushButton* SelectPointButton;
100     QLabel* TextLabelX;
101     SMESHGUI_SpinBox* SpinBox_X;
102     QLabel* TextLabelY;
103     SMESHGUI_SpinBox* SpinBox_Y;
104     QLabel* TextLabelZ;
105     SMESHGUI_SpinBox* SpinBox_Z;
106     QLabel* TextLabelVector;
107     QPushButton* SelectVectorButton;
108     QLabel* TextLabelDX;
109     SMESHGUI_SpinBox* SpinBox_DX;
110     QLabel* TextLabelDY;
111     SMESHGUI_SpinBox* SpinBox_DY;
112     QLabel* TextLabelDZ;
113     SMESHGUI_SpinBox* SpinBox_DZ;
114     
115     QLabel* TextLabelAngle;
116     SMESHGUI_SpinBox* SpinBox_Angle;
117     QLabel* TextLabelNbSteps;
118     QSpinBox* SpinBox_NbSteps;
119     QLabel* TextLabelTolerance;
120     SMESHGUI_SpinBox* SpinBox_Tolerance;
121
122     private slots:
123
124     void ConstructorsClicked(int constructorId);
125     void ClickOnOk();
126     void ClickOnCancel();
127     void ClickOnApply();
128     void SetEditCurrentArgument() ;
129     void SelectionIntoArgument() ;
130     void DeactivateActiveDialog() ;
131     void ActivateThisDialog() ;
132     void onTextChange(const QString&);
133     void onVectorChanged();
134     
135 protected:
136     QGridLayout* SMESHGUI_RevolutionDlgLayout;
137     QGridLayout* GroupConstructorsLayout;
138     QGridLayout* GroupButtonsLayout;
139     QGridLayout* GroupArgumentsLayout;
140 };
141
142 #endif // DIALOGBOX_REVOLUTION_H