Salome HOME
Movement of examples to CVS EXAMPLES SAMPLES_SRC.
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_RotationDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_ROTATION_H
30 #define DIALOGBOX_ROTATION_H
31
32 #include "SalomeApp_SelectionMgr.h"
33
34 #include "SMESH_LogicalFilter.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class SMESHGUI_SpinBox;
48 class SMESHGUI;
49 class SMESH_Actor;
50 class SMESHGUI_SpinBox;
51 class SVTK_ViewWindow;
52 class SVTK_Selector;
53
54
55 // IDL Headers
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
58
59
60 //=================================================================================
61 // class    : SMESHGUI_RotationDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_RotationDlg : public QDialog
65
66     Q_OBJECT
67
68 public:
69     SMESHGUI_RotationDlg( SMESHGUI*,
70                           const char* name = 0,
71                           bool modal = FALSE,
72                           WFlags fl = 0);
73     ~SMESHGUI_RotationDlg();
74
75 private:
76     void Init (bool ResetControls = true);
77     void closeEvent (QCloseEvent*);
78     void enterEvent (QEvent*);                          /* mouse enter the QWidget */
79     void hideEvent (QHideEvent*);                       /* ESC key */
80     bool IsAxisOk();
81
82     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
83     SalomeApp_SelectionMgr*       mySelectionMgr;          /* User shape selection */
84     int                           myNbOkElements;          /* to check when elements are defined */
85     QString                       myElementsId;
86     SVTK_Selector*                mySelector;
87
88     QWidget*                      myEditCurrentArgument;   /* Current  LineEdit */
89     int myConstructorId;
90     bool                          myBusy;
91     SMESH::SMESH_Mesh_var         myMesh;
92     SMESH_Actor*                  myActor;
93     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
94
95     QButtonGroup* GroupConstructors;
96     QRadioButton* RadioButton1;
97     QGroupBox* GroupButtons;
98     QPushButton* buttonOk;
99     QPushButton* buttonCancel;
100     QPushButton* buttonApply;
101     QGroupBox* GroupArguments;
102     QGroupBox* GroupAxis;
103     QLabel* TextLabelElements;
104     QPushButton* SelectElementsButton;
105     QLineEdit* LineEditElements;
106     QCheckBox* CheckBoxMesh;
107
108     QLabel* TextLabelPoint;
109     QPushButton* SelectPointButton;
110     QLabel* TextLabelX;
111     SMESHGUI_SpinBox* SpinBox_X;
112     QLabel* TextLabelY;
113     SMESHGUI_SpinBox* SpinBox_Y;
114     QLabel* TextLabelZ;
115     SMESHGUI_SpinBox* SpinBox_Z;
116     QLabel* TextLabelVector;
117     QPushButton* SelectVectorButton;
118     QLabel* TextLabelDX;
119     SMESHGUI_SpinBox* SpinBox_DX;
120     QLabel* TextLabelDY;
121     SMESHGUI_SpinBox* SpinBox_DY;
122     QLabel* TextLabelDZ;
123     SMESHGUI_SpinBox* SpinBox_DZ;
124
125     QLabel* TextLabelAngle;
126     SMESHGUI_SpinBox* SpinBox_Angle;
127     QCheckBox* CheckBoxCopy;
128
129 private slots:
130
131     void ConstructorsClicked (int constructorId);
132     void ClickOnOk();
133     void ClickOnCancel();
134     void ClickOnApply();
135     void SetEditCurrentArgument();
136     void SelectionIntoArgument();
137     void DeactivateActiveDialog();
138     void ActivateThisDialog();
139     void onTextChange (const QString&);
140     void onSelectMesh (bool toSelectMesh);
141     void onVectorChanged();
142
143 protected:
144     QGridLayout* SMESHGUI_RotationDlgLayout;
145     QGridLayout* GroupConstructorsLayout;
146     QGridLayout* GroupButtonsLayout;
147     QGridLayout* GroupArgumentsLayout;
148 };
149
150 #endif // DIALOGBOX_ROTATION_H