X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Digue.h;h=7fe2cba016881404ea4442cd245a358c07810b4c;hb=f7c005b67e48ec7bac99c566fb4f34215ec1a4b1;hp=0b893d66bfa87063b43db40cd0333dc32cdc3876;hpb=7b9454f8053b968f127bf7981eb05b6749e261f4;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Digue.h b/src/HYDROData/HYDROData_Digue.h index 0b893d66..7fe2cba0 100644 --- a/src/HYDROData/HYDROData_Digue.h +++ b/src/HYDROData/HYDROData_Digue.h @@ -1,16 +1,37 @@ +// 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 +// +// 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, 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 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef HYDROData_Digue_HeaderFile #define HYDROData_Digue_HeaderFile -#include "HYDROData_ArtificialObject.h" +#include "HYDROData_Channel.h" -DEFINE_STANDARD_HANDLE(HYDROData_Digue, HYDROData_ArtificialObject) +DEFINE_STANDARD_HANDLE(HYDROData_Digue, HYDROData_Channel) /**\class HYDROData_Digue * \brief * */ -class HYDROData_Digue : public HYDROData_ArtificialObject +class HYDROData_Digue : public HYDROData_Channel { protected: /** @@ -18,7 +39,7 @@ protected: */ enum DataTag { - DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve + DataTag_First = HYDROData_Channel::DataTag_First + 100, ///< first tag, to reserve }; public: @@ -30,19 +51,26 @@ public: HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_DIGUE;} /** - * Dump object to Python script representation. + * Returns default filling color for new digue. */ - HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const; + HYDRODATA_EXPORT static QColor DefaultFillingColor(); /** - * Returns the top shape of the object. + * Returns default border color for new digue. */ - HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const; + HYDRODATA_EXPORT static QColor DefaultBorderColor(); + +protected: + + /** + * Returns default filling color for new object. + */ + HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const; /** - * Returns the 3d shape of the object. + * Returns default border color for new object. */ - HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const; + HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const; protected: