1 // Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File : BooleanGUI.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
27 #include "BlocksGUI.h"
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"
35 #include <GeometryGUI.h>
36 #include "GeometryGUI_Operations.h"
38 #include <SUIT_Desktop.h>
39 #include <SUIT_MessageBox.h>
40 #include <SUIT_Session.h>
41 #include <SalomeApp_Application.h>
43 //=======================================================================
44 // function : BlocksGUI()
45 // purpose : Constructor
46 //=======================================================================
47 BlocksGUI::BlocksGUI( GeometryGUI* parent )
52 //=======================================================================
53 // function : ~BlocksGUI()
54 // purpose : Destructor
55 //=======================================================================
56 BlocksGUI::~BlocksGUI()
60 //=======================================================================
61 // function : OnGUIEvent()
63 //=======================================================================
64 bool BlocksGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
66 getGeometryGUI()->EmitSignalDeactivateDialog();
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;
77 getGeometryGUI()->getApp()->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
82 aDlg->updateGeometry();
83 aDlg->resize( aDlg->minimumSizeHint() );
90 //=====================================================================================
92 //=====================================================================================
96 __declspec( dllexport )
98 GEOMGUI* GetLibGUI( GeometryGUI* parent )
100 return new BlocksGUI( parent );