]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESHGUI/SMESHGUI_DeleteGroupDlg.h
Salome HOME
SWP12792: Help pages is connected
[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
67 private slots:
68
69   void                    onOk();
70   bool                    onApply();
71   void                    onClose();
72   void                    onHelp();
73
74   void                    onDeactivate();
75
76   void                    onSelectionDone();
77
78 private:
79
80   QFrame*                 createButtonFrame (QWidget*);
81   QFrame*                 createMainFrame   (QWidget*);
82   bool                    isValid();
83
84 private:
85
86   QPushButton*            myOkBtn;
87   QPushButton*            myApplyBtn;
88   QPushButton*            myCloseBtn;
89   QPushButton*            myHelpBtn;
90   QListBox*               myListBox;
91
92   SMESHGUI*               mySMESHGUI;
93   LightApp_SelectionMgr*  mySelectionMgr;
94
95   QValueList<SMESH::SMESH_GroupBase_var> myListGrp;
96   bool                                   myBlockSelection;
97
98   QString                 myHelpFileName;
99 };
100
101 #endif