Salome HOME
Merging with WPdev
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "SMESH_SMESHGUI.hxx"
33
34 #include "LightApp_SelectionMgr.h"
35 #include "SUIT_SelectionFilter.h"
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_Actor*                  myActor;
91   SUIT_SelectionFilter*         myMeshOrSubMeshOrGroupFilter;
92
93   // widgets
94   QButtonGroup*     GroupConstructors;
95   QRadioButton*     RadioButton1;
96   QRadioButton*     RadioButton2;
97
98   QGroupBox*        GroupArguments;
99   QLabel*           TextLabelElements;
100   QPushButton*      SelectElementsButton;
101   QLineEdit*        LineEditElements;
102   QCheckBox*        CheckBoxMesh;
103   QLabel*           TextLabelVector;
104   QLabel*           TextLabelDx;
105   SMESHGUI_SpinBox* SpinBox_Dx;
106   QLabel*           TextLabelDy;
107   SMESHGUI_SpinBox* SpinBox_Dy;
108   QLabel*           TextLabelDz;
109   SMESHGUI_SpinBox* SpinBox_Dz;
110   QLabel*           TextLabelNbSteps;
111   QSpinBox*         SpinBox_NbSteps;
112
113   QGroupBox*        GroupButtons;
114   QPushButton*      buttonOk;
115   QPushButton*      buttonCancel;
116   QPushButton*      buttonApply;
117   QPushButton*      buttonHelp;
118
119   QString           myHelpFileName;
120
121 private slots:
122   void ConstructorsClicked (int);
123   void CheckIsEnable();
124   void ClickOnOk();
125   bool ClickOnApply();
126   void ClickOnCancel();
127   void ClickOnHelp();
128   void SetEditCurrentArgument();
129   void SelectionIntoArgument();
130   void DeactivateActiveDialog();
131   void ActivateThisDialog();
132   void onTextChange (const QString&);
133   void onSelectMesh (bool toSelectMesh);
134 };
135
136 #endif // DIALOGBOX_EXTRUSION_H