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