Salome HOME
0e6c813d6e4b265e25f465e878d69abf2dabfa53
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : BooleanGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 #include "BooleanGUI.h"
31
32 #include "QAD_Desktop.h"
33 #include "SALOMEGUI_QtCatchCorbaException.hxx"
34 #include "BooleanGUI_Dialog.h"
35
36 BooleanGUI* BooleanGUI::myGUIObject = 0;
37
38 //=======================================================================
39 // function : GetBooleanGUI()
40 // purpose  : Get the only BooleanGUI object [ static ]
41 //=======================================================================
42 BooleanGUI* BooleanGUI::GetBooleanGUI()
43 {
44   if ( myGUIObject == 0 ) {
45     // init BooleanGUI only once
46     myGUIObject = new BooleanGUI();
47   }
48   return myGUIObject;
49 }
50
51 //=======================================================================
52 // function : BooleanGUI()
53 // purpose  : Constructor
54 //=======================================================================
55 BooleanGUI::BooleanGUI() : GEOMGUI()
56 {
57 }
58
59
60 //=======================================================================
61 // function : ~BooleanGUI()
62 // purpose  : Destructor
63 //=======================================================================
64 BooleanGUI::~BooleanGUI()
65 {
66 }
67
68
69 //=======================================================================
70 // function : OnGUIEvent()
71 // purpose  : 
72 //=======================================================================
73 bool BooleanGUI::OnGUIEvent(int theCommandID, QAD_Desktop* parent)
74 {
75   GeometryGUI::GetGeomGUI()->EmitSignalDeactivateDialog();
76   SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection());
77
78   int anOperation = 0;  
79   if      ( theCommandID == 5011 )
80     anOperation = FUSE;
81   else if ( theCommandID == 5012 )
82     anOperation = COMMON;
83   else if ( theCommandID == 5013 )
84     anOperation = CUT;
85   else if ( theCommandID == 5014 )
86     anOperation = SECTION;
87   else
88     return false;
89
90   QDialog* aDlg = new BooleanGUI_Dialog( anOperation, parent, "", Sel);
91   aDlg->show();
92    
93   return true;
94 }
95
96 //=====================================================================================
97 // EXPORTED METHODS
98 //=====================================================================================
99 extern "C"
100 {
101   GEOMGUI* GetLibGUI()
102   {
103     return BooleanGUI::GetBooleanGUI();
104   }
105 }