Salome HOME
be5bfa29692805332c842bf7d06d2c2c9705628a
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.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_GroupOpDlg.h
23 //  Author : Sergey LITONIN
24 //  Module : SMESH
25
26
27 #ifndef SMESHGUI_GroupOpDlg_H
28 #define SMESHGUI_GroupOpDlg_H
29
30 #include "SMESH_SMESHGUI.hxx"
31
32 #include <qdialog.h>
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Group)
36
37 class QCloseEvent;
38 class QLabel;
39 class QFrame;
40 class QPushButton;
41 class LightApp_SelectionMgr;
42 class QLineEdit;
43 class SMESHGUI;
44 class SVTK_ViewWindow;
45 class SVTK_Selector;
46
47 /*
48   Class       : SMESHGUI_GroupOpDlg
49   Description : Perform boolean operations on groups
50 */
51
52 class SMESHGUI_EXPORT SMESHGUI_GroupOpDlg : public QDialog
53
54   Q_OBJECT
55     
56 public:
57   enum { UNION, INTERSECT, CUT };
58     
59 public:
60                             SMESHGUI_GroupOpDlg( SMESHGUI*, const int );
61   virtual                   ~SMESHGUI_GroupOpDlg();
62
63   void                      Init();
64   
65 private:
66
67   void                      closeEvent( QCloseEvent* e ) ;
68   void                      enterEvent ( QEvent * ) ;            
69   
70 private slots:
71
72   void                      onOk();
73   bool                      onApply();
74   void                      onClose();
75   void                      onHelp();
76
77   void                      onDeactivate();
78   void                      onSelectionDone();
79   void                      onFocusChanged();
80
81 private:
82
83   QFrame*                   createButtonFrame( QWidget* );
84   QFrame*                   createMainFrame  ( QWidget* );
85   bool                      isValid();
86   void                      reset();
87   
88 private:
89
90   QPushButton*              myOkBtn;
91   QPushButton*              myApplyBtn;
92   QPushButton*              myCloseBtn;
93   QPushButton*              myHelpBtn;
94   
95   QLineEdit*                myNameEdit;
96   QLineEdit*                myEdit1;
97   QLineEdit*                myEdit2;
98   QPushButton*              myBtn1;
99   QPushButton*              myBtn2;
100   
101   SMESHGUI*                 mySMESHGUI;
102   LightApp_SelectionMgr*    mySelectionMgr;
103   int                       myMode;
104   SVTK_Selector*            mySelector;
105   
106   QLineEdit*                myFocusWg;
107   
108   SMESH::SMESH_GroupBase_var    myGroup1;
109   SMESH::SMESH_GroupBase_var    myGroup2;
110   
111   QString                   myHelpFileName;
112   
113 };
114
115 #endif