1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROGUI_SetTransparencyOp.h"
21 #include "HYDROGUI_TransparencyDlg.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_Tool2.h"
24 #include "HYDROGUI_UpdateFlags.h"
26 #include <LightApp_Application.h>
27 #include <LightApp_UpdateFlags.h>
29 #include <SUIT_Desktop.h>
33 @param theModule the module
35 HYDROGUI_SetTransparencyOp::HYDROGUI_SetTransparencyOp( HYDROGUI_Module* theModule )
36 : HYDROGUI_Operation( theModule ),
39 setName( tr( "SET_TRANSPARENCY" ) );
45 HYDROGUI_SetTransparencyOp::~HYDROGUI_SetTransparencyOp()
49 void HYDROGUI_SetTransparencyOp::startOperation()
51 HYDROGUI_Operation::startOperation();
53 myEditedObject = Handle(HYDROData_LandCoverMap)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
54 if ( !myEditedObject.IsNull() )
56 myDlg = new HYDROGUI_TransparencyDlg( module()->getApp()->desktop() );
57 myDlg->setModal( true );
58 myDlg->setWindowTitle( getName() );
59 myDlg->setTransparency( myEditedObject->GetTransparency() );
61 connect( myDlg, SIGNAL( applyAndClose() ), this, SLOT( onApplyAndClose() ) );
62 connect( myDlg, SIGNAL( apply() ), this, SLOT( onApply() ) );
63 connect( myDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
69 bool HYDROGUI_SetTransparencyOp::processApply( int& theUpdateFlags,
71 QStringList& theBrowseObjectsEntries )
73 if ( !myDlg || myEditedObject.IsNull() )
76 myEditedObject->SetTransparency( myDlg->getTransparency() );
78 module()->setIsToUpdate( myEditedObject );
79 theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
84 void HYDROGUI_SetTransparencyOp::processCancel()
93 void HYDROGUI_SetTransparencyOp::onApplyAndClose()
95 HYDROGUI_Operation::onApplyAndClose();