1 // Copyright (C) 2007-2008 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
22 // SMESH SMESHGUI : GUI for SMESH component
23 // File : SMESHGUI_ExtrusionDlg.h
24 // Author : Michael ZORIN, Open CASCADE S.A.S.
26 #ifndef SMESHGUI_EXTRUSIONDLG_H
27 #define SMESHGUI_EXTRUSIONDLG_H
30 #include "SMESH_SMESHGUI.hxx"
32 // SALOME GUI includes
33 #include <SALOME_InteractiveObject.hxx>
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53 class SMESHGUI_IdValidator;
54 class SMESHGUI_SpinBox;
55 class SMESHGUI_FilterDlg;
57 class LightApp_SelectionMgr;
58 class SUIT_SelectionFilter;
60 //=================================================================================
61 // class : SMESHGUI_ExtrusionDlg
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public QDialog
69 SMESHGUI_ExtrusionDlg( SMESHGUI* );
70 ~SMESHGUI_ExtrusionDlg();
73 void Init( bool = true );
74 void enterEvent( QEvent* ); /* mouse enter the QWidget */
75 void keyPressEvent( QKeyEvent* );
76 int GetConstructorId();
78 SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
79 SMESHGUI_IdValidator* myIdValidator;
80 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
81 QWidget* myEditCurrentArgument; /* Current argument editor */
82 int myNbOkElements; /* to check when elements are defined */
83 SVTK_Selector* mySelector;
86 SMESH::SMESH_Mesh_var myMesh;
87 SMESH::long_array_var myElementsId;
89 Handle(SALOME_InteractiveObject) myIO;
90 SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter;
93 QGroupBox* ConstructorsBox;
94 QButtonGroup* GroupConstructors;
95 QRadioButton* RadioButton1;
96 QRadioButton* RadioButton2;
98 QGroupBox* GroupArguments;
99 QLabel* TextLabelElements;
100 QPushButton* SelectElementsButton;
101 QLineEdit* LineEditElements;
102 QCheckBox* CheckBoxMesh;
103 QLabel* TextLabelVector;
104 QLabel* TextLabelDistance;
105 QPushButton* SelectVectorButton;
107 SMESHGUI_SpinBox* SpinBox_Dx;
109 SMESHGUI_SpinBox* SpinBox_Dy;
111 SMESHGUI_SpinBox* SpinBox_Dz;
113 SMESHGUI_SpinBox* SpinBox_Vx;
115 SMESHGUI_SpinBox* SpinBox_Vy;
117 SMESHGUI_SpinBox* SpinBox_Vz;
118 QLabel* TextLabelNbSteps;
119 QSpinBox* SpinBox_NbSteps;
120 QCheckBox* MakeGroupsCheck;
122 QGroupBox* GroupButtons;
123 QPushButton* buttonOk;
124 QPushButton* buttonCancel;
125 QPushButton* buttonApply;
126 QPushButton* buttonHelp;
128 QString myHelpFileName;
130 SMESHGUI_FilterDlg* myFilterDlg;
133 void ConstructorsClicked( int );
134 void CheckIsEnable();
137 void ClickOnCancel();
139 void SetEditCurrentArgument();
140 void SelectionIntoArgument();
141 void DeactivateActiveDialog();
142 void ActivateThisDialog();
143 void onTextChange( const QString& );
144 void onSelectMesh( bool );
148 #endif // SMESHGUI_EXTRUSIONDLG_H