X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Channel.h;h=c7ed284136032d235faf640318adc1de60ef94e3;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=8ffa76a7bcab1184692394120b3575a922691905;hpb=34310fe4f26db0f23c2edfef1678e5b02f578204;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Channel.h b/src/HYDROData/HYDROData_Channel.h index 8ffa76a7..c7ed2841 100644 --- a/src/HYDROData/HYDROData_Channel.h +++ b/src/HYDROData/HYDROData_Channel.h @@ -4,8 +4,13 @@ #include "HYDROData_ArtificialObject.h" +#include +#include + class Handle(HYDROData_Polyline3D); class Handle(HYDROData_Profile); +class TopTools_SequenceOfShape; +class TopTools_ListOfShape; DEFINE_STANDARD_HANDLE(HYDROData_Channel, HYDROData_ArtificialObject) @@ -15,6 +20,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. @@ -27,8 +44,20 @@ protected: }; public: + DEFINE_STANDARD_RTTI(HYDROData_Channel); +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 ); + +public: + /** * Returns the kind of this object. Must be redefined in all objects of known type. */ @@ -60,6 +89,21 @@ public: */ 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 static QColor DefaultFillingColor(); + + /** + * Returns default border color for new channel. + */ + HYDRODATA_EXPORT static QColor DefaultBorderColor(); + public: // Public methods to work with Channel @@ -96,6 +140,24 @@ public: HYDRODATA_EXPORT virtual void RemoveProfile(); +protected: + + /** + * Returns default filling color for new object. + */ + HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const; + + /** + * Returns default border color for new object. + */ + HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const; + + /** + * Returns the type of child altitude object. + * Reimplemented to create chanel altitude object. + */ + HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const; + protected: friend class HYDROData_Iterator;