Salome HOME
14ee979594f9693e77ec2b72572aa63898bfc512
[modules/geom.git] / src / BuildGUI / BuildGUI.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  GEOM GEOMGUI : GUI for Geometry component
23 //  File   : BooleanGUI.cxx
24 //  Author : Damien COQUERET
25 //  Module : GEOM
26 //  $Header$
27 //
28 #include "BuildGUI.h"
29
30 #include "SUIT_Desktop.h"
31 #include "SUIT_Session.h"
32
33 #include "SalomeApp_Application.h"
34
35 #include "BuildGUI_EdgeDlg.h"       // Method EDGE
36 #include "BuildGUI_WireDlg.h"       // Method WIRE
37 #include "BuildGUI_FaceDlg.h"       // Method FACE
38 #include "BuildGUI_ShellDlg.h"      // Method SHELL
39 #include "BuildGUI_SolidDlg.h"      // Method SOLID
40 #include "BuildGUI_CompoundDlg.h"   // Method COMPOUND
41
42 #include "GeometryGUI.h"
43
44 //=======================================================================
45 // function : BuildGUI()
46 // purpose  : Constructor
47 //=======================================================================
48 BuildGUI::BuildGUI( GeometryGUI* parent )
49 : GEOMGUI( parent )
50 {
51 }
52
53 //=======================================================================
54 // function : ~BuildGUI()
55 // purpose  : Destructor
56 //=======================================================================
57 BuildGUI::~BuildGUI()
58 {
59 }
60
61
62 //=======================================================================
63 // function : OnGUIEvent()
64 // purpose  : 
65 //=======================================================================
66 bool BuildGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
67 {
68   getGeometryGUI()->EmitSignalDeactivateDialog();
69
70   QDialog* aDlg = NULL;
71
72   switch ( theCommandID )
73   {
74     case 4081: aDlg = new BuildGUI_EdgeDlg    ( getGeometryGUI(), parent, "" ); break;
75     case 4082: aDlg = new BuildGUI_WireDlg    ( getGeometryGUI(), parent, "" ); break;
76     case 4083: aDlg = new BuildGUI_FaceDlg    ( getGeometryGUI(), parent, "" ); break;
77     case 4084: aDlg = new BuildGUI_ShellDlg   ( getGeometryGUI(), parent, "" ); break;
78     case 4085: aDlg = new BuildGUI_SolidDlg   ( getGeometryGUI(), parent, "" ); break;
79     case 4086: aDlg = new BuildGUI_CompoundDlg( getGeometryGUI(), parent, "" ); break;
80
81     default: 
82       getGeometryGUI()->getApp()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
83       break;
84   }
85
86   if ( aDlg != NULL )
87     aDlg->show();
88
89   return true;
90 }
91
92 //=====================================================================================
93 // EXPORTED METHODS
94 //=====================================================================================
95 extern "C"
96 {
97  GEOM_BUILDGUI_EXPORT
98   GEOMGUI* GetLibGUI( GeometryGUI* parent )
99   {
100     return new BuildGUI( parent );
101   }
102 }