Salome HOME
SMH: Preparation version 3.0.0 - merge (HEAD+POLYWORK)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ExtrusionDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_ExtrusionDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_EXTRUSION_H
30 #define DIALOGBOX_EXTRUSION_H
31
32 #include "SalomeApp_SelectionMgr.h"
33 #include "SUIT_SelectionFilter.h"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 class QGridLayout; 
39 class QButtonGroup;
40 class QRadioButton;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QCheckBox;
45 class QSpinBox;
46 class QPushButton;
47
48 class SMESHGUI;
49 class SMESH_Actor;
50 class SMESHGUI_SpinBox;
51 class SVTK_ViewWindow;
52 class SVTK_Selector;
53
54 // IDL Headers
55 #include <SALOMEconfig.h>
56 #include CORBA_SERVER_HEADER(SMESH_Mesh)
57
58 //=================================================================================
59 // class    : SMESHGUI_ExtrusionDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_ExtrusionDlg : public QDialog
63 {
64   Q_OBJECT
65
66 public:
67   SMESHGUI_ExtrusionDlg (SMESHGUI*,
68                          bool modal = FALSE);
69   ~SMESHGUI_ExtrusionDlg();
70
71 private:
72   void Init (bool ResetControls = true);
73   void enterEvent (QEvent*);                           /* mouse enter the QWidget */
74   int  GetConstructorId();
75   //void closeEvent (QCloseEvent*);
76   //void hideEvent (QHideEvent*);                        /* ESC key */
77
78   SMESHGUI*                     mySMESHGUI;            /* Current SMESHGUI object */
79   SalomeApp_SelectionMgr*       mySelectionMgr;        /* User shape selection */
80   QLineEdit*                    myEditCurrentArgument; /* Current  LineEdit */
81   QString                       myElementsId;
82   int                           myNbOkElements;        /* to check when elements are defined */
83   SVTK_ViewWindow*              myViewWindow;
84   SVTK_Selector*                mySelector;
85
86   bool                          myBusy;
87   SMESH::SMESH_Mesh_var         myMesh;
88   SMESH_Actor*                  myActor;
89   SUIT_SelectionFilter*         myMeshOrSubMeshOrGroupFilter;
90
91   // widgets
92   QButtonGroup*     GroupConstructors;
93   QRadioButton*     RadioButton1;
94   QRadioButton*     RadioButton2;
95
96   QGroupBox*        GroupArguments;
97   QLabel*           TextLabelElements;
98   QPushButton*      SelectElementsButton;
99   QLineEdit*        LineEditElements;
100   QCheckBox*        CheckBoxMesh;
101   QLabel*           TextLabelVector;
102   QLabel*           TextLabelDx;
103   SMESHGUI_SpinBox* SpinBox_Dx;
104   QLabel*           TextLabelDy;
105   SMESHGUI_SpinBox* SpinBox_Dy;
106   QLabel*           TextLabelDz;
107   SMESHGUI_SpinBox* SpinBox_Dz;
108   QLabel*           TextLabelNbSteps;
109   QSpinBox*         SpinBox_NbSteps;
110
111   QGroupBox*        GroupButtons;
112   QPushButton*      buttonOk;
113   QPushButton*      buttonCancel;
114   QPushButton*      buttonApply;
115
116 private slots:
117   void ConstructorsClicked (int);
118   void ClickOnOk();
119   bool ClickOnApply();
120   void ClickOnCancel();
121   void SetEditCurrentArgument();
122   void SelectionIntoArgument();
123   void DeactivateActiveDialog();
124   void ActivateThisDialog();
125   void onTextChange (const QString&);
126   void onSelectMesh (bool toSelectMesh);
127 };
128
129 #endif // DIALOGBOX_EXTRUSION_H