Salome HOME
Improve actions management
[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, Open CASCADE S.A.S.
25 //
26 #include "PrimitiveGUI.h"
27
28 #include <GeometryGUI.h>
29 #include "GeometryGUI_Operations.h"
30
31 #include <SUIT_Desktop.h>
32 #include <SalomeApp_Application.h>
33
34 #include "PrimitiveGUI_BoxDlg.h"      // Method BOX
35 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
36 #include "PrimitiveGUI_SphereDlg.h"   // Method SPHERE
37 #include "PrimitiveGUI_TorusDlg.h"    // Method TORUS
38 #include "PrimitiveGUI_ConeDlg.h"     // Method CONE
39 #include "PrimitiveGUI_FaceDlg.h"     // Method FACE
40 #include "PrimitiveGUI_DiskDlg.h"     // Method DISK
41
42 //=======================================================================
43 // function : PrimitiveGUI()
44 // purpose  : Constructor
45 //=======================================================================
46 PrimitiveGUI::PrimitiveGUI( GeometryGUI* parent ) : GEOMGUI( parent )
47 {
48 }
49
50 //=======================================================================
51 // function : ~PrimitiveGUI
52 // purpose  : Destructor
53 //=======================================================================
54 PrimitiveGUI::~PrimitiveGUI()
55 {
56 }
57
58 //=======================================================================
59 // function : OnGUIEvent()
60 // purpose  : 
61 //=======================================================================
62 bool PrimitiveGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
63 {
64   SalomeApp_Application* app = getGeometryGUI()->getApp();
65   if ( !app ) return false;
66
67   getGeometryGUI()->EmitSignalDeactivateDialog();
68
69   QDialog* aDlg = NULL;
70
71   switch ( theCommandID ) {
72   case GEOMOp::OpBox:       // BOX
73     aDlg = new PrimitiveGUI_BoxDlg( getGeometryGUI(), parent );
74     break;
75   case GEOMOp::OpCylinder:  // CYLINDER
76     aDlg = new PrimitiveGUI_CylinderDlg( getGeometryGUI(), parent );
77     break;
78   case GEOMOp::OpSphere:    // SPHERE
79     aDlg = new PrimitiveGUI_SphereDlg( getGeometryGUI(), parent );
80     break;
81   case GEOMOp::OpTorus:     // TORUS
82     aDlg = new PrimitiveGUI_TorusDlg( getGeometryGUI(), parent );
83     break;
84   case GEOMOp::OpCone:      // CONE
85     aDlg = new PrimitiveGUI_ConeDlg( getGeometryGUI(), parent);
86     break;
87   case GEOMOp::OpRectangle: // FACE
88     aDlg = new PrimitiveGUI_FaceDlg( getGeometryGUI(), parent);
89     break;
90   case GEOMOp::OpDisk:      // DISK
91     aDlg = new PrimitiveGUI_DiskDlg( 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 // EXPORTED METHODS
106 //=====================================================================================
107 extern "C"
108 {
109 #ifdef WIN32
110   __declspec( dllexport )
111 #endif
112   GEOMGUI* GetLibGUI( GeometryGUI* parent )
113   {
114     return new PrimitiveGUI( parent );
115   }
116 }