Salome HOME
Improve actions management
[modules/geom.git] / src / OperationGUI / OperationGUI.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   : OperationGUI.cxx
24 // Author : Damien COQUERET, Open CASCADE S.A.S.
25 //
26 #include "OperationGUI.h"
27
28 #include <GeometryGUI.h>
29 #include "GeometryGUI_Operations.h"
30
31 #include <SUIT_Session.h>
32 #include <SUIT_Desktop.h>
33 #include <SalomeApp_Application.h>
34
35 #include <TopTools_MapOfShape.hxx>
36 #include <TopExp_Explorer.hxx>
37 #include <Precision.hxx>
38
39 #include "OperationGUI_PartitionDlg.h"   // Method PARTITION
40 #include "OperationGUI_ArchimedeDlg.h"   // Method ARCHIMEDE
41 #include "OperationGUI_FilletDlg.h"      // Method FILLET
42 #include "OperationGUI_Fillet1d2dDlg.h"  // Method FILLET 2D and FILLET 1D
43 #include "OperationGUI_ChamferDlg.h"     // Method CHAMFER
44 #include "OperationGUI_ClippingDlg.h"    // Clipping dialog box
45 #include "OperationGUI_GetShapesOnShapeDlg.h"
46
47 //=======================================================================
48 // function : OperationGUI()
49 // purpose  : Constructor
50 //=======================================================================
51 OperationGUI::OperationGUI( GeometryGUI* parent ) :
52   GEOMGUI( parent )
53 {
54 }
55
56 //=======================================================================
57 // function : ~OperationGUI()
58 // purpose  : Destructor
59 //=======================================================================
60 OperationGUI::~OperationGUI()
61 {
62 }
63
64
65 //=======================================================================
66 // function : OnGUIEvent()
67 // purpose  : 
68 //=======================================================================
69 bool OperationGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
70 {
71   SalomeApp_Application* app = getGeometryGUI()->getApp();
72   if ( !app ) return false;
73
74   getGeometryGUI()->EmitSignalDeactivateDialog();
75
76   switch ( theCommandID ) {
77   case GEOMOp::OpPartition:     ( new OperationGUI_PartitionDlg       ( getGeometryGUI(), parent ) )->show(); break;
78   case GEOMOp::OpArchimede:     ( new OperationGUI_ArchimedeDlg       ( getGeometryGUI(), parent ) )->show(); break;
79   case GEOMOp::OpFillet3d:      ( new OperationGUI_FilletDlg          ( getGeometryGUI(), parent ) )->show(); break;
80   case GEOMOp::OpChamfer:       ( new OperationGUI_ChamferDlg         ( getGeometryGUI(), parent ) )->show(); break;
81   case GEOMOp::OpClipping:      ( new OperationGUI_ClippingDlg        ( getGeometryGUI(), parent ) )->show(); break;
82   case GEOMOp::OpShapesOnShape: ( new OperationGUI_GetShapesOnShapeDlg( getGeometryGUI(), parent ) )->show(); break;
83   case GEOMOp::OpFillet1d:      ( new OperationGUI_Fillet1d2dDlg      ( getGeometryGUI(), parent, true ) )->show(); break;
84   case GEOMOp::OpFillet2d:      ( new OperationGUI_Fillet1d2dDlg      ( getGeometryGUI(), parent, false ) )->show(); break;
85   default:
86     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
87   }
88
89   return true;
90 }
91
92 //=====================================================================================
93 // EXPORTED METHODS
94 //=====================================================================================
95 extern "C"
96 {
97 #ifdef WNT
98   __declspec( dllexport )
99 #endif
100   GEOMGUI* GetLibGUI( GeometryGUI* parent )
101   {
102     return new OperationGUI( parent );
103   }
104 }