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