Salome HOME
PAL14419 (IMP: a filter predicate to find nodes/elements lying on any
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_DeleteGroupDlg.h
index 1d86778a7d3366c47db0fabe5ad27fce239507c4..789c888ed438d28f05710645377b4e1e2a56ebaa 100644 (file)
@@ -15,7 +15,7 @@
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 class QCloseEvent;
 class QFrame;
 class QPushButton;
-class SalomeApp_SelectionMgr;
 class QListBox;
 
+class SMESHGUI;
+class SVTK_ViewWindow;
+class LightApp_SelectionMgr;
+
 /*!
  *  Class       : SMESHGUI_DeleteGroupDlg
  *  Description : Delete groups and their contents
@@ -49,22 +52,23 @@ class SMESHGUI_DeleteGroupDlg : public QDialog
   Q_OBJECT
 
 public:
-                          SMESHGUI_DeleteGroupDlg (QWidget*,
-                                                  SalomeApp_SelectionMgr*);
+                          SMESHGUI_DeleteGroupDlg( SMESHGUI* );
   virtual                 ~SMESHGUI_DeleteGroupDlg();
 
-  void                    Init (SalomeApp_SelectionMgr*);
+  void                    Init ();
 
 private:
 
   void                    closeEvent (QCloseEvent*);
   void                    enterEvent (QEvent*);
+  void                    keyPressEvent(QKeyEvent*);
 
 private slots:
 
   void                    onOk();
   bool                    onApply();
   void                    onClose();
+  void                    onHelp();
 
   void                    onDeactivate();
 
@@ -81,11 +85,16 @@ private:
   QPushButton*            myOkBtn;
   QPushButton*            myApplyBtn;
   QPushButton*            myCloseBtn;
+  QPushButton*            myHelpBtn;
   QListBox*               myListBox;
-  SalomeApp_SelectionMgr* mySelectionMgr;
+
+  SMESHGUI*               mySMESHGUI;
+  LightApp_SelectionMgr*  mySelectionMgr;
 
   QValueList<SMESH::SMESH_GroupBase_var> myListGrp;
   bool                                   myBlockSelection;
+
+  QString                 myHelpFileName;
 };
 
 #endif