Salome HOME
Feature #86: The hierarchy in the Object Browser (T 19).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_SetColorOp.cxx
1 // Copyright (C) 2007-2013  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
23 #include "HYDROGUI_SetColorOp.h"
24
25 #include "HYDROGUI_ColorDlg.h"
26 #include "HYDROGUI_DataModel.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <LightApp_Application.h>
32 #include <LightApp_UpdateFlags.h>
33
34 #include <SUIT_Desktop.h>
35
36 HYDROGUI_SetColorOp::HYDROGUI_SetColorOp( HYDROGUI_Module* theModule )
37 : HYDROGUI_Operation( theModule ),
38   myColorDlg( 0 )
39 {
40   setName( tr( "SET_COLOR" ) );
41 }
42
43 HYDROGUI_SetColorOp::~HYDROGUI_SetColorOp()
44 {
45 }
46
47 void HYDROGUI_SetColorOp::startOperation()
48 {
49   HYDROGUI_Operation::startOperation();
50
51   // Get the selected object
52   myEditedObject = Handle(HYDROData_Object)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) );
53
54   if( !myEditedObject.IsNull() ) {
55     // Get colors from the object
56     QColor aFillingColor = myEditedObject->GetFillingColor();
57     QColor aBorderColor = myEditedObject->GetBorderColor();
58
59     // Create color dialog
60     myColorDlg = new HYDROGUI_ColorDlg( module()->getApp()->desktop() );
61     myColorDlg->setModal( true );
62     myColorDlg->setWindowTitle( getName() );
63
64     // Set colors from the object
65     myColorDlg->setFillingColor( aFillingColor );
66     myColorDlg->setBorderColor( aBorderColor );
67
68     // Connect the dialog to operation slots
69     connect( myColorDlg, SIGNAL( accepted() ), this, SLOT( onApply()  ) );
70     connect( myColorDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
71
72     // Show the dialog
73     myColorDlg->exec();    
74   }
75 }
76
77 bool HYDROGUI_SetColorOp::processApply( int& theUpdateFlags,
78                                         QString& theErrorMsg )
79 {
80   bool anIsOk = false;
81
82   if ( myColorDlg && myEditedObject ) {
83     QColor aFillingColor = myColorDlg->getFillingColor();
84     QColor aBorderColor = myColorDlg->getBorderColor();
85
86     myEditedObject->SetFillingColor( aFillingColor );
87     myEditedObject->SetBorderColor( aBorderColor );
88
89     theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced;
90
91     anIsOk = true;
92   }
93   
94   return anIsOk;
95 }