Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[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 "SALOME_Selection.h"
33 #include "SMESH_TypeFilter.hxx"
34 // QT Includes
35 #include <qdialog.h>
36
37 class QGridLayout; 
38 class QButtonGroup;
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class QSpinBox;
45 class SMESHGUI_SpinBox;
46 class SMESHGUI;
47 class SMESH_Actor;
48
49 // IDL Headers
50 #include <SALOMEconfig.h>
51 #include CORBA_SERVER_HEADER(SMESH_Mesh)
52
53
54 //=================================================================================
55 // class    : SMESHGUI_ExtrusionDlg
56 // purpose  :
57 //=================================================================================
58 class SMESHGUI_ExtrusionDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     SMESHGUI_ExtrusionDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
64     ~SMESHGUI_ExtrusionDlg();
65
66 private:
67
68     void Init() ;
69     void closeEvent( QCloseEvent* e ) ;
70     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
71     void hideEvent ( QHideEvent * );                        /* ESC key */
72     int GetConstructorId();
73
74     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
75     SALOME_Selection*             mySelection ;             /* User shape selection */
76     int                           myNbOkElements ;          /* to check when elements are defined */
77     QLineEdit*                    myEditCurrentArgument;    /* Current  LineEdit */
78
79     bool                          myBusy;
80     SMESH::SMESH_Mesh_var         myMesh;
81     SMESH_Actor*                  myActor;
82     
83     QButtonGroup* GroupConstructors;
84     QRadioButton* RadioButton1;
85     QRadioButton* RadioButton2;
86     QGroupBox* GroupButtons;
87     QPushButton* buttonOk;
88     QPushButton* buttonCancel;
89     QPushButton* buttonApply;
90     QGroupBox* GroupArguments;
91     QLabel* TextLabelElements;
92     QPushButton* SelectElementsButton;
93     QLineEdit* LineEditElements;
94     QLabel* TextLabelVector;
95     QLabel* TextLabelDx;
96     SMESHGUI_SpinBox* SpinBox_Dx;
97     QLabel* TextLabelDy;
98     SMESHGUI_SpinBox* SpinBox_Dy;
99     QLabel* TextLabelDz;
100     SMESHGUI_SpinBox* SpinBox_Dz;
101     QLabel* TextLabelNbSteps;
102     QSpinBox* SpinBox_NbSteps;
103     
104     private slots:
105
106     void ConstructorsClicked(int constructorId);
107     void ClickOnOk();
108     void ClickOnCancel();
109     void ClickOnApply();
110     void SetEditCurrentArgument() ;
111     void SelectionIntoArgument() ;
112     void DeactivateActiveDialog() ;
113     void ActivateThisDialog() ;
114     void onTextChange(const QString&);
115     
116 protected:
117     QGridLayout* SMESHGUI_ExtrusionDlgLayout;
118     QGridLayout* GroupConstructorsLayout;
119     QGridLayout* GroupButtonsLayout;
120     QGridLayout* GroupArgumentsLayout;
121 };
122
123 #endif // DIALOGBOX_EXTRUSION_H