Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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   void                      keyPressEvent(QKeyEvent*);
70   
71 private slots:
72
73   void                      onOk();
74   bool                      onApply();
75   void                      onClose();
76   void                      onHelp();
77
78   void                      onDeactivate();
79   void                      onSelectionDone();
80   void                      onFocusChanged();
81
82 private:
83
84   QFrame*                   createButtonFrame( QWidget* );
85   QFrame*                   createMainFrame  ( QWidget* );
86   bool                      isValid();
87   void                      reset();
88   
89 private:
90
91   QPushButton*              myOkBtn;
92   QPushButton*              myApplyBtn;
93   QPushButton*              myCloseBtn;
94   QPushButton*              myHelpBtn;
95   
96   QLineEdit*                myNameEdit;
97   QLineEdit*                myEdit1;
98   QLineEdit*                myEdit2;
99   QPushButton*              myBtn1;
100   QPushButton*              myBtn2;
101   
102   SMESHGUI*                 mySMESHGUI;
103   LightApp_SelectionMgr*    mySelectionMgr;
104   int                       myMode;
105   SVTK_Selector*            mySelector;
106   
107   QLineEdit*                myFocusWg;
108   
109   SMESH::SMESH_GroupBase_var    myGroup1;
110   SMESH::SMESH_GroupBase_var    myGroup2;
111   
112   QString                   myHelpFileName;
113   
114 };
115
116 #endif