Salome HOME
Merge from BR_Dev_For_4_0 branch (from tag mergeto_BR_QT4_Dev_07Jul08)
[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_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   SMESHGUI*                 mySMESHGUI;              /* Current SMESHGUI object */
79   SMESHGUI_IdValidator*     myIdValidator;
80   LightApp_SelectionMgr*    mySelectionMgr;          /* User shape selection */
81   int                       myNbOkElements;          /* to check when elements are defined */
82   QString                   myElementsId;
83   QWidget*                  myEditCurrentArgument;   /* Current  argument */
84   SVTK_Selector*            mySelector;
85   
86   bool                      myBusy;
87   SMESH::SMESH_Mesh_var     myMesh;
88   SMESH_Actor*              myActor;
89   SMESH_LogicalFilter*      myMeshOrSubMeshOrGroupFilter;
90   SMESHGUI_MeshEditPreview* mySimulation;
91   SALOME_Actor*             myPreviewActor;
92
93   QGroupBox*                ConstructorsBox;
94   QButtonGroup*             GroupConstructors;
95   QRadioButton*             RadioButton1;
96   QRadioButton*             RadioButton2;
97   QGroupBox*                GroupButtons;
98   QPushButton*              buttonOk;
99   QPushButton*              buttonCancel;
100   QPushButton*              buttonApply;
101   QPushButton*              buttonHelp;
102   QGroupBox*                GroupArguments;
103   QGroupBox*                GroupAxis;
104   QLabel*                   TextLabelElements;
105   QPushButton*              SelectElementsButton;
106   QLineEdit*                LineEditElements;
107   QCheckBox*                CheckBoxMesh;
108   QCheckBox*                MakeGroupsCheck;
109   QGroupBox*                GroupAngleBox;
110   QButtonGroup*             GroupAngle;
111   QRadioButton*             RadioButton3;
112   QRadioButton*             RadioButton4;
113   QCheckBox*                CheckBoxPreview;
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   void                      ConstructorsClicked( int );
143   void                      ClickOnOk();
144   void                      ClickOnCancel();
145   void                      ClickOnApply();
146   void                      ClickOnHelp();
147   void                      SetEditCurrentArgument();
148   void                      SelectionIntoArgument();
149   void                      DeactivateActiveDialog();
150   void                      ActivateThisDialog();
151   void                      onTextChange( const QString& );
152   void                      onSelectMesh( bool );
153   void                      onVectorChanged();
154   void                      toDisplaySimulation();
155   void                      onDisplaySimulation( bool );
156 };
157
158 #endif // SMESHGUI_REVOLUTIONDLG_H