Salome HOME
Porting SMESH module to Qt 4
[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 // File   : SMESHGUI_ExtrusionDlg.h
23 // Author : Michael ZORIN, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_EXTRUSIONDLG_H
27 #define SMESHGUI_EXTRUSIONDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // SALOME GUI includes
33 #include <SALOME_InteractiveObject.hxx>
34
35 // Qt includes
36 #include <QDialog>
37
38 // IDL includes
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41
42 class QButtonGroup;
43 class QRadioButton;
44 class QGroupBox;
45 class QLabel;
46 class QLineEdit;
47 class QCheckBox;
48 class QSpinBox;
49 class QPushButton;
50
51 class SMESHGUI;
52 class SMESH_Actor;
53 class SMESHGUI_SpinBox;
54 class SVTK_Selector;
55 class LightApp_SelectionMgr;
56 class SUIT_SelectionFilter;
57
58 //=================================================================================
59 // class    : SMESHGUI_ExtrusionDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public QDialog
63 {
64   Q_OBJECT
65
66 public:
67   SMESHGUI_ExtrusionDlg( SMESHGUI* );
68   ~SMESHGUI_ExtrusionDlg();
69
70 private:
71   void                             Init( bool = true );
72   void                             enterEvent( QEvent* );       /* mouse enter the QWidget */
73   void                             keyPressEvent( QKeyEvent* );
74   int                              GetConstructorId();
75
76   SMESHGUI*                        mySMESHGUI;            /* Current SMESHGUI object */
77   LightApp_SelectionMgr*           mySelectionMgr;        /* User shape selection */
78   QLineEdit*                       myEditCurrentArgument; /* Current  LineEdit */
79   int                              myNbOkElements;        /* to check when elements are defined */
80   SVTK_Selector*                   mySelector;
81
82   bool                             myBusy;
83   SMESH::SMESH_Mesh_var            myMesh;
84   SMESH::long_array_var            myElementsId;
85   SMESH_Actor*                     myActor;
86   Handle(SALOME_InteractiveObject) myIO;
87   SUIT_SelectionFilter*            myMeshOrSubMeshOrGroupFilter;
88
89   // widgets
90   QGroupBox*                       ConstructorsBox;
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   QCheckBox*                       MakeGroupsCheck;
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 );
132 };
133
134 #endif // SMESHGUI_EXTRUSIONDLG_H