Salome HOME
Dump Puthon extension
[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 SalomeApp_IntSpinBox;
47 class SMESHGUI_IdValidator;
48 class SMESHGUI_SpinBox;
49 class SMESHGUI;
50 class SMESH_Actor;
51 class SVTK_Selector;
52 class LightApp_SelectionMgr;
53 class SMESH_LogicalFilter;
54 class SALOME_Actor;
55 class SMESHGUI_MeshEditPreview;
56
57 //=================================================================================
58 // class    : SMESHGUI_RevolutionDlg
59 // purpose  :
60 //=================================================================================
61 class SMESHGUI_EXPORT SMESHGUI_RevolutionDlg : public QDialog
62
63   Q_OBJECT
64
65 public:
66   SMESHGUI_RevolutionDlg( SMESHGUI* );
67   ~SMESHGUI_RevolutionDlg();
68
69 private:
70   void                      Init( bool = true);
71   void                      closeEvent( QCloseEvent* );
72   void                      enterEvent( QEvent* );           /* mouse enter the QWidget */
73   void                      hideEvent( QHideEvent* );        /* ESC key */
74   void                      keyPressEvent( QKeyEvent* );
75   int                       GetConstructorId();
76   bool                      IsAxisOk();
77   
78   bool                      isValid();
79   
80   SMESHGUI*                 mySMESHGUI;              /* Current SMESHGUI object */
81   SMESHGUI_IdValidator*     myIdValidator;
82   LightApp_SelectionMgr*    mySelectionMgr;          /* User shape selection */
83   int                       myNbOkElements;          /* to check when elements are defined */
84   QString                   myElementsId;
85   QWidget*                  myEditCurrentArgument;   /* Current  argument */
86   SVTK_Selector*            mySelector;
87   
88   SMESH::SMESH_IDSource_var mySelectedObject;
89
90   bool                      myBusy;
91   SMESH::SMESH_Mesh_var     myMesh;
92   SMESH_Actor*              myActor;
93   SMESH_LogicalFilter*      myMeshOrSubMeshOrGroupFilter;
94   SMESHGUI_MeshEditPreview* mySimulation;
95   SALOME_Actor*             myPreviewActor;
96
97   QGroupBox*                ConstructorsBox;
98   QButtonGroup*             GroupConstructors;
99   QRadioButton*             RadioButton1;
100   QRadioButton*             RadioButton2;
101   QGroupBox*                GroupButtons;
102   QPushButton*              buttonOk;
103   QPushButton*              buttonCancel;
104   QPushButton*              buttonApply;
105   QPushButton*              buttonHelp;
106   QGroupBox*                GroupArguments;
107   QGroupBox*                GroupAxis;
108   QLabel*                   TextLabelElements;
109   QPushButton*              SelectElementsButton;
110   QLineEdit*                LineEditElements;
111   QCheckBox*                CheckBoxMesh;
112   QCheckBox*                MakeGroupsCheck;
113   QGroupBox*                GroupAngleBox;
114   QButtonGroup*             GroupAngle;
115   QRadioButton*             RadioButton3;
116   QRadioButton*             RadioButton4;
117   QCheckBox*                CheckBoxPreview;
118   
119   QLabel*                   TextLabelPoint;
120   QPushButton*              SelectPointButton;
121   QLabel*                   TextLabelX;
122   SMESHGUI_SpinBox*         SpinBox_X;
123   QLabel*                   TextLabelY;
124   SMESHGUI_SpinBox*         SpinBox_Y;
125   QLabel*                   TextLabelZ;
126   SMESHGUI_SpinBox*         SpinBox_Z;
127   QLabel*                   TextLabelVector;
128   QPushButton*              SelectVectorButton;
129   QLabel*                   TextLabelDX;
130   SMESHGUI_SpinBox*         SpinBox_DX;
131   QLabel*                   TextLabelDY;
132   SMESHGUI_SpinBox*         SpinBox_DY;
133   QLabel*                   TextLabelDZ;
134   SMESHGUI_SpinBox*         SpinBox_DZ;
135   
136   QLabel*                   TextLabelAngle;
137   SMESHGUI_SpinBox*         SpinBox_Angle;
138   QLabel*                   TextLabelNbSteps;
139   SalomeApp_IntSpinBox*     SpinBox_NbSteps;
140   QLabel*                   TextLabelTolerance;
141   SMESHGUI_SpinBox*         SpinBox_Tolerance;
142   
143   QString                   myHelpFileName;
144   
145 private slots:
146   void                      ConstructorsClicked( int );
147   void                      ClickOnOk();
148   void                      ClickOnCancel();
149   bool                      ClickOnApply();
150   void                      ClickOnHelp();
151   void                      SetEditCurrentArgument();
152   void                      SelectionIntoArgument();
153   void                      DeactivateActiveDialog();
154   void                      ActivateThisDialog();
155   void                      onTextChange( const QString& );
156   void                      onAngleTextChange( const QString& );
157   void                      onSelectMesh( bool );
158   void                      onVectorChanged();
159   void                      toDisplaySimulation();
160   void                      onDisplaySimulation( bool );
161 };
162
163 #endif // SMESHGUI_REVOLUTIONDLG_H