Salome HOME
[Bug PAL7444] display mesh takes a lot of more memory in 2.1.0 than in 2.0.0.
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
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 <qdialog.h>
31
32 #include <SALOMEconfig.h>
33 #include CORBA_SERVER_HEADER(SMESH_Group)
34
35 class QCloseEvent;
36 class QLabel;
37 class QFrame;
38 class QPushButton;
39 class SALOME_Selection;
40 class QLineEdit;
41
42 /*
43   Class       : SMESHGUI_GroupOpDlg
44   Description : Perform boolean operations on groups
45 */
46
47 class SMESHGUI_GroupOpDlg : public QDialog
48
49   Q_OBJECT
50     
51 public:
52   enum { UNION, INTERSECT, CUT };
53     
54 public:
55                             SMESHGUI_GroupOpDlg( QWidget*, SALOME_Selection*, const int );
56   virtual                   ~SMESHGUI_GroupOpDlg();
57
58   void                      Init( SALOME_Selection* ) ;
59   
60 private:
61
62   void                      closeEvent( QCloseEvent* e ) ;
63   void                      enterEvent ( QEvent * ) ;            
64   
65 private slots:
66
67   void                      onOk();
68   bool                      onApply();
69   void                      onClose();
70
71   void                      onDeactivate();
72   void                      onSelectionDone();
73   void                      onFocusChanged();
74
75 private:
76
77   QFrame*                   createButtonFrame( QWidget* );
78   QFrame*                   createMainFrame  ( QWidget* );
79   bool                      isValid();
80   void                      reset();
81   
82 private:
83
84   QPushButton*              myOkBtn;
85   QPushButton*              myApplyBtn;
86   QPushButton*              myCloseBtn;
87   
88   QLineEdit*                myNameEdit;
89   QLineEdit*                myEdit1;
90   QLineEdit*                myEdit2;
91   QPushButton*              myBtn1;
92   QPushButton*              myBtn2;
93   
94   SALOME_Selection*         mySelection;
95   int                       myMode;
96   
97   QLineEdit*                myFocusWg;
98   
99   SMESH::SMESH_GroupBase_var    myGroup1;
100   SMESH::SMESH_GroupBase_var    myGroup2;
101   
102 };
103
104 #endif
105
106
107
108
109