Salome HOME
3dfd477ea1e7ba2b8769ce8775513e5e06d5e1e2
[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 // File   : SMESHGUI_RemoveElementsDlg.h
23 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_REMOVEELEMENTSDLG_H
27 #define SMESHGUI_REMOVEELEMENTSDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44
45 class SMESHGUI;
46 class SMESH_Actor;
47 class SVTK_Selector;
48 class LightApp_SelectionMgr;
49
50 //=================================================================================
51 // class    : SMESHGUI_RemoveElementsDlg
52 // purpose  :
53 //=================================================================================
54 class SMESHGUI_EXPORT SMESHGUI_RemoveElementsDlg : public QDialog
55
56   Q_OBJECT
57
58 public:
59   SMESHGUI_RemoveElementsDlg( SMESHGUI* );
60   ~SMESHGUI_RemoveElementsDlg();
61
62 private:
63   void                   Init();
64   void                   closeEvent( QCloseEvent* );
65   void                   enterEvent( QEvent* );        /* mouse enter the QWidget */
66   void                   hideEvent( QHideEvent* );     /* ESC key */
67   void                   keyPressEvent( QKeyEvent* );
68   
69   LightApp_SelectionMgr* mySelectionMgr;
70   SVTK_Selector*         mySelector;
71   SMESHGUI*              mySMESHGUI;
72   
73   int                    myNbOkElements;           /* to check when arguments is defined */
74   int                    myConstructorId;          /* Current constructor id = radio button id */
75   QLineEdit*             myEditCurrentArgument;    /* Current  LineEdit */
76   
77   bool                   myBusy;
78   SMESH::SMESH_Mesh_var  myMesh;
79   SMESH_Actor*           myActor;
80   
81   QGroupBox*             GroupConstructors;
82   QRadioButton*          Constructor1;
83   QGroupBox*             GroupButtons;
84   QPushButton*           buttonOk;
85   QPushButton*           buttonCancel;
86   QPushButton*           buttonApply;
87   QPushButton*           buttonHelp;
88   QGroupBox*             GroupC1;
89   QLabel*                TextLabelC1A1;
90   QPushButton*           SelectButtonC1A1;
91   QLineEdit*             LineEditC1A1;
92   
93   QString                myHelpFileName;
94
95 private slots:
96   void                   ClickOnOk();
97   void                   ClickOnCancel();
98   void                   ClickOnApply();
99   void                   ClickOnHelp();
100   void                   SetEditCurrentArgument();
101   void                   SelectionIntoArgument();
102   void                   DeactivateActiveDialog();
103   void                   ActivateThisDialog();
104   void                   onTextChange( const QString& );
105 };
106
107 #endif // SMESHGUI_REMOVEELEMENTSDLG_H