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