Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 //
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 "SMESH_SMESHGUI.hxx"
33
34 #include "LightApp_SelectionMgr.h"
35
36 #include "SMESH_LogicalFilter.hxx"
37
38 // QT Includes
39 #include <qdialog.h>
40
41 class QGridLayout; 
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class QCheckBox;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SMESHGUI_SpinBox;
53 class SVTK_ViewWindow;
54 class SVTK_Selector;
55
56
57 // IDL Headers
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60
61
62 //=================================================================================
63 // class    : SMESHGUI_RotationDlg
64 // purpose  :
65 //=================================================================================
66 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public QDialog
67
68     Q_OBJECT
69
70 public:
71     SMESHGUI_RotationDlg( SMESHGUI*,
72                           const char* name = 0,
73                           bool modal = FALSE,
74                           WFlags fl = 0);
75     ~SMESHGUI_RotationDlg();
76
77 private:
78     void Init (bool ResetControls = true);
79     void closeEvent (QCloseEvent*);
80     void enterEvent (QEvent*);                          /* mouse enter the QWidget */
81     void hideEvent (QHideEvent*);                       /* ESC key */
82     void keyPressEvent(QKeyEvent*);
83     bool IsAxisOk();
84     void setNewMeshName();
85
86     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
87     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
88     int                           myNbOkElements;          /* to check when elements are defined */
89     QString                       myElementsId;
90     SVTK_Selector*                mySelector;
91
92     QWidget*                      myEditCurrentArgument;   /* Current  LineEdit */
93     int myConstructorId;
94     bool                          myBusy;
95     SMESH::SMESH_Mesh_var         myMesh;
96     SMESH_Actor*                  myActor;
97     SMESH_LogicalFilter*          myMeshOrSubMeshOrGroupFilter;
98
99     QButtonGroup* GroupConstructors;
100     QRadioButton* RadioButton1;
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
113     QLabel* TextLabelPoint;
114     QPushButton* SelectPointButton;
115     QLabel* TextLabelX;
116     SMESHGUI_SpinBox* SpinBox_X;
117     QLabel* TextLabelY;
118     SMESHGUI_SpinBox* SpinBox_Y;
119     QLabel* TextLabelZ;
120     SMESHGUI_SpinBox* SpinBox_Z;
121     QLabel* TextLabelVector;
122     QPushButton* SelectVectorButton;
123     QLabel* TextLabelDX;
124     SMESHGUI_SpinBox* SpinBox_DX;
125     QLabel* TextLabelDY;
126     SMESHGUI_SpinBox* SpinBox_DY;
127     QLabel* TextLabelDZ;
128     SMESHGUI_SpinBox* SpinBox_DZ;
129
130     QLabel* TextLabelAngle;
131     SMESHGUI_SpinBox* SpinBox_Angle;
132     //QCheckBox* CheckBoxCopy;
133     QButtonGroup* ActionGroup;
134     QCheckBox* MakeGroupsCheck;
135     QLineEdit* LineEditNewMesh;
136
137     QString myHelpFileName;
138
139 private slots:
140
141     void ConstructorsClicked (int constructorId);
142     void ClickOnOk();
143     void ClickOnCancel();
144     void ClickOnApply();
145     void ClickOnHelp();
146     void SetEditCurrentArgument();
147     void SelectionIntoArgument();
148     void DeactivateActiveDialog();
149     void ActivateThisDialog();
150     void onTextChange (const QString&);
151     void onSelectMesh (bool toSelectMesh);
152     void onVectorChanged();
153     void onActionClicked(int button);
154
155 protected:
156     QGridLayout* SMESHGUI_RotationDlgLayout;
157     QGridLayout* GroupConstructorsLayout;
158     QGridLayout* GroupButtonsLayout;
159     QGridLayout* GroupArgumentsLayout;
160 };
161
162 #endif // DIALOGBOX_ROTATION_H