Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / OBJECT / VISU_ScalarMapAct.cxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : VISU_MeshAct.hxx
25 //  Author : Laurent CORNABE with the help of Nicolas REJNERI
26 //  Module : VISU
27 //  $Header$
28
29 #include "VISU_ScalarMapAct.h"
30 #include "VISU_LookupTable.hxx"
31 #include "VISU_ScalarBarActor.hxx"
32
33 #include <vtkObjectFactory.h>
34 #include <vtkRenderer.h>
35 #include <vtkProperty.h>
36
37 vtkStandardNewMacro(VISU_ScalarMapAct);
38
39 VISU_ScalarMapAct
40 ::VISU_ScalarMapAct()
41 {
42   myScalarBar = VISU_ScalarBarActor::New();
43
44   vtkProperty* aProperty = GetProperty();
45   //aProperty->SetAmbient(0.5); 
46   //aProperty->SetDiffuse(0.2);
47   //aProperty->SetSpecular(0.2);
48   aProperty->SetAmbient(1.0); 
49   aProperty->SetDiffuse(0.0);
50   aProperty->SetSpecular(0.0);
51   
52   myProperty->DeepCopy(aProperty);
53 }
54
55 VISU_ScalarMapAct
56 ::~VISU_ScalarMapAct()
57 {
58   myScalarBar->Delete();
59 }
60
61 void
62 VISU_ScalarMapAct
63 ::AddToRender(vtkRenderer* theRenderer)
64 {
65   Superclass::AddToRender(theRenderer);
66
67   if(myScalarBar)
68     theRenderer->AddActor2D(myScalarBar);
69 }
70
71 void
72 VISU_ScalarMapAct
73 ::RemoveFromRender(vtkRenderer* theRenderer)
74 {
75   if(myScalarBar)
76     theRenderer->RemoveActor(myScalarBar);
77
78   Superclass::RemoveFromRender(theRenderer);
79 }
80
81 void
82 VISU_ScalarMapAct
83 ::SetVisibility(int theMode)
84 {
85   Superclass::SetVisibility(theMode);
86
87   if(myScalarBar) 
88     myScalarBar->SetVisibility(myBarVisibility && theMode);
89 }
90
91 int 
92 VISU_ScalarMapAct
93 ::GetVisibility()
94 {
95   return Superclass::GetVisibility();
96 }
97
98 void
99 VISU_ScalarMapAct
100 ::SetBarVisibility(bool theMode)
101 {
102   myBarVisibility = theMode;
103   if(myScalarBar) myScalarBar->SetVisibility(myBarVisibility);
104 }
105
106 void VISU_ScalarMapAct::SetShading(bool theOn)
107 {
108   vtkProperty* aProperty = GetProperty();
109
110   if (theOn)
111     {
112       aProperty->SetAmbient(0.0); 
113       aProperty->SetDiffuse(1.0);
114     }
115   else
116     {
117       aProperty->SetAmbient(1.0); 
118       aProperty->SetDiffuse(0.0);
119     }
120   myProperty->DeepCopy(aProperty);
121 }
122
123 bool VISU_ScalarMapAct::IsShading()
124 {
125   vtkProperty* aProperty = GetProperty();
126   
127   return (aProperty->GetAmbient() == 0 && aProperty->GetDiffuse() == 1);
128 }