Salome HOME
GEOM: It should be forbidden creation of primitives with zero dimensions.
[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 // File   : PrimitiveGUI.cxx
23 // Author : Damien COQUERET, Open CASCADE S.A.S.
24 //
25
26 #include "PrimitiveGUI.h"
27
28 #include <GeometryGUI.h>
29
30 #include <SUIT_Desktop.h>
31 #include <SalomeApp_Application.h>
32
33 #include "PrimitiveGUI_BoxDlg.h"      // Method BOX
34 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
35 #include "PrimitiveGUI_SphereDlg.h"   // Method SPHERE
36 #include "PrimitiveGUI_TorusDlg.h"    // Method TORUS
37 #include "PrimitiveGUI_ConeDlg.h"     // Method CONE
38 #include "PrimitiveGUI_FaceDlg.h"     // Method FACE
39 #include "PrimitiveGUI_DiskDlg.h"     // Method DISK
40
41 //=======================================================================
42 // function : PrimitiveGUI()
43 // purpose  : Constructor
44 //=======================================================================
45 PrimitiveGUI::PrimitiveGUI( GeometryGUI* parent ) : GEOMGUI( parent )
46 {
47 }
48
49 //=======================================================================
50 // function : ~PrimitiveGUI
51 // purpose  : Destructor
52 //=======================================================================
53 PrimitiveGUI::~PrimitiveGUI()
54 {
55 }
56
57 //=======================================================================
58 // function : OnGUIEvent()
59 // purpose  : 
60 //=======================================================================
61 bool PrimitiveGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
62 {
63   SalomeApp_Application* app = getGeometryGUI()->getApp();
64   if ( !app ) return false;
65
66   getGeometryGUI()->EmitSignalDeactivateDialog();
67
68   QDialog* aDlg = NULL;
69
70   switch ( theCommandID ) {
71   case 4021: // BOX
72     aDlg = new PrimitiveGUI_BoxDlg( getGeometryGUI(), parent );
73     break;
74   case 4022: // CYLINDER
75     aDlg = new PrimitiveGUI_CylinderDlg( getGeometryGUI(), parent );
76     break;
77   case 4023: // SPHERE
78     aDlg = new PrimitiveGUI_SphereDlg( getGeometryGUI(), parent );
79     break;
80   case 4024: // TORUS
81     aDlg = new PrimitiveGUI_TorusDlg( getGeometryGUI(), parent );
82     break;
83   case 4025: // CONE
84     aDlg = new PrimitiveGUI_ConeDlg( getGeometryGUI(), parent);
85     break;
86   case 4026: // FACE
87     aDlg = new PrimitiveGUI_FaceDlg( getGeometryGUI(), parent);
88     break;
89   case 4027: // DISK
90     aDlg = new PrimitiveGUI_DiskDlg( getGeometryGUI(), parent);
91     break;
92   default:
93     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
94     break;
95   }
96
97   if ( aDlg != NULL )
98     aDlg->show();
99
100   return true;
101 }
102
103 //=====================================================================================
104 // EXPORTED METHODS
105 //=====================================================================================
106 extern "C"
107 {
108 #ifdef WIN32
109   __declspec( dllexport )
110 #endif
111   GEOMGUI* GetLibGUI( GeometryGUI* parent )
112   {
113     return new PrimitiveGUI( parent );
114   }
115 }