Salome HOME
PAL14047 : Problem to select merged face with Create group window
[modules/geom.git] / src / BooleanGUI / BooleanGUI.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
23 //
24 //  File   : BooleanGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29
30 #include "BooleanGUI.h"
31
32 #include "SUIT_Desktop.h"
33 #include "BooleanGUI_Dialog.h"
34
35 #include "GeometryGUI.h"
36
37 using namespace std;
38
39 //=======================================================================
40 // function : BooleanGUI()
41 // purpose  : Constructor
42 //=======================================================================
43 BooleanGUI::BooleanGUI( GeometryGUI* parent ) : GEOMGUI( parent )
44 {
45 }
46
47 //=======================================================================
48 // function : ~BooleanGUI()
49 // purpose  : Destructor
50 //=======================================================================
51 BooleanGUI::~BooleanGUI()
52 {
53 }
54
55
56 //=======================================================================
57 // function : OnGUIEvent()
58 // purpose  : 
59 //=======================================================================
60 bool BooleanGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
61 {
62   getGeometryGUI()->EmitSignalDeactivateDialog();
63
64   int anOperation = 0;  
65   if      ( theCommandID == 5011 )
66     anOperation = FUSE;
67   else if ( theCommandID == 5012 )
68     anOperation = COMMON;
69   else if ( theCommandID == 5013 )
70     anOperation = CUT;
71   else if ( theCommandID == 5014 )
72     anOperation = SECTION;
73   else
74     return false;
75
76   QDialog* aDlg = new BooleanGUI_Dialog( anOperation, getGeometryGUI(), parent, "");
77   aDlg->show();
78
79   return true;
80 }
81
82 //=====================================================================================
83 // EXPORTED METHODS
84 //=====================================================================================
85 extern "C"
86 {
87 GEOM_BOOLEANGUI_EXPORT
88   GEOMGUI* GetLibGUI( GeometryGUI* parent )
89   {
90     return new BooleanGUI( parent );
91   }
92 }