Salome HOME
Merge from BR_phase16 branch (09/12/09)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RemoveElementsDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_RemoveElementsDlg.h
24 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
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 SMESHGUI_FilterDlg;
47 class SMESH_Actor;
48 class SVTK_Selector;
49 class LightApp_SelectionMgr;
50
51 //=================================================================================
52 // class    : SMESHGUI_RemoveElementsDlg
53 // purpose  :
54 //=================================================================================
55 class SMESHGUI_EXPORT SMESHGUI_RemoveElementsDlg : public QDialog
56
57   Q_OBJECT
58
59 public:
60   SMESHGUI_RemoveElementsDlg( SMESHGUI* );
61   ~SMESHGUI_RemoveElementsDlg();
62
63 private:
64   void                   Init();
65   void                   closeEvent( QCloseEvent* );
66   void                   enterEvent( QEvent* );        /* mouse enter the QWidget */
67   void                   hideEvent( QHideEvent* );     /* ESC key */
68   void                   keyPressEvent( QKeyEvent* );
69   
70   LightApp_SelectionMgr* mySelectionMgr;
71   SVTK_Selector*         mySelector;
72   SMESHGUI*              mySMESHGUI;
73   
74   int                    myNbOkElements;           /* to check when arguments is defined */
75   int                    myConstructorId;          /* Current constructor id = radio button id */
76   QLineEdit*             myEditCurrentArgument;    /* Current  LineEdit */
77   
78   bool                   myBusy;
79   SMESH::SMESH_Mesh_var  myMesh;
80   SMESH_Actor*           myActor;
81   
82   QGroupBox*             GroupConstructors;
83   QRadioButton*          Constructor1;
84   QGroupBox*             GroupButtons;
85   QPushButton*           buttonOk;
86   QPushButton*           buttonCancel;
87   QPushButton*           buttonApply;
88   QPushButton*           buttonHelp;
89   QGroupBox*             GroupC1;
90   QLabel*                TextLabelC1A1;
91   QPushButton*           SelectButtonC1A1;
92   QLineEdit*             LineEditC1A1;
93   
94   QString                myHelpFileName;
95
96   SMESHGUI_FilterDlg*    myFilterDlg;
97
98 private slots:
99   void                   ClickOnOk();
100   void                   ClickOnCancel();
101   void                   ClickOnApply();
102   void                   ClickOnHelp();
103   void                   SetEditCurrentArgument();
104   void                   SelectionIntoArgument();
105   void                   DeactivateActiveDialog();
106   void                   ActivateThisDialog();
107   void                   onTextChange( const QString& );
108   void                   setFilters();
109 };
110
111 #endif // SMESHGUI_REMOVEELEMENTSDLG_H