Salome HOME
0016756: EDF 545 GEOM : Extrusion, give the coordinates of the vector as input
[modules/geom.git] / src / GenerationGUI / GenerationGUI.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   : GenerationGUI.cxx
23 // Author : Damien COQUERET, Open CASCADE S.A.S.
24 //
25
26 #include "GenerationGUI.h"
27
28 #include <GeometryGUI.h>
29
30 #include <SUIT_Desktop.h>
31 #include <SalomeApp_Application.h>
32
33 #include "GenerationGUI_PrismDlg.h"     // Method PRISM
34 #include "GenerationGUI_RevolDlg.h"     // Method REVOL
35 #include "GenerationGUI_FillingDlg.h"   // Method FILLING
36 #include "GenerationGUI_PipeDlg.h"      // Method PIPE
37
38 //=======================================================================
39 // function : GenerationGUI()
40 // purpose  : Constructor
41 //=======================================================================
42 GenerationGUI::GenerationGUI( GeometryGUI* parent )
43   : GEOMGUI( parent )
44 {
45 }
46
47 //=======================================================================
48 // function : ~GenerationGUI()
49 // purpose  : Destructor
50 //=======================================================================
51 GenerationGUI::~GenerationGUI()
52 {
53 }
54
55
56 //=======================================================================
57 // function : OnGUIEvent()
58 // purpose  : 
59 //=======================================================================
60 bool GenerationGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
61 {
62   SalomeApp_Application* app = getGeometryGUI()->getApp();
63   if ( !app ) return false;
64
65   getGeometryGUI()->EmitSignalDeactivateDialog();
66
67   QDialog* aDlg = NULL;
68
69   switch ( theCommandID ) {
70   case 4031: aDlg = new GenerationGUI_PrismDlg   ( getGeometryGUI(), parent ); break;
71   case 4032: aDlg = new GenerationGUI_RevolDlg   ( getGeometryGUI(), parent ); break;
72   case 4033: aDlg = new GenerationGUI_FillingDlg ( getGeometryGUI(), parent ); break;
73   case 4034: aDlg = new GenerationGUI_PipeDlg    ( getGeometryGUI(), parent ); break;
74     
75   default: app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); break;
76   }
77
78   if (aDlg != NULL )
79     aDlg->show();
80
81   return true;
82 }
83
84
85 //=====================================================================================
86 // EXPORTED METHODS
87 //=====================================================================================
88 extern "C"
89 {
90 #ifdef WIN32
91   __declspec( dllexport )
92 #endif
93   GEOMGUI* GetLibGUI( GeometryGUI* parent )
94   {
95     return new GenerationGUI( parent );
96   }
97 }