Salome HOME
Bug 0020378: Gui of SMESH hypothesis not multi-study ?
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RemoveNodesDlg.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_RemoveNodesDlg.h
24 //  Author : Nicolas REJNERI
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef DIALOGBOX_REMOVE_NODES_H
29 #define DIALOGBOX_REMOVE_NODES_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34
35 // QT Includes
36 #include <qvariant.h>
37 #include <qdialog.h>
38
39 // Open CASCADE Includes
40 #include <TColStd_IndexedMapOfInteger.hxx>
41
42 class QVBoxLayout; 
43 class QHBoxLayout; 
44 class QGridLayout; 
45 class QButtonGroup;
46 class QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class QRadioButton;
51
52 class SMESHGUI;
53 class SMESH_Actor;
54 class SVTK_Selector;
55 class SVTK_ViewWindow;
56
57 // IDL Headers
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60
61 //=================================================================================
62 // class    : SMESHGUI_RemoveNodesDlg
63 // purpose  :
64 //=================================================================================
65 class SMESHGUI_EXPORT SMESHGUI_RemoveNodesDlg : public QDialog
66 {
67     Q_OBJECT
68
69 public:
70     SMESHGUI_RemoveNodesDlg(SMESHGUI* theModule,
71                             const char* name = 0,
72                             bool modal = FALSE,
73                             WFlags fl = 0);
74     ~SMESHGUI_RemoveNodesDlg();
75
76 private:
77
78     void Init() ;
79     void closeEvent( QCloseEvent* e ) ;
80     void enterEvent ( QEvent * ) ;                         /* mouse enter the QWidget */
81     void hideEvent ( QHideEvent * );                       /* ESC key */
82     void keyPressEvent( QKeyEvent* e );
83
84     LightApp_SelectionMgr*        mySelectionMgr;
85     SVTK_Selector*                mySelector;
86     SMESHGUI*                     mySMESHGUI;
87
88     int                           myNbOkNodes;             /* to check when arguments is defined */
89     int                           myConstructorId;         /* Current constructor id = radio button id */
90     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
91
92     bool                          myBusy;
93     SMESH::SMESH_Mesh_var         myMesh;
94     SMESH_Actor*                  myActor;
95     
96     QButtonGroup* GroupConstructors;
97     QRadioButton* Constructor1;
98     QGroupBox* GroupButtons;
99     QPushButton* buttonOk;
100     QPushButton* buttonCancel;
101     QPushButton* buttonApply;
102     QPushButton* buttonHelp;
103     QGroupBox* GroupC1;
104     QLabel* TextLabelC1A1;
105     QPushButton* SelectButtonC1A1;
106     QLineEdit* LineEditC1A1;
107
108     QString myHelpFileName;
109
110 private slots:
111
112     void ConstructorsClicked(int constructorId);
113     void ClickOnOk();
114     void ClickOnCancel();
115     void ClickOnApply();
116     void ClickOnHelp();
117     void SetEditCurrentArgument() ;
118     void SelectionIntoArgument() ;
119     void DeactivateActiveDialog() ;
120     void ActivateThisDialog() ;
121     void onTextChange(const QString&);
122
123 protected:
124     QGridLayout* SMESHGUI_RemoveNodesDlgLayout;
125     QGridLayout* GroupConstructorsLayout;
126     QGridLayout* GroupButtonsLayout;
127     QGridLayout* GroupC1Layout;
128 };
129
130 #endif // DIALOGBOX_REMOVE_NODES_H