Salome HOME
Windows porting
[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 "SUIT_Desktop.h"
33 #include "BooleanGUI_Dialog.h"
34
35 #include "GeometryGUI.h"
36
37 BooleanGUI* BooleanGUI::myGUIObject = 0;
38
39 //=======================================================================
40 // function : GetBooleanGUI()
41 // purpose  : Get the only BooleanGUI object [ static ]
42 //=======================================================================
43 BooleanGUI* BooleanGUI::GetBooleanGUI( GeometryGUI* parent )
44 {
45   if ( myGUIObject == 0 ) {
46     // init BooleanGUI only once
47     myGUIObject = new BooleanGUI( parent );
48   }
49   return myGUIObject;
50 }
51
52 //=======================================================================
53 // function : BooleanGUI()
54 // purpose  : Constructor
55 //=======================================================================
56 BooleanGUI::BooleanGUI( GeometryGUI* parent ) : GEOMGUI( parent )
57 {
58 }
59
60
61 //=======================================================================
62 // function : ~BooleanGUI()
63 // purpose  : Destructor
64 //=======================================================================
65 BooleanGUI::~BooleanGUI()
66 {
67 }
68
69
70 //=======================================================================
71 // function : OnGUIEvent()
72 // purpose  : 
73 //=======================================================================
74 bool BooleanGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
75 {
76   getGeometryGUI()->EmitSignalDeactivateDialog();
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, "");
91   aDlg->show();
92    
93   return true;
94 }
95
96 //=====================================================================================
97 // EXPORTED METHODS
98 //=====================================================================================
99 extern "C"
100 {
101   GEOMGUI* GetLibGUI( GeometryGUI* parent )
102   {
103     return BooleanGUI::GetBooleanGUI( parent );
104   }
105 }