Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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 "LightApp_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   void keyPressEvent(QKeyEvent*);
75   int  GetConstructorId();
76   //void closeEvent (QCloseEvent*);
77   //void hideEvent (QHideEvent*);                        /* ESC key */
78
79   SMESHGUI*                     mySMESHGUI;            /* Current SMESHGUI object */
80   LightApp_SelectionMgr*        mySelectionMgr;        /* User shape selection */
81   QLineEdit*                    myEditCurrentArgument; /* Current  LineEdit */
82   QString                       myElementsId;
83   int                           myNbOkElements;        /* to check when elements are defined */
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   QPushButton*      buttonHelp;
116
117   QString           myHelpFileName;
118
119 private slots:
120   void ConstructorsClicked (int);
121   void CheckIsEnable();
122   void ClickOnOk();
123   bool ClickOnApply();
124   void ClickOnCancel();
125   void ClickOnHelp();
126   void SetEditCurrentArgument();
127   void SelectionIntoArgument();
128   void DeactivateActiveDialog();
129   void ActivateThisDialog();
130   void onTextChange (const QString&);
131   void onSelectMesh (bool toSelectMesh);
132 };
133
134 #endif // DIALOGBOX_EXTRUSION_H