1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_RotationDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_ROTATION_H
30 #define DIALOGBOX_ROTATION_H
32 #include "SalomeApp_SelectionMgr.h"
34 #include "SMESH_LogicalFilter.hxx"
47 class SMESHGUI_SpinBox;
50 class SMESHGUI_SpinBox;
51 class SVTK_ViewWindow;
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60 //=================================================================================
61 // class : SMESHGUI_RotationDlg
63 //=================================================================================
64 class SMESHGUI_RotationDlg : public QDialog
69 SMESHGUI_RotationDlg( SMESHGUI*,
73 ~SMESHGUI_RotationDlg();
76 void Init (bool ResetControls = true);
77 void closeEvent (QCloseEvent*);
78 void enterEvent (QEvent*); /* mouse enter the QWidget */
79 void hideEvent (QHideEvent*); /* ESC key */
82 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
83 SalomeApp_SelectionMgr* mySelectionMgr; /* User shape selection */
84 int myNbOkElements; /* to check when elements are defined */
86 SVTK_ViewWindow* myViewWindow;
87 SVTK_Selector* mySelector;
89 QWidget* myEditCurrentArgument; /* Current LineEdit */
92 SMESH::SMESH_Mesh_var myMesh;
94 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
96 QButtonGroup* GroupConstructors;
97 QRadioButton* RadioButton1;
98 QGroupBox* GroupButtons;
99 QPushButton* buttonOk;
100 QPushButton* buttonCancel;
101 QPushButton* buttonApply;
102 QGroupBox* GroupArguments;
103 QGroupBox* GroupAxis;
104 QLabel* TextLabelElements;
105 QPushButton* SelectElementsButton;
106 QLineEdit* LineEditElements;
107 QCheckBox* CheckBoxMesh;
109 QLabel* TextLabelPoint;
110 QPushButton* SelectPointButton;
112 SMESHGUI_SpinBox* SpinBox_X;
114 SMESHGUI_SpinBox* SpinBox_Y;
116 SMESHGUI_SpinBox* SpinBox_Z;
117 QLabel* TextLabelVector;
118 QPushButton* SelectVectorButton;
120 SMESHGUI_SpinBox* SpinBox_DX;
122 SMESHGUI_SpinBox* SpinBox_DY;
124 SMESHGUI_SpinBox* SpinBox_DZ;
126 QLabel* TextLabelAngle;
127 SMESHGUI_SpinBox* SpinBox_Angle;
128 QCheckBox* CheckBoxCopy;
132 void ConstructorsClicked (int constructorId);
134 void ClickOnCancel();
136 void SetEditCurrentArgument();
137 void SelectionIntoArgument();
138 void DeactivateActiveDialog();
139 void ActivateThisDialog();
140 void onTextChange (const QString&);
141 void onSelectMesh (bool toSelectMesh);
142 void onVectorChanged();
145 QGridLayout* SMESHGUI_RotationDlgLayout;
146 QGridLayout* GroupConstructorsLayout;
147 QGridLayout* GroupButtonsLayout;
148 QGridLayout* GroupArgumentsLayout;
151 #endif // DIALOGBOX_ROTATION_H