]> SALOME platform Git repositories - modules/geom.git/blob - src/PrimitiveGUI/PrimitiveGUI.cxx
Salome HOME
Bug 0020413: Dump file has many GetMainShape instructions.
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI.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   : PrimitiveGUI.cxx
24 //  Author : Damien COQUERET
25 //  Module : GEOM
26 //  $Header$
27 //
28 #include "PrimitiveGUI.h"
29 #include "GeometryGUI.h"
30
31 #include "SUIT_Session.h"
32 #include "SUIT_Desktop.h"
33
34 #include "SalomeApp_Application.h"
35
36 #include "PrimitiveGUI_BoxDlg.h"      // Method BOX
37 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
38 #include "PrimitiveGUI_SphereDlg.h"   // Method SPHERE
39 #include "PrimitiveGUI_TorusDlg.h"    // Method TORUS
40 #include "PrimitiveGUI_ConeDlg.h"     // Method CONE
41
42 using namespace std;
43
44 //=======================================================================
45 // function : PrimitiveGUI()
46 // purpose  : Constructor
47 //=======================================================================
48 PrimitiveGUI::PrimitiveGUI(GeometryGUI* parent) : GEOMGUI(parent)
49 {
50 }
51
52 //=======================================================================
53 // function : ~PrimitiveGUI
54 // purpose  : Destructor
55 //=======================================================================
56 PrimitiveGUI::~PrimitiveGUI()
57 {
58 }
59
60
61 //=======================================================================
62 // function : OnGUIEvent()
63 // purpose  : 
64 //=======================================================================
65 bool PrimitiveGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
66 {
67   SalomeApp_Application* app = getGeometryGUI()->getApp();
68   if (!app) return false;
69
70   getGeometryGUI()->EmitSignalDeactivateDialog();
71
72   QDialog* aDlg = NULL;
73
74   switch (theCommandID)
75   {
76     case 4021: // BOX
77         aDlg = new PrimitiveGUI_BoxDlg(getGeometryGUI(), parent, "");
78         break;
79     case 4022: // CYLINDER
80         aDlg = new PrimitiveGUI_CylinderDlg(getGeometryGUI(), parent, "");
81         break;
82     case 4023: // SPHERE
83         aDlg = new PrimitiveGUI_SphereDlg(getGeometryGUI(), parent, "");
84         break;
85     case 4024: // TORUS
86         aDlg = new PrimitiveGUI_TorusDlg(getGeometryGUI(), parent, "");
87         break;
88     case 4025: // CONE
89         aDlg = new PrimitiveGUI_ConeDlg(getGeometryGUI(), parent, "");
90         break;
91     default:
92         app->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
93         break;
94     }
95
96   if (aDlg != NULL)
97     aDlg->show();
98
99   return true;
100 }
101
102
103 //=====================================================================================
104 // EXPORTED METHODS
105 //=====================================================================================
106 extern "C"
107 {
108 #ifdef WNT
109         __declspec( dllexport )
110 #endif
111   GEOMGUI* GetLibGUI( GeometryGUI* parent )
112   {
113     return new PrimitiveGUI( parent );
114   }
115 }