Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ExtrusionDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
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.
10 //
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.
15 //
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
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_ExtrusionDlg.h
24 //  Author : Michael ZORIN
25 //  Module : SMESH
26 //  $Header: 
27 //
28 #ifndef DIALOGBOX_EXTRUSION_H
29 #define DIALOGBOX_EXTRUSION_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34 #include "SUIT_SelectionFilter.h"
35 #include "Handle_SALOME_InteractiveObject.hxx"
36
37 // QT Includes
38 #include <qdialog.h>
39
40 class QGridLayout; 
41 class QButtonGroup;
42 class QRadioButton;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QCheckBox;
47 class QSpinBox;
48 class QPushButton;
49
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SMESHGUI_SpinBox;
53 class SVTK_ViewWindow;
54 class SVTK_Selector;
55
56 // IDL Headers
57 #include <SALOMEconfig.h>
58 #include CORBA_SERVER_HEADER(SMESH_Mesh)
59
60 //=================================================================================
61 // class    : SMESHGUI_ExtrusionDlg
62 // purpose  :
63 //=================================================================================
64 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public QDialog
65 {
66   Q_OBJECT
67
68 public:
69   SMESHGUI_ExtrusionDlg (SMESHGUI*,
70                          bool modal = FALSE);
71   ~SMESHGUI_ExtrusionDlg();
72
73 private:
74   void Init (bool ResetControls = true);
75   void enterEvent (QEvent*);                           /* mouse enter the QWidget */
76   void keyPressEvent(QKeyEvent*);
77   int  GetConstructorId();
78   //void closeEvent (QCloseEvent*);
79   //void hideEvent (QHideEvent*);                        /* ESC key */
80
81   SMESHGUI*                     mySMESHGUI;            /* Current SMESHGUI object */
82   LightApp_SelectionMgr*        mySelectionMgr;        /* User shape selection */
83   QLineEdit*                    myEditCurrentArgument; /* Current  LineEdit */
84   //QString                       myElementsId;
85   int                           myNbOkElements;        /* to check when elements are defined */
86   SVTK_Selector*                mySelector;
87
88   bool                          myBusy;
89   SMESH::SMESH_Mesh_var         myMesh;
90   SMESH::long_array_var         myElementsId;
91   SMESH_Actor*                  myActor;
92   Handle(SALOME_InteractiveObject) myIO;
93   SUIT_SelectionFilter*         myMeshOrSubMeshOrGroupFilter;
94
95   // widgets
96   QButtonGroup*     GroupConstructors;
97   QRadioButton*     RadioButton1;
98   QRadioButton*     RadioButton2;
99
100   QGroupBox*        GroupArguments;
101   QLabel*           TextLabelElements;
102   QPushButton*      SelectElementsButton;
103   QLineEdit*        LineEditElements;
104   QCheckBox*        CheckBoxMesh;
105   QLabel*           TextLabelVector;
106   QLabel*           TextLabelDx;
107   SMESHGUI_SpinBox* SpinBox_Dx;
108   QLabel*           TextLabelDy;
109   SMESHGUI_SpinBox* SpinBox_Dy;
110   QLabel*           TextLabelDz;
111   SMESHGUI_SpinBox* SpinBox_Dz;
112   QLabel*           TextLabelNbSteps;
113   QSpinBox*         SpinBox_NbSteps;
114   QCheckBox*        MakeGroupsCheck;
115
116   QGroupBox*        GroupButtons;
117   QPushButton*      buttonOk;
118   QPushButton*      buttonCancel;
119   QPushButton*      buttonApply;
120   QPushButton*      buttonHelp;
121
122   QString           myHelpFileName;
123
124 private slots:
125   void ConstructorsClicked (int);
126   void CheckIsEnable();
127   void ClickOnOk();
128   bool ClickOnApply();
129   void ClickOnCancel();
130   void ClickOnHelp();
131   void SetEditCurrentArgument();
132   void SelectionIntoArgument();
133   void DeactivateActiveDialog();
134   void ActivateThisDialog();
135   void onTextChange (const QString&);
136   void onSelectMesh (bool toSelectMesh);
137 };
138
139 #endif // DIALOGBOX_EXTRUSION_H