1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_RotationDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_ROTATIONDLG_H
28 #define SMESHGUI_ROTATIONDLG_H
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMESHGUI_PreviewDlg.h"
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
48 class SMESHGUI_IdValidator;
49 class SMESHGUI_SpinBox;
50 class SMESHGUI_FilterDlg;
52 class LightApp_SelectionMgr;
53 class SMESH_LogicalFilter;
55 //=================================================================================
56 // class : SMESHGUI_RotationDlg
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI_RotationDlg : public SMESHGUI_PreviewDlg
64 SMESHGUI_RotationDlg( SMESHGUI* );
65 ~SMESHGUI_RotationDlg();
68 void Init( bool = true );
69 void enterEvent( QEvent* ); /* mouse enter the QWidget */
70 void keyPressEvent( QKeyEvent* );
72 void setNewMeshName();
76 SMESHGUI_IdValidator* myIdValidator;
77 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
78 int myNbOkElements; /* to check when elements are defined */
80 SVTK_Selector* mySelector;
82 QWidget* myEditCurrentArgument; /* Current LineEdit */
85 SMESH::SMESH_Mesh_var myMesh;
87 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
88 SMESH::SMESH_IDSource_var mySelectedObject;
90 QGroupBox* GroupConstructors;
91 QRadioButton* RadioButton1;
92 QGroupBox* GroupButtons;
93 QPushButton* buttonOk;
94 QPushButton* buttonCancel;
95 QPushButton* buttonApply;
96 QPushButton* buttonHelp;
97 QGroupBox* GroupArguments;
99 QLabel* TextLabelElements;
100 QPushButton* SelectElementsButton;
101 QLineEdit* LineEditElements;
102 QCheckBox* CheckBoxMesh;
104 QLabel* TextLabelPoint;
105 QPushButton* SelectPointButton;
107 SMESHGUI_SpinBox* SpinBox_X;
109 SMESHGUI_SpinBox* SpinBox_Y;
111 SMESHGUI_SpinBox* SpinBox_Z;
112 QLabel* TextLabelVector;
113 QPushButton* SelectVectorButton;
115 SMESHGUI_SpinBox* SpinBox_DX;
117 SMESHGUI_SpinBox* SpinBox_DY;
119 SMESHGUI_SpinBox* SpinBox_DZ;
121 QLabel* TextLabelAngle;
122 SMESHGUI_SpinBox* SpinBox_Angle;
123 //QCheckBox* CheckBoxCopy;
124 QGroupBox* ActionBox;
125 QButtonGroup* ActionGroup;
126 QCheckBox* MakeGroupsCheck;
127 QLineEdit* LineEditNewMesh;
129 QString myHelpFileName;
131 QPushButton* myFilterBtn;
132 SMESHGUI_FilterDlg* myFilterDlg;
135 virtual void onDisplaySimulation( bool );
136 virtual void reject();
142 void SetEditCurrentArgument();
143 void SelectionIntoArgument();
144 void DeactivateActiveDialog();
145 void ActivateThisDialog();
146 void onTextChange( const QString& );
147 void onSelectMesh( bool );
148 void onVectorChanged();
149 void onActionClicked( int );
153 #endif // SMESHGUI_ROTATIONDLG_H