Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_DeleteGroupDlg.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
21 //
22 //  File   : SMESHGUI_DeleteGroupDlg.h
23 //  Author : Sergey LITONIN
24 //  Module : SMESH
25
26
27 #ifndef SMESHGUI_DELETEGROUPDLG_H
28 #define SMESHGUI_DELETEGROUPDLG_H
29
30 #include "SMESH_SMESHGUI.hxx"
31
32 #include <qdialog.h>
33 #include <qlist.h>
34
35 #include <SALOMEconfig.h>
36 #include CORBA_SERVER_HEADER(SMESH_Group)
37
38 class QCloseEvent;
39 class QFrame;
40 class QPushButton;
41 class QListBox;
42
43 class SMESHGUI;
44 class SVTK_ViewWindow;
45 class LightApp_SelectionMgr;
46
47 /*!
48  *  Class       : SMESHGUI_DeleteGroupDlg
49  *  Description : Delete groups and their contents
50  */
51
52 class SMESHGUI_EXPORT SMESHGUI_DeleteGroupDlg : public QDialog
53 {
54   Q_OBJECT
55
56 public:
57                           SMESHGUI_DeleteGroupDlg( SMESHGUI* );
58   virtual                 ~SMESHGUI_DeleteGroupDlg();
59
60   void                    Init ();
61
62 private:
63
64   void                    closeEvent (QCloseEvent*);
65   void                    enterEvent (QEvent*);
66   void                    keyPressEvent(QKeyEvent*);
67
68 private slots:
69
70   void                    onOk();
71   bool                    onApply();
72   void                    onClose();
73   void                    onHelp();
74
75   void                    onDeactivate();
76
77   void                    onSelectionDone();
78
79 private:
80
81   QFrame*                 createButtonFrame (QWidget*);
82   QFrame*                 createMainFrame   (QWidget*);
83   bool                    isValid();
84
85 private:
86
87   QPushButton*            myOkBtn;
88   QPushButton*            myApplyBtn;
89   QPushButton*            myCloseBtn;
90   QPushButton*            myHelpBtn;
91   QListBox*               myListBox;
92
93   SMESHGUI*               mySMESHGUI;
94   LightApp_SelectionMgr*  mySelectionMgr;
95
96   QValueList<SMESH::SMESH_GroupBase_var> myListGrp;
97   bool                                   myBlockSelection;
98
99   QString                 myHelpFileName;
100 };
101
102 #endif