Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.h
index d05201390a54448ad371550166af24d1d2207c70..89e4d3ccc84336368186ab80c1558dc2ab8aab09 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
 //
 //
 //
@@ -36,8 +36,11 @@ class QCloseEvent;
 class QLabel;
 class QFrame;
 class QPushButton;
-class SalomeApp_SelectionMgr;
+class LightApp_SelectionMgr;
 class QLineEdit;
+class SMESHGUI;
+class SVTK_ViewWindow;
+class SVTK_Selector;
 
 /*
   Class       : SMESHGUI_GroupOpDlg
@@ -52,10 +55,10 @@ public:
   enum { UNION, INTERSECT, CUT };
     
 public:
-                            SMESHGUI_GroupOpDlg( QWidget*, SalomeApp_SelectionMgr*, const int );
+                            SMESHGUI_GroupOpDlg( SMESHGUI*, const int );
   virtual                   ~SMESHGUI_GroupOpDlg();
 
-  void                      Init( SalomeApp_SelectionMgr* ) ;
+  void                      Init();
   
 private:
 
@@ -67,6 +70,7 @@ private slots:
   void                      onOk();
   bool                      onApply();
   void                      onClose();
+  void                      onHelp();
 
   void                      onDeactivate();
   void                      onSelectionDone();
@@ -84,6 +88,7 @@ private:
   QPushButton*              myOkBtn;
   QPushButton*              myApplyBtn;
   QPushButton*              myCloseBtn;
+  QPushButton*              myHelpBtn;
   
   QLineEdit*                myNameEdit;
   QLineEdit*                myEdit1;
@@ -91,14 +96,18 @@ private:
   QPushButton*              myBtn1;
   QPushButton*              myBtn2;
   
-  SalomeApp_SelectionMgr*   mySelectionMgr;
+  SMESHGUI*                 mySMESHGUI;
+  LightApp_SelectionMgr*    mySelectionMgr;
   int                       myMode;
+  SVTK_Selector*            mySelector;
   
   QLineEdit*                myFocusWg;
   
   SMESH::SMESH_GroupBase_var    myGroup1;
   SMESH::SMESH_GroupBase_var    myGroup2;
   
+  QString                   myHelpFileName;
+  
 };
 
 #endif