Salome HOME
3f24a70177c89784eaa57f787ef5db265f70b10b
[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 BooleanGUI* BooleanGUI::myGUIObject = 0;
40
41 //=======================================================================
42 // function : GetBooleanGUI()
43 // purpose  : Get the only BooleanGUI object [ static ]
44 //=======================================================================
45 BooleanGUI* BooleanGUI::GetBooleanGUI( GeometryGUI* parent )
46 {
47   if ( myGUIObject == 0 ) {
48     // init BooleanGUI only once
49     myGUIObject = new BooleanGUI( parent );
50   }
51   return myGUIObject;
52 }
53
54 //=======================================================================
55 // function : BooleanGUI()
56 // purpose  : Constructor
57 //=======================================================================
58 BooleanGUI::BooleanGUI( GeometryGUI* parent ) : GEOMGUI( parent )
59 {
60 }
61
62
63 //=======================================================================
64 // function : ~BooleanGUI()
65 // purpose  : Destructor
66 //=======================================================================
67 BooleanGUI::~BooleanGUI()
68 {
69 }
70
71
72 //=======================================================================
73 // function : OnGUIEvent()
74 // purpose  : 
75 //=======================================================================
76 bool BooleanGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
77 {
78   getGeometryGUI()->EmitSignalDeactivateDialog();
79
80   int anOperation = 0;  
81   if      ( theCommandID == 5011 )
82     anOperation = FUSE;
83   else if ( theCommandID == 5012 )
84     anOperation = COMMON;
85   else if ( theCommandID == 5013 )
86     anOperation = CUT;
87   else if ( theCommandID == 5014 )
88     anOperation = SECTION;
89   else
90     return false;
91
92   QDialog* aDlg = new BooleanGUI_Dialog( anOperation, getGeometryGUI(), parent, "");
93   aDlg->show();
94    
95   return true;
96 }
97
98 //=====================================================================================
99 // EXPORTED METHODS
100 //=====================================================================================
101 extern "C"
102 {
103 #ifdef WNT
104         __declspec( dllexport )
105 #endif
106   GEOMGUI* GetLibGUI( GeometryGUI* parent )
107   {
108     return BooleanGUI::GetBooleanGUI( parent );
109   }
110 }