Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GenerationGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GenerationGUI.h"
30
31 #include "SUIT_Session.h"
32 #include "SUIT_Desktop.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
39 using namespace std;
40
41 GenerationGUI* GenerationGUI::myGUIObject = 0;
42
43 //=======================================================================
44 // function : GetGenerationGUI()
45 // purpose  : Get the only GenerationGUI object [ static ]
46 //=======================================================================
47 GenerationGUI* GenerationGUI::GetGenerationGUI(GeometryGUI* parent)
48 {
49   if ( myGUIObject == 0 )
50     myGUIObject = new GenerationGUI(parent);
51
52   return myGUIObject;
53 }
54
55 //=======================================================================
56 // function : GenerationGUI()
57 // purpose  : Constructor
58 //=======================================================================
59 GenerationGUI::GenerationGUI(GeometryGUI* parent) : GEOMGUI(parent)
60 {
61 }
62
63
64 //=======================================================================
65 // function : ~GenerationGUI()
66 // purpose  : Destructor
67 //=======================================================================
68 GenerationGUI::~GenerationGUI()
69 {
70 }
71
72
73 //=======================================================================
74 // function : OnGUIEvent()
75 // purpose  : 
76 //=======================================================================
77 bool GenerationGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
78 {
79   getGeometryGUI()->EmitSignalDeactivateDialog();
80   
81   QDialog* aDlg = NULL;
82
83   switch ( theCommandID )
84     {
85     case 4031: aDlg = new GenerationGUI_PrismDlg   ( getGeometryGUI(), parent, ""); break;
86     case 4032: aDlg = new GenerationGUI_RevolDlg   ( getGeometryGUI(), parent, ""); break;
87     case 4033: aDlg = new GenerationGUI_FillingDlg ( getGeometryGUI(), parent, ""); break;
88     case 4034: aDlg = new GenerationGUI_PipeDlg    ( getGeometryGUI(), parent, ""); break;
89     
90     default: SUIT_Session::session()->activeApplication()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); break;
91   }
92
93   if ( aDlg != NULL )
94     aDlg->show();
95   
96   return true;
97 }
98
99
100 //=====================================================================================
101 // EXPORTED METHODS
102 //=====================================================================================
103 extern "C"
104 {
105 #ifdef WNT
106         __declspec( dllexport )
107 #endif
108   GEOMGUI* GetLibGUI(GeometryGUI* parent)
109   {
110     return GenerationGUI::GetGenerationGUI(parent);
111   }
112 }