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