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