X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_VTKPrsDisplayer.h;h=54ea195202c364380d0dfcb9c2babf0175147845;hb=cd6ea20d9a76665a24a533d0340385a335961f05;hp=2be387c1d1f0b0d679f0ebfd64ae86b18ed2dd85;hpb=9e5f9721be88b2f58dcf4ae6564b2bee69fdb65e;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h b/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h index 2be387c1..54ea1952 100644 --- a/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h +++ b/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2015 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 @@ -6,7 +6,7 @@ // 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,8 +24,9 @@ #define HYDROGUI_VTKPRSDISPLAYER_H #include "HYDROGUI_AbstractDisplayer.h" -#include +#include #include +#include class HYDROGUI_VTKPrsDriver; @@ -63,14 +64,25 @@ public: /** * \brief Set the range of Z values for the color legend bar. */ - void SetZRange( double theRange[] ); + void SetZRange( const int theViewerId, double theRange[] ); /** * \brief Get the range of Z values for the color legend bar. */ - double* GetZRange() const; + 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 @@ -105,15 +117,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* myDriver; + HYDROGUI_VTKPrsDriver* myShapeDriver; - vtkNew< vtkScalarBarActor > myScalarBar; //!< The colors legend presentation + QMap > myScalarBars; //!< Colors legend presentations }; #endif