X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_DataObject.h;h=28aa22e4df5f90e668161e4ae712dd830b1141f3;hb=d6e19029f8b41f295db878e9aecf451c2edda4af;hp=d8b78a8c04e784cb7ae7e7665c411a25ca98a7cd;hpb=7ec27726afa16572a7cab1d7936c8e899674050b;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_DataObject.h b/src/HYDROGUI/HYDROGUI_DataObject.h index d8b78a8c..28aa22e4 100644 --- a/src/HYDROGUI/HYDROGUI_DataObject.h +++ b/src/HYDROGUI/HYDROGUI_DataObject.h @@ -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 @@ -20,18 +16,28 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef HYDROGUI_DATAOBJECT_H #define HYDROGUI_DATAOBJECT_H #include -#include +#ifdef WIN32 + #pragma warning( disable: 4250 ) + #pragma warning( disable: 4251 ) +#endif +#include #include #include #include #include +#ifdef WIN32 + #pragma warning( disable: 4250 ) + #pragma warning( disable: 4251 ) +#endif + /** * \class HYDROGUI_DataObject * \brief Module data object, used for object browser tree creation. @@ -47,7 +53,7 @@ public: //! Column id enum { RefObjectId = RefEntryId + 1, //!< Ref.Object column - BathymetryId //!< Bathymetry column + AltitudeObjId //!< Altitude column }; //! Role @@ -141,6 +147,8 @@ public: */ bool isInOperation() const { return myIsInOperation; } + void updateBy( SUIT_DataObject* ); + protected: Handle(HYDROData_Entity) myData; ///< object from data model QString myParentEntry; @@ -182,6 +190,11 @@ public: */ virtual QString name() const; + /** + * Returns the font of displayed object name. + */ + virtual QFont font( const int = SUIT_DataObject::NameId ) const; + /** * Returns the object icon. */ @@ -194,6 +207,8 @@ public: */ bool isInOperation() const { return myIsInOperation; } + void updateBy( SUIT_DataObject* ); + private: QString myName; ///< name in the OB QString myParentEntry;