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 : PrimitiveGUI.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
27 #include "PrimitiveGUI.h"
29 #include <GeometryGUI.h>
30 #include "GeometryGUI_Operations.h"
32 #include <SUIT_Desktop.h>
33 #include <SalomeApp_Application.h>
35 #include "PrimitiveGUI_BoxDlg.h" // Method BOX
36 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
37 #include "PrimitiveGUI_SphereDlg.h" // Method SPHERE
38 #include "PrimitiveGUI_TorusDlg.h" // Method TORUS
39 #include "PrimitiveGUI_ConeDlg.h" // Method CONE
40 #include "PrimitiveGUI_FaceDlg.h" // Method FACE
41 #include "PrimitiveGUI_DiskDlg.h" // Method DISK
43 //=======================================================================
44 // function : PrimitiveGUI()
45 // purpose : Constructor
46 //=======================================================================
47 PrimitiveGUI::PrimitiveGUI( GeometryGUI* parent ) : GEOMGUI( parent )
51 //=======================================================================
52 // function : ~PrimitiveGUI
53 // purpose : Destructor
54 //=======================================================================
55 PrimitiveGUI::~PrimitiveGUI()
59 //=======================================================================
60 // function : OnGUIEvent()
62 //=======================================================================
63 bool PrimitiveGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
65 SalomeApp_Application* app = getGeometryGUI()->getApp();
66 if ( !app ) return false;
68 getGeometryGUI()->EmitSignalDeactivateDialog();
72 switch ( theCommandID ) {
73 case GEOMOp::OpBox: // BOX
74 aDlg = new PrimitiveGUI_BoxDlg( getGeometryGUI(), parent );
76 case GEOMOp::OpCylinder: // CYLINDER
77 aDlg = new PrimitiveGUI_CylinderDlg( getGeometryGUI(), parent );
79 case GEOMOp::OpSphere: // SPHERE
80 aDlg = new PrimitiveGUI_SphereDlg( getGeometryGUI(), parent );
82 case GEOMOp::OpTorus: // TORUS
83 aDlg = new PrimitiveGUI_TorusDlg( getGeometryGUI(), parent );
85 case GEOMOp::OpCone: // CONE
86 aDlg = new PrimitiveGUI_ConeDlg( getGeometryGUI(), parent);
88 case GEOMOp::OpRectangle: // FACE
89 aDlg = new PrimitiveGUI_FaceDlg( getGeometryGUI(), parent);
91 case GEOMOp::OpDisk: // DISK
92 aDlg = new PrimitiveGUI_DiskDlg( getGeometryGUI(), parent);
95 app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
105 //=====================================================================================
107 //=====================================================================================
111 __declspec( dllexport )
113 GEOMGUI* GetLibGUI( GeometryGUI* parent )
115 return new PrimitiveGUI( parent );