Salome HOME
3f94071ec7e35f329957c880a7246079b54b9295
[modules/geom.git] / src / GenerationGUI / GenerationGUI.cxx
1 // Copyright (C) 2007-2012  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   : GenerationGUI.cxx
24 // Author : Damien COQUERET, Open CASCADE S.A.S.
25
26 #include "GenerationGUI.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 "GenerationGUI_PrismDlg.h"     // Method PRISM
35 #include "GenerationGUI_RevolDlg.h"     // Method REVOL
36 #include "GenerationGUI_FillingDlg.h"   // Method FILLING
37 #include "GenerationGUI_PipeDlg.h"      // Method PIPE
38 #include "GenerationGUI_PipePathDlg.h"  // Method RESTORE PATH
39
40 //=======================================================================
41 // function : GenerationGUI()
42 // purpose  : Constructor
43 //=======================================================================
44 GenerationGUI::GenerationGUI( GeometryGUI* parent )
45   : GEOMGUI( parent )
46 {
47 }
48
49 //=======================================================================
50 // function : ~GenerationGUI()
51 // purpose  : Destructor
52 //=======================================================================
53 GenerationGUI::~GenerationGUI()
54 {
55 }
56
57
58 //=======================================================================
59 // function : OnGUIEvent()
60 // purpose  : 
61 //=======================================================================
62 bool GenerationGUI::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::OpPrism:      aDlg = new GenerationGUI_PrismDlg   ( getGeometryGUI(), parent ); break;
73   case GEOMOp::OpRevolution: aDlg = new GenerationGUI_RevolDlg   ( getGeometryGUI(), parent ); break;
74   case GEOMOp::OpFilling:    aDlg = new GenerationGUI_FillingDlg ( getGeometryGUI(), parent ); break;
75   case GEOMOp::OpPipe:       aDlg = new GenerationGUI_PipeDlg    ( getGeometryGUI(), parent ); break;
76   case GEOMOp::OpPipePath:   aDlg = new GenerationGUI_PipePathDlg( getGeometryGUI(), parent ); break;
77     
78   default: app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); break;
79   }
80
81   if (aDlg != NULL )
82     aDlg->show();
83
84   return true;
85 }
86
87
88 //=====================================================================================
89 // EXPORTED METHODS
90 //=====================================================================================
91 extern "C"
92 {
93 #ifdef WIN32
94   __declspec( dllexport )
95 #endif
96   GEOMGUI* GetLibGUI( GeometryGUI* parent )
97   {
98     return new GenerationGUI( parent );
99   }
100 }