X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_SymbolPrs.h;h=458f860a74cb34fc97c5ca8a6cbe46aea4b4f80e;hb=9968ec652480079d0ca91b2040f6327a164807cf;hp=baf7a928f1219450b08d400e38f17aa3f2bc4a3b;hpb=cb201b7ca01366621e6d279076dfb210ee0b633e;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_SymbolPrs.h b/src/SketcherPrs/SketcherPrs_SymbolPrs.h index baf7a928f..458f860a7 100644 --- a/src/SketcherPrs/SketcherPrs_SymbolPrs.h +++ b/src/SketcherPrs/SketcherPrs_SymbolPrs.h @@ -62,6 +62,13 @@ public: /// Return array of points where symbols will be placed const 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; @@ -82,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); @@ -107,7 +116,7 @@ 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 @@ -144,6 +153,10 @@ private: 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