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