Salome HOME
untabify
[modules/geom.git] / src / BlocksGUI / BlocksGUI.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   : BooleanGUI.cxx
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
25 //
26 #include "BlocksGUI.h"
27
28 #include "BlocksGUI_QuadFaceDlg.h"
29 #include "BlocksGUI_BlockDlg.h"
30 #include "BlocksGUI_TrsfDlg.h"
31 #include "BlocksGUI_ExplodeDlg.h"
32 #include "BlocksGUI_PropagateDlg.h"
33
34 #include <GeometryGUI.h>
35
36 #include <SUIT_Desktop.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_Session.h>
39 #include <SalomeApp_Application.h>
40
41 //=======================================================================
42 // function : BlocksGUI()
43 // purpose  : Constructor
44 //=======================================================================
45 BlocksGUI::BlocksGUI( GeometryGUI* parent )
46   : GEOMGUI( parent )
47 {
48 }
49
50 //=======================================================================
51 // function : ~BlocksGUI()
52 // purpose  : Destructor
53 //=======================================================================
54 BlocksGUI::~BlocksGUI()
55 {
56 }
57
58 //=======================================================================
59 // function : OnGUIEvent()
60 // purpose  :
61 //=======================================================================
62 bool BlocksGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
63 {
64   getGeometryGUI()->EmitSignalDeactivateDialog();
65
66   QDialog* aDlg = 0;
67
68   switch ( theCommandID ) {
69   case 9999:  aDlg = new BlocksGUI_BlockDlg    ( getGeometryGUI(), parent ); break;
70   case 9998:  aDlg = new BlocksGUI_TrsfDlg     ( getGeometryGUI(), parent ); break;
71   case 9997:  aDlg = new BlocksGUI_QuadFaceDlg ( getGeometryGUI(), parent ); break;
72   case 9995:  aDlg = new BlocksGUI_ExplodeDlg  ( getGeometryGUI(), parent ); break;
73   case 99991: aDlg = new BlocksGUI_PropagateDlg( getGeometryGUI(), parent ); break;
74   default:
75     getGeometryGUI()->getApp()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
76     break;
77   }
78
79   if ( aDlg ) {
80     aDlg->updateGeometry();
81     aDlg->resize( aDlg->minimumSizeHint() );
82     aDlg->show();
83   }
84
85   return true;
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 BlocksGUI( parent );
99   }
100 }