0031313: Foundation Classes - Dump improvement for classes
[occt.git] / src / StdSelect / StdSelect_Shape.hxx
1 // Created on: 1998-03-27
2 // Created by: Robert COUBLANC
3 // Copyright (c) 1998-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _StdSelect_Shape_HeaderFile
18 #define _StdSelect_Shape_HeaderFile
19
20 #include <TopoDS_Shape.hxx>
21 #include <Prs3d_Drawer.hxx>
22 #include <PrsMgr_PresentableObject.hxx>
23
24 class TopoDS_Shape;
25
26 //! Presentable shape only for purpose of display for BRepOwner...
27 class StdSelect_Shape : public PrsMgr_PresentableObject
28 {
29   DEFINE_STANDARD_RTTIEXT(StdSelect_Shape, PrsMgr_PresentableObject)
30 public:
31
32   Standard_EXPORT StdSelect_Shape(const TopoDS_Shape& theShape, const Handle(Prs3d_Drawer)& theDrawer = Handle(Prs3d_Drawer)());
33   
34   Standard_EXPORT void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
35   
36   //! computes the presentation according to a point of view
37   //! given by <aProjector>.
38   //! To be Used when the associated degenerated Presentations
39   //! have been transformed by <aTrsf> which is not a Pure
40   //! Translation. The HLR Prs can't be deducted automatically
41   //! WARNING :<aTrsf> must be applied
42   //! to the object to display before computation  !!!
43   Standard_EXPORT virtual void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Geom_Transformation)& aTrsf, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
44
45   const TopoDS_Shape& Shape() const { return mysh; }
46
47   void Shape (const TopoDS_Shape& theShape) { mysh = theShape; }
48
49   //! Dumps the content of me into the stream
50   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
51
52 private:
53
54   Standard_EXPORT void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
55
56 private:
57
58   TopoDS_Shape mysh;
59
60 };
61
62 DEFINE_STANDARD_HANDLE(StdSelect_Shape, PrsMgr_PresentableObject)
63
64 #endif // _StdSelect_Shape_HeaderFile