Salome HOME
updated copyright message
[modules/geom.git] / src / BlocksGUI / BlocksGUI.cxx
1 // Copyright (C) 2007-2023  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, or (at your option) any later version.
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
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BooleanGUI.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
26 //
27 #include "BlocksGUI.h"
28
29 #include "BlocksGUI_QuadFaceDlg.h"
30 #include "BlocksGUI_BlockDlg.h"
31 #include "BlocksGUI_TrsfDlg.h"
32 #include "BlocksGUI_ExplodeDlg.h"
33 #include "BlocksGUI_PropagateDlg.h"
34
35 #include <GeometryGUI.h>
36 #include "GeometryGUI_Operations.h"
37
38 #include <SUIT_Desktop.h>
39 #include <SUIT_MessageBox.h>
40 #include <SUIT_Session.h>
41 #include <SalomeApp_Application.h>
42
43 //=======================================================================
44 // function : BlocksGUI()
45 // purpose  : Constructor
46 //=======================================================================
47 BlocksGUI::BlocksGUI( GeometryGUI* parent )
48   : GEOMGUI( parent )
49 {
50 }
51
52 //=======================================================================
53 // function : ~BlocksGUI()
54 // purpose  : Destructor
55 //=======================================================================
56 BlocksGUI::~BlocksGUI()
57 {
58 }
59
60 //=======================================================================
61 // function : OnGUIEvent()
62 // purpose  :
63 //=======================================================================
64 bool BlocksGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
65 {
66   getGeometryGUI()->EmitSignalDeactivateDialog();
67
68   QDialog* aDlg = 0;
69
70   switch ( theCommandID ) {
71   case GEOMOp::OpHexaSolid:      aDlg = new BlocksGUI_BlockDlg    ( getGeometryGUI(), parent ); break;
72   case GEOMOp::OpMultiTransform: aDlg = new BlocksGUI_TrsfDlg     ( getGeometryGUI(), parent ); break;
73   case GEOMOp::OpQuadFace:       aDlg = new BlocksGUI_QuadFaceDlg ( getGeometryGUI(), parent ); break;
74   case GEOMOp::OpExplodeBlock:   aDlg = new BlocksGUI_ExplodeDlg  ( getGeometryGUI(), parent ); break;
75   case GEOMOp::OpPropagate:      aDlg = new BlocksGUI_PropagateDlg( getGeometryGUI(), parent ); break;
76   default:
77     getGeometryGUI()->getApp()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
78     break;
79   }
80
81   if ( aDlg ) {
82     aDlg->updateGeometry();
83     aDlg->resize( aDlg->minimumSizeHint() );
84     aDlg->show();
85   }
86
87   return true;
88 }
89
90 //=====================================================================================
91 // EXPORTED METHODS
92 //=====================================================================================
93 extern "C"
94 {
95 #ifdef WIN32
96   __declspec( dllexport )
97 #endif
98   GEOMGUI* GetLibGUI( GeometryGUI* parent )
99   {
100     return new BlocksGUI( parent );
101   }
102 }