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.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : SMESHGUI_ExtrusionDlg.h
25 // Author : Michael ZORIN
29 #ifndef DIALOGBOX_EXTRUSION_H
30 #define DIALOGBOX_EXTRUSION_H
32 #include "SMESH_SMESHGUI.hxx"
34 #include "LightApp_SelectionMgr.h"
35 #include "SUIT_SelectionFilter.h"
36 #include "Handle_SALOME_InteractiveObject.hxx"
53 class SMESHGUI_SpinBox;
54 class SVTK_ViewWindow;
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
61 //=================================================================================
62 // class : SMESHGUI_ExtrusionDlg
64 //=================================================================================
65 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public QDialog
70 SMESHGUI_ExtrusionDlg (SMESHGUI*,
72 ~SMESHGUI_ExtrusionDlg();
75 void Init (bool ResetControls = true);
76 void enterEvent (QEvent*); /* mouse enter the QWidget */
77 void keyPressEvent(QKeyEvent*);
78 int GetConstructorId();
79 //void closeEvent (QCloseEvent*);
80 //void hideEvent (QHideEvent*); /* ESC key */
82 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
83 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
84 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
85 //QString myElementsId;
86 int myNbOkElements; /* to check when elements are defined */
87 SVTK_Selector* mySelector;
90 SMESH::SMESH_Mesh_var myMesh;
91 SMESH::long_array_var myElementsId;
93 Handle(SALOME_InteractiveObject) myIO;
94 SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter;
97 QButtonGroup* GroupConstructors;
98 QRadioButton* RadioButton1;
99 QRadioButton* RadioButton2;
101 QGroupBox* GroupArguments;
102 QLabel* TextLabelElements;
103 QPushButton* SelectElementsButton;
104 QLineEdit* LineEditElements;
105 QCheckBox* CheckBoxMesh;
106 QLabel* TextLabelVector;
108 SMESHGUI_SpinBox* SpinBox_Dx;
110 SMESHGUI_SpinBox* SpinBox_Dy;
112 SMESHGUI_SpinBox* SpinBox_Dz;
113 QLabel* TextLabelNbSteps;
114 QSpinBox* SpinBox_NbSteps;
115 QCheckBox* MakeGroupsCheck;
117 QGroupBox* GroupButtons;
118 QPushButton* buttonOk;
119 QPushButton* buttonCancel;
120 QPushButton* buttonApply;
121 QPushButton* buttonHelp;
123 QString myHelpFileName;
126 void ConstructorsClicked (int);
127 void CheckIsEnable();
130 void ClickOnCancel();
132 void SetEditCurrentArgument();
133 void SelectionIntoArgument();
134 void DeactivateActiveDialog();
135 void ActivateThisDialog();
136 void onTextChange (const QString&);
137 void onSelectMesh (bool toSelectMesh);
140 #endif // DIALOGBOX_EXTRUSION_H