1 // GEOM GEOMGUI : GUI for Geometry component
3 // Copyright (C) 2003 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.
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
24 // File : PrimitiveGUI.cxx
25 // Author : Damien COQUERET
30 #include "PrimitiveGUI.h"
31 #include "GeometryGUI.h"
33 #include "SUIT_Session.h"
34 #include "SUIT_Desktop.h"
36 #include "SalomeApp_Application.h"
38 #include "PrimitiveGUI_BoxDlg.h" // Method BOX
39 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
40 #include "PrimitiveGUI_SphereDlg.h" // Method SPHERE
41 #include "PrimitiveGUI_TorusDlg.h" // Method TORUS
42 #include "PrimitiveGUI_ConeDlg.h" // Method CONE
46 //=======================================================================
47 // function : PrimitiveGUI()
48 // purpose : Constructor
49 //=======================================================================
50 PrimitiveGUI::PrimitiveGUI(GeometryGUI* parent) : GEOMGUI(parent)
54 //=======================================================================
55 // function : ~PrimitiveGUI
56 // purpose : Destructor
57 //=======================================================================
58 PrimitiveGUI::~PrimitiveGUI()
63 //=======================================================================
64 // function : OnGUIEvent()
66 //=======================================================================
67 bool PrimitiveGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
69 SalomeApp_Application* app = getGeometryGUI()->getApp();
70 if (!app) return false;
72 getGeometryGUI()->EmitSignalDeactivateDialog();
79 aDlg = new PrimitiveGUI_BoxDlg(getGeometryGUI(), parent, "");
81 case 4022: // CYLINDER
82 aDlg = new PrimitiveGUI_CylinderDlg(getGeometryGUI(), parent, "");
85 aDlg = new PrimitiveGUI_SphereDlg(getGeometryGUI(), parent, "");
88 aDlg = new PrimitiveGUI_TorusDlg(getGeometryGUI(), parent, "");
91 aDlg = new PrimitiveGUI_ConeDlg(getGeometryGUI(), parent, "");
94 app->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
105 //=====================================================================================
107 //=====================================================================================
111 __declspec( dllexport )
113 GEOMGUI* GetLibGUI( GeometryGUI* parent )
115 return new PrimitiveGUI( parent );