Salome HOME
Using files from package LightApp instead of files from package SalomeApp
[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 "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   int  GetConstructorId();
75   //void closeEvent (QCloseEvent*);
76   //void hideEvent (QHideEvent*);                        /* ESC key */
77
78   SMESHGUI*                     mySMESHGUI;            /* Current SMESHGUI object */
79   LightApp_SelectionMgr*        mySelectionMgr;        /* User shape selection */
80   QLineEdit*                    myEditCurrentArgument; /* Current  LineEdit */
81   QString                       myElementsId;
82   int                           myNbOkElements;        /* to check when elements are defined */
83   SVTK_Selector*                mySelector;
84
85   bool                          myBusy;
86   SMESH::SMESH_Mesh_var         myMesh;
87   SMESH_Actor*                  myActor;
88   SUIT_SelectionFilter*         myMeshOrSubMeshOrGroupFilter;
89
90   // widgets
91   QButtonGroup*     GroupConstructors;
92   QRadioButton*     RadioButton1;
93   QRadioButton*     RadioButton2;
94
95   QGroupBox*        GroupArguments;
96   QLabel*           TextLabelElements;
97   QPushButton*      SelectElementsButton;
98   QLineEdit*        LineEditElements;
99   QCheckBox*        CheckBoxMesh;
100   QLabel*           TextLabelVector;
101   QLabel*           TextLabelDx;
102   SMESHGUI_SpinBox* SpinBox_Dx;
103   QLabel*           TextLabelDy;
104   SMESHGUI_SpinBox* SpinBox_Dy;
105   QLabel*           TextLabelDz;
106   SMESHGUI_SpinBox* SpinBox_Dz;
107   QLabel*           TextLabelNbSteps;
108   QSpinBox*         SpinBox_NbSteps;
109
110   QGroupBox*        GroupButtons;
111   QPushButton*      buttonOk;
112   QPushButton*      buttonCancel;
113   QPushButton*      buttonApply;
114
115 private slots:
116   void ConstructorsClicked (int);
117   void ClickOnOk();
118   bool ClickOnApply();
119   void ClickOnCancel();
120   void SetEditCurrentArgument();
121   void SelectionIntoArgument();
122   void DeactivateActiveDialog();
123   void ActivateThisDialog();
124   void onTextChange (const QString&);
125   void onSelectMesh (bool toSelectMesh);
126 };
127
128 #endif // DIALOGBOX_EXTRUSION_H