Salome HOME
Porting SMESH module to Qt 4
[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 // File   : SMESHGUI_RevolutionDlg.h
23 // Author : Michael ZORIN, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_REVOLUTIONDLG_H
27 #define SMESHGUI_REVOLUTIONDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class QSpinBox;
47 class SMESHGUI_SpinBox;
48 class SMESHGUI;
49 class SMESH_Actor;
50 class SVTK_Selector;
51 class LightApp_SelectionMgr;
52 class SMESH_LogicalFilter;
53
54 //=================================================================================
55 // class    : SMESHGUI_RevolutionDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_EXPORT SMESHGUI_RevolutionDlg : public QDialog
59
60   Q_OBJECT
61
62 public:
63   SMESHGUI_RevolutionDlg( SMESHGUI* );
64   ~SMESHGUI_RevolutionDlg();
65
66 private:
67   void                    Init( bool = true);
68   void                    closeEvent( QCloseEvent* );
69   void                    enterEvent( QEvent* );           /* mouse enter the QWidget */
70   void                    hideEvent( QHideEvent* );        /* ESC key */
71   void                    keyPressEvent( QKeyEvent* );
72   int                     GetConstructorId();
73   bool                    IsAxisOk();
74   
75   SMESHGUI*               mySMESHGUI;              /* Current SMESHGUI object */
76   LightApp_SelectionMgr*  mySelectionMgr;          /* User shape selection */
77   int                     myNbOkElements;          /* to check when elements are defined */
78   QString                 myElementsId;
79   QWidget*                myEditCurrentArgument;   /* Current  argument */
80   SVTK_Selector*          mySelector;
81   
82   bool                    myBusy;
83   SMESH::SMESH_Mesh_var   myMesh;
84   SMESH_Actor*            myActor;
85   SMESH_LogicalFilter*    myMeshOrSubMeshOrGroupFilter;
86
87   QGroupBox*              ConstructorsBox;
88   QButtonGroup*           GroupConstructors;
89   QRadioButton*           RadioButton1;
90   QRadioButton*           RadioButton2;
91   QGroupBox*              GroupButtons;
92   QPushButton*            buttonOk;
93   QPushButton*            buttonCancel;
94   QPushButton*            buttonApply;
95   QPushButton*            buttonHelp;
96   QGroupBox*              GroupArguments;
97   QGroupBox*              GroupAxis;
98   QLabel*                 TextLabelElements;
99   QPushButton*            SelectElementsButton;
100   QLineEdit*              LineEditElements;
101   QCheckBox*              CheckBoxMesh;
102   QCheckBox*              MakeGroupsCheck;
103   
104   QLabel*                 TextLabelPoint;
105   QPushButton*            SelectPointButton;
106   QLabel*                 TextLabelX;
107   SMESHGUI_SpinBox*       SpinBox_X;
108   QLabel*                 TextLabelY;
109   SMESHGUI_SpinBox*       SpinBox_Y;
110   QLabel*                 TextLabelZ;
111   SMESHGUI_SpinBox*       SpinBox_Z;
112   QLabel*                 TextLabelVector;
113   QPushButton*            SelectVectorButton;
114   QLabel*                 TextLabelDX;
115   SMESHGUI_SpinBox*       SpinBox_DX;
116   QLabel*                 TextLabelDY;
117   SMESHGUI_SpinBox*       SpinBox_DY;
118   QLabel*                 TextLabelDZ;
119   SMESHGUI_SpinBox*       SpinBox_DZ;
120   
121   QLabel*                 TextLabelAngle;
122   SMESHGUI_SpinBox*       SpinBox_Angle;
123   QLabel*                 TextLabelNbSteps;
124   QSpinBox*               SpinBox_NbSteps;
125   QLabel*                 TextLabelTolerance;
126   SMESHGUI_SpinBox*       SpinBox_Tolerance;
127   
128   QString                 myHelpFileName;
129   
130 private slots:
131   void                    ConstructorsClicked( int );
132   void                    ClickOnOk();
133   void                    ClickOnCancel();
134   void                    ClickOnApply();
135   void                    ClickOnHelp();
136   void                    SetEditCurrentArgument();
137   void                    SelectionIntoArgument();
138   void                    DeactivateActiveDialog();
139   void                    ActivateThisDialog();
140   void                    onTextChange( const QString& );
141   void                    onSelectMesh( bool );
142   void                    onVectorChanged();
143 };
144
145 #endif // SMESHGUI_REVOLUTIONDLG_H