X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_DeleteGroupDlg.h;h=baf88c398c57936d77e26b51d6225c48935afbef;hp=1d86778a7d3366c47db0fabe5ad27fce239507c4;hb=57b43b4d010e2d0a1529d3c131bbb9d416e63258;hpb=c38c10811a065cf5b13e8807ed71864d92ca7d80 diff --git a/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.h b/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.h index 1d86778a7..baf88c398 100644 --- a/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.h +++ b/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.h @@ -36,9 +36,12 @@ 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,11 +52,10 @@ 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: @@ -65,6 +67,7 @@ private slots: void onOk(); bool onApply(); void onClose(); + void onHelp(); void onDeactivate(); @@ -81,11 +84,16 @@ private: QPushButton* myOkBtn; QPushButton* myApplyBtn; QPushButton* myCloseBtn; + QPushButton* myHelpBtn; QListBox* myListBox; - SalomeApp_SelectionMgr* mySelectionMgr; + + SMESHGUI* mySMESHGUI; + LightApp_SelectionMgr* mySelectionMgr; QValueList myListGrp; bool myBlockSelection; + + QString myHelpFileName; }; #endif