Salome HOME
Corrections of examples path after install with scbi
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_VTKPrsBathymetryDriver.cxx
index a00cc17a4dddf56227c45737a3bd95eedc181769..5d04ce020998bfdbd9c2a6459b997cac0335375b 100644 (file)
@@ -1,12 +1,8 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
-//
-// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-//
+// Copyright (C) 2014-2015  EDF-R&D
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -26,8 +22,9 @@
 
 #include <HYDROData_Bathymetry.h>
 
-HYDROGUI_VTKPrsBathymetryDriver::HYDROGUI_VTKPrsBathymetryDriver()
+HYDROGUI_VTKPrsBathymetryDriver::HYDROGUI_VTKPrsBathymetryDriver( vtkScalarBarActor* theScalarBar )
 {
+  myScalarBar = theScalarBar;
 }
 
 HYDROGUI_VTKPrsBathymetryDriver::~HYDROGUI_VTKPrsBathymetryDriver()
@@ -50,10 +47,8 @@ bool HYDROGUI_VTKPrsBathymetryDriver::Update( const Handle(HYDROData_Entity)& th
     thePrs = new HYDROGUI_VTKPrsBathymetry( aBathymetry );
 
   HYDROGUI_VTKPrsBathymetry* aPrsBathymetry = (HYDROGUI_VTKPrsBathymetry*)thePrs;
-
-  //aPrsBathymetry->setName( aBathymetry->GetName() );
-  //aPrsBathymetry->setPath( aBathymetry->GetPainterPath() );
-
+  // Update global colors table during compute if necessary
+  aPrsBathymetry->setLookupTable( myScalarBar->GetLookupTable() );
   aPrsBathymetry->compute();
 
   return true;