X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_IPolyline.h;h=88f5478078fdef20373c74a49f6f8f6e3ef49a84;hb=545854182f0363f61284d5abe34c3627d4f3b088;hp=0d3d7442ce8f2e074fa37880ee370cb9f346cc44;hpb=d84fadb6fba0d9ef3926995eab878175cc24e291;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_IPolyline.h b/src/HYDROData/HYDROData_IPolyline.h index 0d3d7442..88f54780 100644 --- a/src/HYDROData/HYDROData_IPolyline.h +++ b/src/HYDROData/HYDROData_IPolyline.h @@ -1,3 +1,20 @@ +// 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, 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_IPolyline_HeaderFile #define HYDROData_IPolyline_HeaderFile @@ -37,17 +54,30 @@ protected: DataTag_Points, DataTag_Sections, DataTag_PolylineShape, + DataTag_WireColor, }; public: DEFINE_STANDARD_RTTI(HYDROData_IPolyline); +public: + /** - * Returns the 3D presentation of all points. + * Sets wire color for object. */ - HYDRODATA_EXPORT virtual TopoDS_Shape GetShape() = 0; + HYDRODATA_EXPORT virtual void SetWireColor( const QColor& theColor ); + /** + * Returns wire color of object. + */ + HYDRODATA_EXPORT virtual QColor GetWireColor() const; + + /** + * Returns default wire color for new object. + */ + HYDRODATA_EXPORT static QColor DefaultWireColor(); +public: /** * Returns number of sections. */ @@ -83,7 +113,7 @@ public: */ HYDRODATA_EXPORT virtual SectionType GetSectionType( const int theSectionIndex ) const = 0; - /** + /** * Set type for section with given index. * \param theSectionIndex index of section * \param theSectionType new section type @@ -158,16 +188,13 @@ public: * only for section with this index * \return list of points */ - HYDRODATA_EXPORT virtual PointsList GetPoints( const int theSectionIndex = -1 ) const = 0; - -protected: + HYDRODATA_EXPORT virtual PointsList GetPoints( const int theSectionIndex = -1, bool IsConvertToGlobal = false ) const = 0; - TopoDS_Shape getPolylineShape() const; - - void setPolylineShape( const TopoDS_Shape& theShape ); - - void removePolylineShape(); + HYDRODATA_EXPORT TopoDS_Shape GetShape() const; + HYDRODATA_EXPORT void SetShape( const TopoDS_Shape& theShape ); +protected: + void RemovePolylineShape(); void getSectionsLists( Handle(TDataStd_ExtStringList)& theNamesList, Handle(TDataStd_IntegerList)& theTypesList,