X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_SymbolPrs.h;h=1f8894f174c0da0f48c0300737aeadd8a6775a4f;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=446cedabcd6fb9ad28a0d6c11bf2dadae315579b;hpb=cc84ddead2c5dcb864d24de04df60b378f750824;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_SymbolPrs.h b/src/SketcherPrs/SketcherPrs_SymbolPrs.h index 446cedabc..1f8894f17 100644 --- a/src/SketcherPrs/SketcherPrs_SymbolPrs.h +++ b/src/SketcherPrs/SketcherPrs_SymbolPrs.h @@ -9,6 +9,7 @@ #include "SketcherPrs_SensitivePoint.h" #include +#include #include #include @@ -16,7 +17,7 @@ #include #include #include -#include +#include #include #include @@ -57,17 +58,25 @@ public: Standard_EXPORT virtual void HilightOwnerWithColor(const Handle(PrsMgr_PresentationManager3d)& thePM, const Quantity_NameOfColor theColor, const Handle(SelectMgr_EntityOwner)& theOwner); + /// Returns sketcher plane Standard_EXPORT std::shared_ptr plane() const { return myPlane; } + /// Returns feature object Standard_EXPORT ModelAPI_Feature* feature() const { return myConstraint; } + /// Return array of points where symbols will be placed + const Handle(Graphic3d_ArrayOfPoints)& pointsArray() const { return myPntArray; } - Handle(Graphic3d_ArrayOfPoints) pointsArray() const { return myPntArray; } - + /// Render of the presentation + /// \param theWorkspace is OpenGl workspace void Render(const Handle(OpenGl_Workspace)& theWorkspace) const; + /// Release used OpenGl resources + /// \param theContext is an OpenGL context void Release (OpenGl_Context* theContext); + Standard_EXPORT virtual void BoundingBox (Bnd_Box& theBndBox) Standard_OVERRIDE; + DEFINE_STANDARD_RTTI(SketcherPrs_SymbolPrs) protected: @@ -103,6 +112,18 @@ protected: /// \return true in case of success virtual bool updatePoints(double theStep) const { return true; } + /// Draw a shape into the given presentation scene + /// \param theShape the shape to draw + /// \param thePrs the presentation scene + void drawShape(const std::shared_ptr& theShape, + const Handle(Prs3d_Presentation)& thePrs) const; + + /// Draw a list of shapes stored in a RefListAttribute + /// \param theListAttr the attribute of reference3s list + /// \param thePrs the presentation scene + void drawListOfShapes(const std::shared_ptr& theListAttr, + const Handle(Prs3d_Presentation)& thePrs) const; + protected: /// Constraint feature ModelAPI_Feature* myConstraint; @@ -116,6 +137,7 @@ protected: /// Array of symbols positions mutable Handle(Graphic3d_ArrayOfPoints) myPntArray; + /// An owner object of the presentation Handle(SelectMgr_EntityOwner) myOwner; private: @@ -124,7 +146,7 @@ private: mutable Handle(OpenGl_VertexBuffer) myVboAttribs; - Select3D_SensitiveEntitySequence mySPoints; + Select3D_EntitySequence mySPoints; }; #endif \ No newline at end of file