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_ExtrusionDlg.h
25 // Author : Michael ZORIN, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_EXTRUSIONDLG_H
28 #define SMESHGUI_EXTRUSIONDLG_H
31 #include "SMESH_SMESHGUI.hxx"
32 #include "SMESHGUI_PreviewDlg.h"
34 // SALOME GUI includes
35 #include <SALOME_InteractiveObject.hxx>
38 #include <SALOMEconfig.h>
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
51 class SMESHGUI_IdValidator;
52 class SMESHGUI_SpinBox;
53 class SMESHGUI_FilterDlg;
55 class LightApp_SelectionMgr;
56 class SUIT_SelectionFilter;
57 class SalomeApp_IntSpinBox;
59 //=================================================================================
60 // class : SMESHGUI_ExtrusionDlg
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public SMESHGUI_PreviewDlg
68 SMESHGUI_ExtrusionDlg( SMESHGUI* );
69 ~SMESHGUI_ExtrusionDlg();
72 void Init( bool = true );
73 void enterEvent( QEvent* ); /* mouse enter the QWidget */
74 void keyPressEvent( QKeyEvent* );
75 int GetConstructorId();
76 void getExtrusionVector(SMESH::DirStruct& aVector);
81 SMESHGUI_IdValidator* myIdValidator;
82 LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
83 QWidget* myEditCurrentArgument; /* Current argument editor */
84 int myNbOkElements; /* to check when elements are defined */
85 SVTK_Selector* mySelector;
87 SMESH::SMESH_IDSource_var mySelectedObject;
90 SMESH::SMESH_Mesh_var myMesh;
91 SMESH::long_array_var myElementsId;
93 Handle(SALOME_InteractiveObject) myIO;
94 SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter0D;
95 SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter1D;
96 SUIT_SelectionFilter* myMeshOrSubMeshOrGroupFilter2D;
99 QGroupBox* ConstructorsBox;
100 QButtonGroup* GroupConstructors;
101 QRadioButton* RadioButton0;
102 QRadioButton* RadioButton1;
103 QRadioButton* RadioButton2;
104 QRadioButton* RadioButton3;
105 QRadioButton* RadioButton4;
107 QGroupBox* GroupArguments;
108 QGroupBox* GroupDimensions;
109 QLabel* TextLabelElements;
110 QPushButton* SelectElementsButton;
111 QLineEdit* LineEditElements;
112 QCheckBox* CheckBoxMesh;
113 QLabel* TextLabelVector;
114 QLabel* TextLabelDistance;
115 QPushButton* SelectVectorButton;
117 SMESHGUI_SpinBox* SpinBox_Dx;
119 SMESHGUI_SpinBox* SpinBox_Dy;
121 SMESHGUI_SpinBox* SpinBox_Dz;
123 SMESHGUI_SpinBox* SpinBox_Vx;
125 SMESHGUI_SpinBox* SpinBox_Vy;
127 SMESHGUI_SpinBox* SpinBox_Vz;
128 QLabel* TextLabelDist;
129 SMESHGUI_SpinBox* SpinBox_VDist;
130 QLabel* TextLabelNbSteps;
131 SalomeApp_IntSpinBox* SpinBox_NbSteps;
132 QCheckBox* MakeGroupsCheck;
134 QGroupBox* GroupButtons;
135 QPushButton* buttonOk;
136 QPushButton* buttonCancel;
137 QPushButton* buttonApply;
138 QPushButton* buttonHelp;
140 QString myHelpFileName;
143 QPushButton* myFilterBtn;
144 SMESHGUI_FilterDlg* myFilterDlg;
147 virtual void onDisplaySimulation( bool );
148 virtual void reject();
151 void ConstructorsClicked( int );
152 void CheckIsEnable();
157 void SetEditCurrentArgument();
158 void SelectionIntoArgument();
159 void DeactivateActiveDialog();
160 void ActivateThisDialog();
161 void onTextChange( const QString& );
162 void onSelectMesh( bool );
166 #endif // SMESHGUI_EXTRUSIONDLG_H