Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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 "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 using namespace std;
42 PrimitiveGUI* PrimitiveGUI::myGUIObject = 0;
43
44 //=======================================================================
45 // function : GetPrimitiveGUI()
46 // purpose  : Get the only PrimitiveGUI object [ static ]
47 //=======================================================================
48 PrimitiveGUI* PrimitiveGUI::GetPrimitiveGUI( GeometryGUI* parent )
49 {
50   if ( myGUIObject == 0 ) {
51     // init PrimitiveGUI only once
52     myGUIObject = new PrimitiveGUI( parent );
53   }
54   return myGUIObject;
55 }
56
57 //=======================================================================
58 // function : PrimitiveGUI()
59 // purpose  : Constructor
60 //=======================================================================
61 PrimitiveGUI::PrimitiveGUI(GeometryGUI* parent) : GEOMGUI(parent)
62 {
63 }
64
65
66 //=======================================================================
67 // function : ~PrimitiveGUI
68 // purpose  : Destructor
69 //=======================================================================
70 PrimitiveGUI::~PrimitiveGUI()
71 {
72 }
73
74
75 //=======================================================================
76 // function : OnGUIEvent()
77 // purpose  : 
78 //=======================================================================
79 bool PrimitiveGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
80 {
81   getGeometryGUI()->EmitSignalDeactivateDialog();
82   
83   QDialog* aDlg = NULL;
84
85   switch (theCommandID)
86     {
87     case 4021: // BOX
88       {
89         aDlg = new PrimitiveGUI_BoxDlg(getGeometryGUI(), parent, "");
90         break;
91       }
92     case 4022: // CYLINDER
93       {
94         aDlg = new PrimitiveGUI_CylinderDlg(getGeometryGUI(), parent, "");
95         break;
96       }
97     case 4023: // SPHERE
98       {
99         aDlg = new PrimitiveGUI_SphereDlg(getGeometryGUI(), parent, "");
100         break;
101       }
102     case 4024: // TORUS
103       {
104         aDlg = new PrimitiveGUI_TorusDlg(getGeometryGUI(), parent, "");
105         break;
106       }
107     case 4025: // CONE
108       {
109         aDlg = new PrimitiveGUI_ConeDlg(getGeometryGUI(), parent, "");
110         break;
111       }
112     default:
113       {
114         SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
115         break;
116       }
117     }
118
119   if ( aDlg != NULL )
120     aDlg->show();
121   
122   return true;
123 }
124
125
126 //=====================================================================================
127 // EXPORTED METHODS
128 //=====================================================================================
129 extern "C"
130 {
131 #ifdef WNT
132         __declspec( dllexport )
133 #endif
134   GEOMGUI* GetLibGUI( GeometryGUI* parent )
135   {
136     return PrimitiveGUI::GetPrimitiveGUI( parent );
137   }
138 }