Salome HOME
PAL16753 (selection bug in GUI)
[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 //
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 #include "Handle_SALOME_InteractiveObject.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
40 class QButtonGroup;
41 class QRadioButton;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QCheckBox;
46 class QSpinBox;
47 class QPushButton;
48
49 class SMESHGUI;
50 class SMESH_Actor;
51 class SMESHGUI_SpinBox;
52 class SVTK_ViewWindow;
53 class SVTK_Selector;
54
55 // IDL Headers
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SMESH_Mesh)
58
59 //=================================================================================
60 // class    : SMESHGUI_ExtrusionDlg
61 // purpose  :
62 //=================================================================================
63 class SMESHGUI_ExtrusionDlg : public QDialog
64 {
65   Q_OBJECT
66
67 public:
68   SMESHGUI_ExtrusionDlg (SMESHGUI*,
69                          bool modal = FALSE);
70   ~SMESHGUI_ExtrusionDlg();
71
72 private:
73   void Init (bool ResetControls = true);
74   void enterEvent (QEvent*);                           /* mouse enter the QWidget */
75   void keyPressEvent(QKeyEvent*);
76   int  GetConstructorId();
77   //void closeEvent (QCloseEvent*);
78   //void hideEvent (QHideEvent*);                        /* ESC key */
79
80   SMESHGUI*                     mySMESHGUI;            /* Current SMESHGUI object */
81   LightApp_SelectionMgr*        mySelectionMgr;        /* User shape selection */
82   QLineEdit*                    myEditCurrentArgument; /* Current  LineEdit */
83   //QString                       myElementsId;
84   int                           myNbOkElements;        /* to check when elements are defined */
85   SVTK_Selector*                mySelector;
86
87   bool                          myBusy;
88   SMESH::SMESH_Mesh_var         myMesh;
89   SMESH::long_array_var         myElementsId;
90   SMESH_Actor*                  myActor;
91   Handle(SALOME_InteractiveObject) myIO;
92   SUIT_SelectionFilter*         myMeshOrSubMeshOrGroupFilter;
93
94   // widgets
95   QButtonGroup*     GroupConstructors;
96   QRadioButton*     RadioButton1;
97   QRadioButton*     RadioButton2;
98
99   QGroupBox*        GroupArguments;
100   QLabel*           TextLabelElements;
101   QPushButton*      SelectElementsButton;
102   QLineEdit*        LineEditElements;
103   QCheckBox*        CheckBoxMesh;
104   QLabel*           TextLabelVector;
105   QLabel*           TextLabelDx;
106   SMESHGUI_SpinBox* SpinBox_Dx;
107   QLabel*           TextLabelDy;
108   SMESHGUI_SpinBox* SpinBox_Dy;
109   QLabel*           TextLabelDz;
110   SMESHGUI_SpinBox* SpinBox_Dz;
111   QLabel*           TextLabelNbSteps;
112   QSpinBox*         SpinBox_NbSteps;
113
114   QGroupBox*        GroupButtons;
115   QPushButton*      buttonOk;
116   QPushButton*      buttonCancel;
117   QPushButton*      buttonApply;
118   QPushButton*      buttonHelp;
119
120   QString           myHelpFileName;
121
122 private slots:
123   void ConstructorsClicked (int);
124   void CheckIsEnable();
125   void ClickOnOk();
126   bool ClickOnApply();
127   void ClickOnCancel();
128   void ClickOnHelp();
129   void SetEditCurrentArgument();
130   void SelectionIntoArgument();
131   void DeactivateActiveDialog();
132   void ActivateThisDialog();
133   void onTextChange (const QString&);
134   void onSelectMesh (bool toSelectMesh);
135 };
136
137 #endif // DIALOGBOX_EXTRUSION_H