Salome HOME
debug of DTM object
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_VTKPrsDisplayer.h
index 6e53647aa20fb0c15dcf311e4edcdf95c8defd23..403bae9c2211411d7681a454c6edab7157d489ef 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
@@ -24,6 +20,9 @@
 #define HYDROGUI_VTKPRSDISPLAYER_H
 
 #include "HYDROGUI_AbstractDisplayer.h"
+#include <vtkSmartPointer.h>
+#include <vtkScalarBarActor.h>
+#include <QMap>
 
 class HYDROGUI_VTKPrsDriver;
 
@@ -45,7 +44,6 @@ public:
    */
   virtual ~HYDROGUI_VTKPrsDisplayer();
 
-public:
   /**
    * \brief Force the specified objects to be updated.
    * \param theObjs sequence of objects to update
@@ -59,7 +57,28 @@ public:
    */
   virtual QString  GetType() const;
 
+  /**
+   * \brief Set the range of Z values for the color legend bar.
+   */
+  void             SetZRange( const int theViewerId, double theRange[] );
+
+  /**
+   * \brief Get the range of Z values for the color legend bar.
+   */
+  double*          GetZRange( const int theViewerId ) const;
+
+  /**
+   * \brief Delete scalar bar for the given viewer id.
+   * \param theViewerId viewer identifier
+   */
+  void             EraseScalarBar( const int theViewerId, const bool theIsDelete = false );
+
 protected:
+
+  virtual void     DisplayAll( const int theViewerId,
+                               const bool theIsForced,
+                               const bool theDoFitAll );
+
   /**
    * \brief Erase all viewer objects.
    * \param theViewerId viewer identifier
@@ -94,13 +113,23 @@ protected:
   void             purgeObjects( const int theViewerId );
 
 private:
+
+  /**
+   * \brief Create a new scalar bar for the given view id.
+   * \param theViewId view identifier
+   */
+  void             createScalarBar( const int theViewId );
+
   /**
    * \brief Get the presentation driver for the specified data object.
    * \param theObj data object
    */
-  HYDROGUI_VTKPrsDriver* getDriver( const Handle(HYDROData_Entity)& theObj );
+  HYDROGUI_VTKPrsDriver* getDriver( const int theViewId, const Handle(HYDROData_Entity)& theObj );
+
+  HYDROGUI_VTKPrsDriver*       myDriver;
+  HYDROGUI_VTKPrsDriver*       myShapeDriver;
 
-  HYDROGUI_VTKPrsDriver* myDriver;
+  QMap<int, vtkSmartPointer<vtkScalarBarActor> > myScalarBars; //!< Colors legend presentations
 };
 
 #endif