X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_SymbolPrs.h;h=458f860a74cb34fc97c5ca8a6cbe46aea4b4f80e;hb=f98f887290d4e2b4bd6618389911e82b6b9674f3;hp=7a9c37b032529b8b89e16eab40c65eed85c1f407;hpb=ad777acf40828575ffa8a9ba6db103a7cc17dd71;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_SymbolPrs.h b/src/SketcherPrs/SketcherPrs_SymbolPrs.h index 7a9c37b03..458f860a7 100644 --- a/src/SketcherPrs/SketcherPrs_SymbolPrs.h +++ b/src/SketcherPrs/SketcherPrs_SymbolPrs.h @@ -7,18 +7,23 @@ #ifndef SketcherPrs_SymbolPrs_H #define SketcherPrs_SymbolPrs_H +#include "SketcherPrs_SensitivePoint.h" +#include +#include + #include #include #include #include #include +#include +#include #include #include #include -class SketchPlugin_Constraint; class OpenGl_Context; @@ -34,13 +39,10 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch - Standard_EXPORT SketcherPrs_SymbolPrs(SketchPlugin_Constraint* theConstraint, + Standard_EXPORT SketcherPrs_SymbolPrs(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); - //! Method which clear all selected owners belonging - //! to this selectable object ( for fast presentation draw ) - Standard_EXPORT virtual void ClearSelected(); - + virtual ~SketcherPrs_SymbolPrs(); //! Method which draws selected owners ( for fast presentation draw ) Standard_EXPORT virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& thePM, @@ -51,17 +53,34 @@ 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; } - Standard_EXPORT SketchPlugin_Constraint* feature() const { return myConstraint; } + /// 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; } + /// Set state of the presentation, in case of conflicting state, the icon of the presentation is + /// visualized in error color. The state is stored in an internal field, so should be changed when + /// constraint become not conflicting + /// \param theConflicting a state + /// \param theColor a color for conflicting object + Standard_EXPORT void SetConflictingConstraint(const bool& theConflicting, const std::vector& theColor); + /// 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); + /// Add a bounding box of the presentation to common bounding box + /// \param theBndBox the common bounding box to update + Standard_EXPORT virtual void BoundingBox (Bnd_Box& theBndBox) Standard_OVERRIDE; + DEFINE_STANDARD_RTTI(SketcherPrs_SymbolPrs) protected: @@ -70,6 +89,8 @@ protected: const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0); /// Redefinition of virtual function + /// \param aSelection selection + /// \param aMode compute mode Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection, const Standard_Integer aMode); @@ -95,11 +116,23 @@ protected: /// Update myPntArray according to presentation positions /// \return true in case of success - virtual bool updatePoints(double theStep) const { return true; } + virtual bool updateIfReadyToDisplay(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 - SketchPlugin_Constraint* myConstraint; + ModelAPI_Feature* myConstraint; /// Plane of the current sketcher std::shared_ptr myPlane; @@ -110,11 +143,20 @@ protected: /// Array of symbols positions mutable Handle(Graphic3d_ArrayOfPoints) myPntArray; + /// An owner object of the presentation + Handle(SelectMgr_EntityOwner) myOwner; + private: /// Static map to collect constraints icons {IconName : IconPixMap} static std::map myIconsMap; mutable Handle(OpenGl_VertexBuffer) myVboAttribs; + + Select3D_EntitySequence mySPoints; + + bool myIsConflicting; /// state if the presentation is visualized in error state + Handle(Image_AlienPixMap) myErrorIcon; + Handle(Graphic3d_MarkerImage) myErrorImage; }; #endif \ No newline at end of file