Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ExtrusionDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_ExtrusionDlg.h
24 // Author : Michael ZORIN, Open CASCADE S.A.S.
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 SMESHGUI_FilterDlg;
55 class SVTK_Selector;
56 class LightApp_SelectionMgr;
57 class SUIT_SelectionFilter;
58 class SalomeApp_IntSpinBox;
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   ~SMESHGUI_ExtrusionDlg();
71
72   void                             reject();
73
74 private:
75   void                             Init( bool = true );
76   void                             enterEvent( QEvent* );       /* mouse enter the QWidget */
77   void                             closeEvent( QCloseEvent* );
78   void                             keyPressEvent( QKeyEvent* );
79   int                              GetConstructorId();
80
81   bool                             isValid();
82   
83   SMESHGUI*                        mySMESHGUI;            /* Current SMESHGUI object */
84   SMESHGUI_IdValidator*            myIdValidator;
85   LightApp_SelectionMgr*           mySelectionMgr;        /* User shape selection */
86   QWidget*                         myEditCurrentArgument; /* Current  argument editor */
87   int                              myNbOkElements;        /* to check when elements are defined */
88   SVTK_Selector*                   mySelector;
89
90   SMESH::SMESH_IDSource_var        mySelectedObject;
91
92   bool                             myBusy;
93   SMESH::SMESH_Mesh_var            myMesh;
94   SMESH::long_array_var            myElementsId;
95   SMESH_Actor*                     myActor;
96   Handle(SALOME_InteractiveObject) myIO;
97   SUIT_SelectionFilter*            myMeshOrSubMeshOrGroupFilter;
98
99   // widgets
100   QGroupBox*                       ConstructorsBox;
101   QButtonGroup*                    GroupConstructors;
102   QRadioButton*                    RadioButton1;
103   QRadioButton*                    RadioButton2;
104   QRadioButton*                    RadioButton3;
105   QRadioButton*                    RadioButton4;
106
107   QGroupBox*                       GroupArguments;
108   QGroupBox*                       GroupDimensions;
109   QLabel*                          TextLabelElements;
110   QPushButton*                     SelectElementsButton;
111   QLineEdit*                       LineEditElements;
112   QCheckBox*                       CheckBoxMesh;
113   QLabel*                          TextLabelVector;
114   QLabel*                          TextLabelDistance;
115   QPushButton*                     SelectVectorButton;
116   QLabel*                          TextLabelDx;
117   SMESHGUI_SpinBox*                SpinBox_Dx;
118   QLabel*                          TextLabelDy;
119   SMESHGUI_SpinBox*                SpinBox_Dy;
120   QLabel*                          TextLabelDz;
121   SMESHGUI_SpinBox*                SpinBox_Dz;
122   QLabel*                          TextLabelVx;
123   SMESHGUI_SpinBox*                SpinBox_Vx;
124   QLabel*                          TextLabelVy;
125   SMESHGUI_SpinBox*                SpinBox_Vy;
126   QLabel*                          TextLabelVz;
127   SMESHGUI_SpinBox*                SpinBox_Vz;
128   QLabel*                          TextLabelDist;
129   SMESHGUI_SpinBox*                SpinBox_VDist;
130   QLabel*                          TextLabelNbSteps;
131   SalomeApp_IntSpinBox*            SpinBox_NbSteps;
132   QCheckBox*                       MakeGroupsCheck;
133
134   QGroupBox*                       GroupButtons;
135   QPushButton*                     buttonOk;
136   QPushButton*                     buttonCancel;
137   QPushButton*                     buttonApply;
138   QPushButton*                     buttonHelp;
139
140   QString                          myHelpFileName;
141   QString                          myIDs;
142
143   QPushButton*                     myFilterBtn;
144   SMESHGUI_FilterDlg*              myFilterDlg;
145    
146 private slots:
147   void                            ConstructorsClicked( int );
148   void                            CheckIsEnable();
149   void                            ClickOnOk();
150   bool                            ClickOnApply();
151   void                            ClickOnCancel();
152   void                            ClickOnHelp();
153   void                            ClickOnRadio();
154   void                            SetEditCurrentArgument();
155   void                            SelectionIntoArgument();
156   void                            DeactivateActiveDialog();
157   void                            ActivateThisDialog();
158   void                            onTextChange( const QString& );
159   void                            onSelectMesh( bool );
160   void                            setFilters();
161 };
162
163 #endif // SMESHGUI_EXTRUSIONDLG_H