Salome HOME
Dump Puthon extension
[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 QPushButton;
49
50 class SMESHGUI;
51 class SMESH_Actor;
52 class SMESHGUI_IdValidator;
53 class SMESHGUI_SpinBox;
54 class SVTK_Selector;
55 class LightApp_SelectionMgr;
56 class SUIT_SelectionFilter;
57 class SalomeApp_IntSpinBox;
58
59 //=================================================================================
60 // class    : SMESHGUI_ExtrusionDlg
61 // purpose  :
62 //=================================================================================
63 class SMESHGUI_EXPORT SMESHGUI_ExtrusionDlg : public QDialog
64 {
65   Q_OBJECT
66
67 public:
68   SMESHGUI_ExtrusionDlg( SMESHGUI* );
69   ~SMESHGUI_ExtrusionDlg();
70
71 private:
72   void                             Init( bool = true );
73   void                             enterEvent( QEvent* );       /* mouse enter the QWidget */
74   void                             keyPressEvent( QKeyEvent* );
75   int                              GetConstructorId();
76
77   bool                             isValid();
78   
79   SMESHGUI*                        mySMESHGUI;            /* Current SMESHGUI object */
80   SMESHGUI_IdValidator*            myIdValidator;
81   LightApp_SelectionMgr*           mySelectionMgr;        /* User shape selection */
82   QLineEdit*                       myEditCurrentArgument; /* Current  LineEdit */
83   int                              myNbOkElements;        /* to check when elements are defined */
84   SVTK_Selector*                   mySelector;
85
86   SMESH::SMESH_IDSource_var        mySelectedObject;
87
88   bool                             myBusy;
89   SMESH::SMESH_Mesh_var            myMesh;
90   SMESH::long_array_var            myElementsId;
91   SMESH_Actor*                     myActor;
92   Handle(SALOME_InteractiveObject) myIO;
93   SUIT_SelectionFilter*            myMeshOrSubMeshOrGroupFilter;
94
95   // widgets
96   QGroupBox*                       ConstructorsBox;
97   QButtonGroup*                    GroupConstructors;
98   QRadioButton*                    RadioButton1;
99   QRadioButton*                    RadioButton2;
100
101   QGroupBox*                       GroupArguments;
102   QLabel*                          TextLabelElements;
103   QPushButton*                     SelectElementsButton;
104   QLineEdit*                       LineEditElements;
105   QCheckBox*                       CheckBoxMesh;
106   QLabel*                          TextLabelVector;
107   QLabel*                          TextLabelDx;
108   SMESHGUI_SpinBox*                SpinBox_Dx;
109   QLabel*                          TextLabelDy;
110   SMESHGUI_SpinBox*                SpinBox_Dy;
111   QLabel*                          TextLabelDz;
112   SMESHGUI_SpinBox*                SpinBox_Dz;
113   QLabel*                          TextLabelNbSteps;
114   SalomeApp_IntSpinBox*            SpinBox_NbSteps;
115   QCheckBox*                       MakeGroupsCheck;
116
117   QGroupBox*                       GroupButtons;
118   QPushButton*                     buttonOk;
119   QPushButton*                     buttonCancel;
120   QPushButton*                     buttonApply;
121   QPushButton*                     buttonHelp;
122
123   QString                          myHelpFileName;
124
125 private slots:
126   void                            ConstructorsClicked( int );
127   void                            CheckIsEnable();
128   void                            ClickOnOk();
129   bool                            ClickOnApply();
130   void                            ClickOnCancel();
131   void                            ClickOnHelp();
132   void                            SetEditCurrentArgument();
133   void                            SelectionIntoArgument();
134   void                            DeactivateActiveDialog();
135   void                            ActivateThisDialog();
136   void                            onTextChange( const QString& );
137   void                            onSelectMesh( bool );
138 };
139
140 #endif // SMESHGUI_EXTRUSIONDLG_H