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_ExtrusionDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_EXTRUSION_H
30 #define DIALOGBOX_EXTRUSION_H
32 #include "SALOME_Selection.h"
33 #include "SMESH_LogicalFilter.hxx"
47 class SMESHGUI_SpinBox;
52 #include <SALOMEconfig.h>
53 #include CORBA_SERVER_HEADER(SMESH_Mesh)
56 //=================================================================================
57 // class : SMESHGUI_ExtrusionDlg
59 //=================================================================================
60 class SMESHGUI_ExtrusionDlg : public QDialog
65 SMESHGUI_ExtrusionDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
66 ~SMESHGUI_ExtrusionDlg();
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 int GetConstructorId();
76 SMESHGUI* mySMESHGUI ; /* Current SMESHGUI object */
77 SALOME_Selection* mySelection ; /* User shape selection */
79 int myNbOkElements ; /* to check when elements are defined */
81 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
84 SMESH::SMESH_Mesh_var myMesh;
86 Handle(SMESH_LogicalFilter) myMeshOrSubMeshOrGroupFilter;
88 QButtonGroup* GroupConstructors;
89 QRadioButton* RadioButton1;
90 QRadioButton* RadioButton2;
91 QGroupBox* GroupButtons;
92 QPushButton* buttonOk;
93 QPushButton* buttonCancel;
94 QPushButton* buttonApply;
95 QGroupBox* GroupArguments;
96 QLabel* TextLabelElements;
97 QPushButton* SelectElementsButton;
98 QLineEdit* LineEditElements;
99 QCheckBox* CheckBoxMesh;
100 QLabel* TextLabelVector;
102 SMESHGUI_SpinBox* SpinBox_Dx;
104 SMESHGUI_SpinBox* SpinBox_Dy;
106 SMESHGUI_SpinBox* SpinBox_Dz;
107 QLabel* TextLabelNbSteps;
108 QSpinBox* SpinBox_NbSteps;
112 void ConstructorsClicked(int constructorId);
114 void ClickOnCancel();
116 void SetEditCurrentArgument() ;
117 void SelectionIntoArgument() ;
118 void DeactivateActiveDialog() ;
119 void ActivateThisDialog() ;
120 void onTextChange(const QString&);
121 void onSelectMesh(bool toSelectMesh);
124 QGridLayout* SMESHGUI_ExtrusionDlgLayout;
125 QGridLayout* GroupConstructorsLayout;
126 QGridLayout* GroupButtonsLayout;
127 QGridLayout* GroupArgumentsLayout;
130 #endif // DIALOGBOX_EXTRUSION_H