]> SALOME platform Git repositories - modules/geom.git/blob - src/GenerationGUI/GenerationGUI.cxx
Salome HOME
b6ba761b3a0023dbc589f2173dc626d415d9ad6d
[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 using namespace std;
30 #include "GenerationGUI.h"
31
32 #include "SALOMEGUI_QtCatchCorbaException.hxx"
33 #include "QAD_Desktop.h"
34
35 #include "GenerationGUI_PrismDlg.h"     // Method PRISM
36 #include "GenerationGUI_RevolDlg.h"     // Method REVOL
37 #include "GenerationGUI_FillingDlg.h"   // Method FILLING
38 #include "GenerationGUI_PipeDlg.h"      // Method PIPE
39
40 GenerationGUI* GenerationGUI::myGUIObject = 0;
41
42 //=======================================================================
43 // function : GetGenerationGUI()
44 // purpose  : Get the only GenerationGUI object [ static ]
45 //=======================================================================
46 GenerationGUI* GenerationGUI::GetGenerationGUI()
47 {
48   if ( myGUIObject == 0 )
49     myGUIObject = new GenerationGUI();
50
51   return myGUIObject;
52 }
53
54 //=======================================================================
55 // function : GenerationGUI()
56 // purpose  : Constructor
57 //=======================================================================
58 GenerationGUI::GenerationGUI() : GEOMGUI()
59 {
60 }
61
62
63 //=======================================================================
64 // function : ~GenerationGUI()
65 // purpose  : Destructor
66 //=======================================================================
67 GenerationGUI::~GenerationGUI()
68 {
69 }
70
71
72 //=======================================================================
73 // function : OnGUIEvent()
74 // purpose  : 
75 //=======================================================================
76 bool GenerationGUI::OnGUIEvent( int theCommandID, QAD_Desktop* parent )
77 {
78   GeometryGUI::GetGeomGUI()->EmitSignalDeactivateDialog();
79   
80   SALOME_Selection* Sel = SALOME_Selection::Selection(
81     QAD_Application::getDesktop()->getActiveStudy()->getSelection() );
82   
83   QDialog* aDlg = NULL;
84
85   switch ( theCommandID )
86   {
87     case 4031: aDlg = new GenerationGUI_PrismDlg   ( parent, "", Sel ); break;
88     case 4032: aDlg = new GenerationGUI_RevolDlg   ( parent, "", Sel ); break;
89     case 4033: aDlg = new GenerationGUI_FillingDlg ( parent, "", Sel ); break;
90     case 4034: aDlg = new GenerationGUI_PipeDlg    ( parent, "", Sel ); break;
91     
92     default: parent->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); break;
93   }
94
95   if ( aDlg != NULL )
96     aDlg->show();
97   
98   return true;
99 }
100
101
102 //=====================================================================================
103 // EXPORTED METHODS
104 //=====================================================================================
105 extern "C"
106 {
107   GEOMGUI* GetLibGUI()
108   {
109     return GenerationGUI::GetGenerationGUI();
110   }
111 }