X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Channel.h;h=163601c0d718be20b2d5ead90c5ad0febacdce2f;hb=58bb6b7459bebeeb089c9ed486c4683a8bae7288;hp=fbb35f4a1d2d15a9baf5ee8af9c2683bbcfc5573;hpb=7b9454f8053b968f127bf7981eb05b6749e261f4;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Channel.h b/src/HYDROData/HYDROData_Channel.h index fbb35f4a..163601c0 100644 --- a/src/HYDROData/HYDROData_Channel.h +++ b/src/HYDROData/HYDROData_Channel.h @@ -1,10 +1,31 @@ +// 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_Channel_HeaderFile #define HYDROData_Channel_HeaderFile #include "HYDROData_ArtificialObject.h" -DEFINE_STANDARD_HANDLE(HYDROData_Channel, HYDROData_ArtificialObject) +#include +#include + +class HYDROData_Polyline3D; +class HYDROData_Profile; /**\class HYDROData_Channel * \brief @@ -12,6 +33,18 @@ DEFINE_STANDARD_HANDLE(HYDROData_Channel, HYDROData_ArtificialObject) */ class HYDROData_Channel : public HYDROData_ArtificialObject { +public: + + struct PrsDefinition + { + TopoDS_Shape myPrs3D; + TopoDS_Face myPrs2D; + TopoDS_Wire myLeftBank; + TopoDS_Wire myRightBank; + TopoDS_Wire myInlet; + TopoDS_Wire myOutlet; + }; + protected: /** * Enumeration of tags corresponding to the persistent object parameters. @@ -19,10 +52,25 @@ protected: enum DataTag { DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve + DataTag_GuideLine, + DataTag_Profile, + DataTag_EquiDistance, }; public: - DEFINE_STANDARD_RTTI(HYDROData_Channel); + DEFINE_STANDARD_RTTIEXT(HYDROData_Channel, HYDROData_ArtificialObject); + +public: + + /** + * Creates the presentations(2D and 3D) by given guide line and profile. + */ + HYDRODATA_EXPORT static bool CreatePresentations( const Handle(HYDROData_Polyline3D)& theGuideLine, + const Handle(HYDROData_Profile)& theProfile, + PrsDefinition& thePrs, + double theEquiDistance ); + +public: /** * Returns the kind of this object. Must be redefined in all objects of known type. @@ -32,17 +80,89 @@ public: /** * Dump object to Python script representation. */ - HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const; + HYDRODATA_EXPORT virtual QStringList DumpToPython( const QString& thePyScriptPath, + MapOfTreatedObjects& theTreatedObjects ) const; /** - * Returns the top shape of the object. + * Returns the list of all reference objects of this object. */ - HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const; + HYDRODATA_EXPORT virtual HYDROData_SequenceOfObjects GetAllReferenceObjects() const; /** - * Returns the 3d shape of the object. + * Returns the left edge of the channel. + */ + HYDRODATA_EXPORT virtual TopoDS_Shape GetLeftShape() const; + + /** + * Returns the right edge of the channel. + */ + HYDRODATA_EXPORT virtual TopoDS_Shape GetRightShape() const; + + /** + * Update the shape presentations of stream. + * Call this method whenever you made changes for channel data. + */ + HYDRODATA_EXPORT virtual void Update(); + + /** + * Checks that object has 2D presentation. Reimlemented to retun true. + */ + HYDRODATA_EXPORT virtual bool IsHas2dPrs() const; + + /** + * Returns default filling color for new channel. + */ + HYDRODATA_EXPORT virtual QColor DefaultFillingColor() const; + + /** + * Returns default border color for new channel. + */ + HYDRODATA_EXPORT virtual QColor DefaultBorderColor() const; + + +public: + // Public methods to work with Channel + + /** + * Sets reference guide line object for channel. + */ + HYDRODATA_EXPORT virtual bool SetGuideLine( const Handle(HYDROData_Polyline3D)& theGuideLine ); + + /** + * Returns reference guide line object of channel. + */ + HYDRODATA_EXPORT virtual Handle(HYDROData_Polyline3D) GetGuideLine() const; + + /** + * Remove reference guide line object from channel. + */ + HYDRODATA_EXPORT virtual void RemoveGuideLine(); + + + /** + * Sets reference profile object for channel. + */ + HYDRODATA_EXPORT virtual bool SetProfile( const Handle(HYDROData_Profile)& theProfile ); + + /** + * Returns reference profile object of channel. + */ + HYDRODATA_EXPORT virtual Handle(HYDROData_Profile) GetProfile() const; + + /** + * Remove reference profile object from channel. + */ + HYDRODATA_EXPORT virtual void RemoveProfile(); + + HYDRODATA_EXPORT void SetEquiDistance( double ); + HYDRODATA_EXPORT double GetEquiDistance() const; + +protected: + /** + * Returns the type of child altitude object. + * Reimplemented to create chanel altitude object. */ - HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const; + HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const; protected: