Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupOpDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESHGUI_GroupOpDlg.h
23 //  Author : Sergey LITONIN
24 //  Module : SMESH
25 //
26 #ifndef SMESHGUI_GroupOpDlg_H
27 #define SMESHGUI_GroupOpDlg_H
28
29 #include "SMESH_SMESHGUI.hxx"
30
31 #include <qdialog.h>
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Group)
35
36 class QCloseEvent;
37 class QLabel;
38 class QFrame;
39 class QPushButton;
40 class LightApp_SelectionMgr;
41 class QLineEdit;
42 class SMESHGUI;
43 class SVTK_ViewWindow;
44 class SVTK_Selector;
45
46 /*
47   Class       : SMESHGUI_GroupOpDlg
48   Description : Perform boolean operations on groups
49 */
50
51 class SMESHGUI_EXPORT SMESHGUI_GroupOpDlg : public QDialog
52
53   Q_OBJECT
54     
55 public:
56   enum { UNION, INTERSECT, CUT };
57     
58 public:
59                             SMESHGUI_GroupOpDlg( SMESHGUI*, const int );
60   virtual                   ~SMESHGUI_GroupOpDlg();
61
62   void                      Init();
63   
64 private:
65
66   void                      closeEvent( QCloseEvent* e ) ;
67   void                      enterEvent ( QEvent * ) ;            
68   void                      keyPressEvent(QKeyEvent*);
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