0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / StdSelect / StdSelect_Shape.hxx
CommitLineData
42cf5bc1 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 <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <TopoDS_Shape.hxx>
24#include <Prs3d_Drawer.hxx>
25#include <PrsMgr_PresentableObject.hxx>
26#include <PrsMgr_PresentationManager3d.hxx>
27#include <Standard_Integer.hxx>
28class TopoDS_Shape;
29class Prs3d_Presentation;
30class Prs3d_Projector;
31class Geom_Transformation;
32
33
34class StdSelect_Shape;
35DEFINE_STANDARD_HANDLE(StdSelect_Shape, PrsMgr_PresentableObject)
36
37//! Presentable shape only for purpose of display for BRepOwner...
38class StdSelect_Shape : public PrsMgr_PresentableObject
39{
40
41public:
42
43
44 Standard_EXPORT StdSelect_Shape(const TopoDS_Shape& theShape, const Handle(Prs3d_Drawer)& theDrawer);
45
46 Standard_EXPORT void Compute (const Handle(PrsMgr_PresentationManager3d)& aPresentationManager, const Handle(Prs3d_Presentation)& aPresentation, const Standard_Integer aMode = 0) Standard_OVERRIDE;
47
48 //! computes the presentation according to a point of view
49 //! given by <aProjector>.
50 //! To be Used when the associated degenerated Presentations
51 //! have been transformed by <aTrsf> which is not a Pure
52 //! Translation. The HLR Prs can't be deducted automatically
53 //! WARNING :<aTrsf> must be applied
54 //! to the object to display before computation !!!
55 Standard_EXPORT virtual void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Geom_Transformation)& aTrsf, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
56
57 const TopoDS_Shape& Shape() const;
58
59 void Shape (const TopoDS_Shape& sh);
60
61
62
63
64 DEFINE_STANDARD_RTTI(StdSelect_Shape,PrsMgr_PresentableObject)
65
66protected:
67
68
69
70
71private:
72
73
74 Standard_EXPORT void Compute (const Handle(Prs3d_Projector)& aProjector, const Handle(Prs3d_Presentation)& aPresentation) Standard_OVERRIDE;
75
76 TopoDS_Shape mysh;
77 Handle(Prs3d_Drawer) myDrawer;
78
79
80};
81
82
83#include <StdSelect_Shape.lxx>
84
85
86
87
88
89#endif // _StdSelect_Shape_HeaderFile