Salome HOME
remove images in ascii
[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
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