Salome HOME
lot 12 GUI p.1
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_SetTransparencyOp.cxx
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.
6 //
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.
11 //
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
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_SetTransparencyOp.h"
20
21 #include "HYDROGUI_TransparencyDlg.h"
22 #include "HYDROGUI_Module.h"
23 #include "HYDROGUI_Tool2.h"
24 #include "HYDROGUI_UpdateFlags.h"
25
26 #include <LightApp_Application.h>
27 #include <LightApp_UpdateFlags.h>
28
29 #include <SUIT_Desktop.h>
30
31 /**
32   Constructor.
33   @param theModule the module
34 */
35 HYDROGUI_SetTransparencyOp::HYDROGUI_SetTransparencyOp( HYDROGUI_Module* theModule )
36 : HYDROGUI_Operation( theModule ),
37   myDlg( NULL )
38 {
39   setName( tr( "SET_TRANSPARENCY" ) );
40 }
41
42 /**
43   Destructor.
44 */
45 HYDROGUI_SetTransparencyOp::~HYDROGUI_SetTransparencyOp()
46 {
47 }
48
49 void HYDROGUI_SetTransparencyOp::startOperation()
50 {
51   HYDROGUI_Operation::startOperation();
52
53   myEditedObject = Handle(HYDROData_LandCoverMap)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
54   if ( !myEditedObject.IsNull() )
55   {
56     myDlg = new HYDROGUI_TransparencyDlg( module()->getApp()->desktop() );
57     myDlg->setModal( true );
58     myDlg->setWindowTitle( getName() );
59     myDlg->setTransparency( myEditedObject->GetTransparency() );
60
61     connect( myDlg, SIGNAL( applyAndClose() ), this, SLOT( onApplyAndClose() ) );
62     connect( myDlg, SIGNAL( apply() ), this, SLOT( onApply() ) );
63     connect( myDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
64
65     myDlg->exec();
66   }  
67 }
68
69 bool HYDROGUI_SetTransparencyOp::processApply( int& theUpdateFlags,
70                                                QString& theErrorMsg,
71                                                QStringList& theBrowseObjectsEntries )
72 {
73   if ( !myDlg || myEditedObject.IsNull() )
74     return false;
75   
76   myEditedObject->SetTransparency( myDlg->getTransparency() );
77
78   module()->setIsToUpdate( myEditedObject );
79   theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced | UF_VTKViewer;
80   
81   return true;
82 }
83
84 void HYDROGUI_SetTransparencyOp::processCancel()
85 {
86   // Delete the dialog
87   if ( myDlg ) {
88     delete myDlg;
89     myDlg = 0;
90   }
91 }
92
93 void HYDROGUI_SetTransparencyOp::onApplyAndClose()
94 {
95   HYDROGUI_Operation::onApplyAndClose();
96   if ( myDlg )
97     myDlg->reject();
98 }