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_SymmetryDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_SYMMETRY_H
30 #define DIALOGBOX_SYMMETRY_H
32 #include "LightApp_SelectionMgr.h"
34 #include "SMESH_LogicalFilter.hxx"
48 class SMESHGUI_SpinBox;
51 class SVTK_ViewWindow;
55 #include <SALOMEconfig.h>
56 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59 //=================================================================================
60 // class : SMESHGUI_SymmetryDlg
62 //=================================================================================
63 class SMESHGUI_SymmetryDlg : public QDialog
68 SMESHGUI_SymmetryDlg( SMESHGUI*,
72 ~SMESHGUI_SymmetryDlg();
75 void Init (bool ResetControls = true);
76 void closeEvent (QCloseEvent*);
77 void enterEvent (QEvent*); /* mouse enter the QWidget */
78 void hideEvent (QHideEvent*); /* ESC key */
79 int GetConstructorId();
82 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
83 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
84 int myNbOkElements; /* to check when elements are defined */
86 SVTK_Selector* mySelector;
88 QWidget* myEditCurrentArgument; /* Current LineEdit */
91 SMESH::SMESH_Mesh_var myMesh;
93 SMESH_LogicalFilter* myMeshOrSubMeshOrGroupFilter;
95 QButtonGroup* GroupConstructors;
96 QRadioButton* RadioButton1;
97 QRadioButton* RadioButton2;
98 QRadioButton* RadioButton3;
99 QGroupBox* GroupButtons;
100 QPushButton* buttonOk;
101 QPushButton* buttonCancel;
102 QPushButton* buttonApply;
103 QPushButton* buttonHelp;
104 QGroupBox* GroupArguments;
105 QGroupBox* GroupMirror;
106 QLabel* TextLabelElements;
107 QPushButton* SelectElementsButton;
108 QLineEdit* LineEditElements;
109 QCheckBox* CheckBoxMesh;
111 QLabel* TextLabelPoint;
112 QPushButton* SelectPointButton;
114 SMESHGUI_SpinBox* SpinBox_X;
116 SMESHGUI_SpinBox* SpinBox_Y;
118 SMESHGUI_SpinBox* SpinBox_Z;
119 QLabel* TextLabelVector;
120 QPushButton* SelectVectorButton;
122 SMESHGUI_SpinBox* SpinBox_DX;
124 SMESHGUI_SpinBox* SpinBox_DY;
126 SMESHGUI_SpinBox* SpinBox_DZ;
128 QCheckBox* CheckBoxCopy;
130 QString myHelpFileName;
134 void ConstructorsClicked(int constructorId);
136 void ClickOnCancel();
139 void SetEditCurrentArgument() ;
140 void SelectionIntoArgument() ;
141 void DeactivateActiveDialog() ;
142 void ActivateThisDialog() ;
143 void onTextChange(const QString&);
144 void onSelectMesh(bool toSelectMesh);
145 void onVectorChanged();
148 QGridLayout* SMESHGUI_SymmetryDlgLayout;
149 QGridLayout* GroupConstructorsLayout;
150 QGridLayout* GroupButtonsLayout;
151 QGridLayout* GroupArgumentsLayout;
154 #endif // DIALOGBOX_SYMMETRY_H