1 // Created on: 1995-01-25
2 // Created by: Jean-Louis Frenkel
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
6 // This file is part of Open CASCADE Technology software library.
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
17 #ifndef _PrsMgr_Presentation_HeaderFile
18 #define _PrsMgr_Presentation_HeaderFile
20 #include <PrsMgr_PresentableObjectPointer.hxx>
21 #include <Standard.hxx>
22 #include <Standard_Boolean.hxx>
23 #include <Standard_Integer.hxx>
24 #include <Standard_Transient.hxx>
25 #include <Standard_Type.hxx>
26 #include <Aspect_TypeOfHighlightMethod.hxx>
27 #include <Quantity_Length.hxx>
29 class PrsMgr_PresentationManager;
31 class PrsMgr_PresentableObject;
33 class Geom_Transformation;
34 class Prs3d_Presentation;
36 class Graphic3d_Structure;
37 class Graphic3d_DataStructureManager;
38 class Prs3d_Projector;
40 DEFINE_STANDARD_HANDLE(PrsMgr_Presentation, Standard_Transient)
42 class PrsMgr_Presentation : public Standard_Transient
44 DEFINE_STANDARD_RTTIEXT(PrsMgr_Presentation, Standard_Transient)
45 friend class PrsMgr_PresentationManager;
46 friend class PrsMgr_PresentableObject;
47 friend class PrsMgr_Prs;
51 Standard_EXPORT ~PrsMgr_Presentation();
53 const Handle(Prs3d_Presentation)& Presentation() const { return myStructure; }
55 //! returns the PresentationManager in which the presentation has been created.
56 const Handle(PrsMgr_PresentationManager)& PresentationManager() const { return myPresentationManager; }
58 void SetUpdateStatus (const Standard_Boolean theUpdateStatus) { myMustBeUpdated = theUpdateStatus; }
60 Standard_Boolean MustBeUpdated() const { return myMustBeUpdated; }
64 Standard_EXPORT PrsMgr_Presentation(const Handle(PrsMgr_PresentationManager)& thePresentationManager, const Handle(PrsMgr_PresentableObject)& thePresentableObject);
66 Standard_EXPORT void Display();
68 //! Displays myStructure.
69 Standard_EXPORT void display (const Standard_Boolean theIsHighlight);
71 Standard_EXPORT void Erase();
73 Standard_EXPORT void SetVisible (const Standard_Boolean theValue);
75 Standard_EXPORT void Highlight (const Handle(Prs3d_Drawer)& theStyle);
77 Standard_EXPORT void Unhighlight() const;
79 Standard_EXPORT Standard_Boolean IsHighlighted() const;
81 Standard_EXPORT Standard_Boolean IsDisplayed() const;
83 Standard_EXPORT Standard_Integer DisplayPriority() const;
85 Standard_EXPORT void SetDisplayPriority (const Standard_Integer aNewPrior);
87 //! Set Z layer ID for the presentation
88 Standard_EXPORT void SetZLayer (const Standard_Integer theLayerId);
90 //! Get Z layer ID for the presentation
91 Standard_EXPORT Standard_Integer GetZLayer() const;
93 //! removes the whole content of the presentation.
94 //! Does not remove the other connected presentations.
95 Standard_EXPORT void Clear();
97 Standard_EXPORT void Connect (const Handle(PrsMgr_Presentation)& theOther) const;
99 Standard_EXPORT void SetTransformation (const Handle(Geom_Transformation)& theTrsf) const;
101 Standard_EXPORT void Compute (const Handle(Graphic3d_Structure)& theStructure);
103 Standard_EXPORT Handle(Graphic3d_Structure) Compute (const Handle(Graphic3d_DataStructureManager)& theProjector);
105 Standard_EXPORT Handle(Graphic3d_Structure) Compute (const Handle(Graphic3d_DataStructureManager)& theProjector, const Handle(Geom_Transformation)& theTrsf);
107 Standard_EXPORT void Compute (const Handle(Graphic3d_DataStructureManager)& theProjector, const Handle(Graphic3d_Structure)& theGivenStruct);
109 Standard_EXPORT void Compute (const Handle(Graphic3d_DataStructureManager)& theProjector, const Handle(Geom_Transformation)& theTrsf, const Handle(Graphic3d_Structure)& theGivenStruct);
111 Standard_EXPORT static Handle(Prs3d_Projector) Projector (const Handle(Graphic3d_DataStructureManager)& theProjector);
115 Handle(PrsMgr_PresentationManager) myPresentationManager;
116 Handle(Prs3d_Presentation) myStructure;
117 PrsMgr_PresentableObjectPointer myPresentableObject;
118 Standard_Boolean myMustBeUpdated;
119 Standard_Integer myBeforeHighlightState;
123 #endif // _PrsMgr_Presentation_HeaderFile