X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_VTKPrsDisplayer.h;h=54ea195202c364380d0dfcb9c2babf0175147845;hb=cd6ea20d9a76665a24a533d0340385a335961f05;hp=6e53647aa20fb0c15dcf311e4edcdf95c8defd23;hpb=d5288d46b0d85156f7666edf2cef050dc6655eae;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h b/src/HYDROGUI/HYDROGUI_VTKPrsDisplayer.h index 6e53647a..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,6 +24,9 @@ #define HYDROGUI_VTKPRSDISPLAYER_H #include "HYDROGUI_AbstractDisplayer.h" +#include +#include +#include class HYDROGUI_VTKPrsDriver; @@ -45,7 +48,6 @@ public: */ virtual ~HYDROGUI_VTKPrsDisplayer(); -public: /** * \brief Force the specified objects to be updated. * \param theObjs sequence of objects to update @@ -59,7 +61,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 +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* myShapeDriver; - HYDROGUI_VTKPrsDriver* myDriver; + QMap > myScalarBars; //!< Colors legend presentations }; #endif