1 // Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : BooleanGUI.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
29 #include <SUIT_Desktop.h>
30 #include <SalomeApp_Application.h>
32 #include "BuildGUI_EdgeDlg.h" // Method EDGE
33 #include "BuildGUI_WireDlg.h" // Method WIRE
34 #include "BuildGUI_FaceDlg.h" // Method FACE
35 #include "BuildGUI_ShellDlg.h" // Method SHELL
36 #include "BuildGUI_SolidDlg.h" // Method SOLID
37 #include "BuildGUI_CompoundDlg.h" // Method COMPOUND
39 #include <GeometryGUI.h>
40 #include "GeometryGUI_Operations.h"
42 //=======================================================================
43 // function : BuildGUI()
44 // purpose : Constructor
45 //=======================================================================
46 BuildGUI::BuildGUI( GeometryGUI* parent )
51 //=======================================================================
52 // function : ~BuildGUI()
53 // purpose : Destructor
54 //=======================================================================
60 //=======================================================================
61 // function : OnGUIEvent()
63 //=======================================================================
64 bool BuildGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
66 getGeometryGUI()->EmitSignalDeactivateDialog();
70 switch ( theCommandID ) {
71 case GEOMOp::OpEdge: aDlg = new BuildGUI_EdgeDlg ( getGeometryGUI(), parent ); break;
72 case GEOMOp::OpWire: aDlg = new BuildGUI_WireDlg ( getGeometryGUI(), parent ); break;
73 case GEOMOp::OpFace: aDlg = new BuildGUI_FaceDlg ( getGeometryGUI(), parent ); break;
74 case GEOMOp::OpShell: aDlg = new BuildGUI_ShellDlg ( getGeometryGUI(), parent ); break;
75 case GEOMOp::OpSolid: aDlg = new BuildGUI_SolidDlg ( getGeometryGUI(), parent ); break;
76 case GEOMOp::OpCompound: aDlg = new BuildGUI_CompoundDlg( getGeometryGUI(), parent ); break;
78 getGeometryGUI()->getApp()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
83 aDlg->updateGeometry();
84 aDlg->resize( aDlg->minimumSizeHint() );
91 //=====================================================================================
93 //=====================================================================================
97 __declspec( dllexport )
99 GEOMGUI* GetLibGUI( GeometryGUI* parent )
101 return new BuildGUI( parent );