Salome HOME
updated copyright message
[modules/geom.git] / src / PrimitiveGUI / PrimitiveGUI.cxx
1 // Copyright (C) 2007-2023  CEA, EDF, 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, or (at your option) any later version.
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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : PrimitiveGUI.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26 //
27 #include "PrimitiveGUI.h"
28
29 #include <GeometryGUI.h>
30 #include "GeometryGUI_Operations.h"
31
32 #include <SUIT_Desktop.h>
33 #include <SalomeApp_Application.h>
34
35 #include "PrimitiveGUI_BoxDlg.h"      // Method BOX
36 #include "PrimitiveGUI_CylinderDlg.h" // Method CYLINDER
37 #include "PrimitiveGUI_SphereDlg.h"   // Method SPHERE
38 #include "PrimitiveGUI_TorusDlg.h"    // Method TORUS
39 #include "PrimitiveGUI_ConeDlg.h"     // Method CONE
40 #include "PrimitiveGUI_FaceDlg.h"     // Method FACE
41 #include "PrimitiveGUI_DiskDlg.h"     // Method DISK
42
43 //=======================================================================
44 // function : PrimitiveGUI()
45 // purpose  : Constructor
46 //=======================================================================
47 PrimitiveGUI::PrimitiveGUI( GeometryGUI* parent ) : GEOMGUI( parent )
48 {
49 }
50
51 //=======================================================================
52 // function : ~PrimitiveGUI
53 // purpose  : Destructor
54 //=======================================================================
55 PrimitiveGUI::~PrimitiveGUI()
56 {
57 }
58
59 //=======================================================================
60 // function : OnGUIEvent()
61 // purpose  : 
62 //=======================================================================
63 bool PrimitiveGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
64 {
65   SalomeApp_Application* app = getGeometryGUI()->getApp();
66   if ( !app ) return false;
67
68   getGeometryGUI()->EmitSignalDeactivateDialog();
69
70   QDialog* aDlg = NULL;
71
72   switch ( theCommandID ) {
73   case GEOMOp::OpBox:       // BOX
74     aDlg = new PrimitiveGUI_BoxDlg( getGeometryGUI(), parent );
75     break;
76   case GEOMOp::OpCylinder:  // CYLINDER
77     aDlg = new PrimitiveGUI_CylinderDlg( getGeometryGUI(), parent );
78     break;
79   case GEOMOp::OpSphere:    // SPHERE
80     aDlg = new PrimitiveGUI_SphereDlg( getGeometryGUI(), parent );
81     break;
82   case GEOMOp::OpTorus:     // TORUS
83     aDlg = new PrimitiveGUI_TorusDlg( getGeometryGUI(), parent );
84     break;
85   case GEOMOp::OpCone:      // CONE
86     aDlg = new PrimitiveGUI_ConeDlg( getGeometryGUI(), parent);
87     break;
88   case GEOMOp::OpRectangle: // FACE
89     aDlg = new PrimitiveGUI_FaceDlg( getGeometryGUI(), parent);
90     break;
91   case GEOMOp::OpDisk:      // DISK
92     aDlg = new PrimitiveGUI_DiskDlg( getGeometryGUI(), parent);
93     break;
94   default:
95     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
96     break;
97   }
98
99   if ( aDlg != NULL )
100     aDlg->show();
101
102   return true;
103 }
104
105 //=====================================================================================
106 // EXPORTED METHODS
107 //=====================================================================================
108 extern "C"
109 {
110 #ifdef WIN32
111   __declspec( dllexport )
112 #endif
113   GEOMGUI* GetLibGUI( GeometryGUI* parent )
114   {
115     return new PrimitiveGUI( parent );
116   }
117 }