Salome HOME
Improve dump python.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RotationDlg.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_RotationDlg.h
23 // Author : Michael ZORIN, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_ROTATIONDLG_H
27 #define SMESHGUI_ROTATIONDLG_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 SMESHGUI;
47 class SMESH_Actor;
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SVTK_Selector;
51 class LightApp_SelectionMgr;
52 class SMESH_LogicalFilter;
53
54 //=================================================================================
55 // class    : SMESHGUI_RotationDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public QDialog
59
60   Q_OBJECT
61
62 public:
63   SMESHGUI_RotationDlg( SMESHGUI* );
64   ~SMESHGUI_RotationDlg();
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   bool                   IsAxisOk();
73   void                   setNewMeshName();
74   
75   bool                   isValid();
76
77   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
78   SMESHGUI_IdValidator*  myIdValidator;
79   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
80   int                    myNbOkElements;          /* to check when elements are defined */
81   QString                myElementsId;
82   SVTK_Selector*         mySelector;
83   
84   QWidget*               myEditCurrentArgument;   /* Current  LineEdit */
85   int                    myConstructorId;
86   bool                   myBusy;
87   SMESH::SMESH_Mesh_var  myMesh;
88   SMESH_Actor*           myActor;
89   SMESH_LogicalFilter*   myMeshOrSubMeshOrGroupFilter;
90   SMESH::SMESH_IDSource_var mySelectedObject;
91   
92   QGroupBox*             GroupConstructors;
93   QRadioButton*          RadioButton1;
94   QGroupBox*             GroupButtons;
95   QPushButton*           buttonOk;
96   QPushButton*           buttonCancel;
97   QPushButton*           buttonApply;
98   QPushButton*           buttonHelp;
99   QGroupBox*             GroupArguments;
100   QGroupBox*             GroupAxis;
101   QLabel*                TextLabelElements;
102   QPushButton*           SelectElementsButton;
103   QLineEdit*             LineEditElements;
104   QCheckBox*             CheckBoxMesh;
105   
106   QLabel*                TextLabelPoint;
107   QPushButton*           SelectPointButton;
108   QLabel*                TextLabelX;
109   SMESHGUI_SpinBox*      SpinBox_X;
110   QLabel*                TextLabelY;
111   SMESHGUI_SpinBox*      SpinBox_Y;
112   QLabel*                TextLabelZ;
113   SMESHGUI_SpinBox*      SpinBox_Z;
114   QLabel*                TextLabelVector;
115   QPushButton*           SelectVectorButton;
116   QLabel*                TextLabelDX;
117   SMESHGUI_SpinBox*      SpinBox_DX;
118   QLabel*                TextLabelDY;
119   SMESHGUI_SpinBox*      SpinBox_DY;
120   QLabel*                TextLabelDZ;
121   SMESHGUI_SpinBox*      SpinBox_DZ;
122
123   QLabel*                TextLabelAngle;
124   SMESHGUI_SpinBox*      SpinBox_Angle;
125   //QCheckBox* CheckBoxCopy;
126   QGroupBox*             ActionBox;
127   QButtonGroup*          ActionGroup;
128   QCheckBox*             MakeGroupsCheck;
129   QLineEdit*             LineEditNewMesh;
130
131   QString                myHelpFileName;
132
133 private slots:
134   void                   ClickOnOk();
135   void                   ClickOnCancel();
136   bool                   ClickOnApply();
137   void                   ClickOnHelp();
138   void                   SetEditCurrentArgument();
139   void                   SelectionIntoArgument();
140   void                   DeactivateActiveDialog();
141   void                   ActivateThisDialog();
142   void                   onTextChange( const QString& );
143   void                   onSelectMesh( bool );
144   void                   onVectorChanged();
145   void                   onActionClicked( int );
146 };
147
148 #endif // SMESHGUI_ROTATIONDLG_H