0027691: Remove dchrono from all test cases and move its to perf group
[occt.git] / src / Draw / Draw_Drawable3D.hxx
CommitLineData
42cf5bc1 1// Created on: 1991-04-24
2// Created by: Arnaud BOUZY
3// Copyright (c) 1991-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 _Draw_Drawable3D_HeaderFile
18#define _Draw_Drawable3D_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_Real.hxx>
24#include <Standard_Boolean.hxx>
25#include <Standard_CString.hxx>
26#include <MMgt_TShared.hxx>
27#include <Standard_OStream.hxx>
28#include <Draw_Interpretor.hxx>
29class Draw_Display;
30
31
32class Draw_Drawable3D;
33DEFINE_STANDARD_HANDLE(Draw_Drawable3D, MMgt_TShared)
34
35
36class Draw_Drawable3D : public MMgt_TShared
37{
38
39public:
40
41
42 Standard_EXPORT virtual void DrawOn (Draw_Display& dis) const = 0;
43
44 //! Returs True if the pick is outside the box
45 Standard_EXPORT virtual Standard_Boolean PickReject (const Standard_Real X, const Standard_Real Y, const Standard_Real Prec) const;
46
47 //! For variable copy.
48 Standard_EXPORT virtual Handle(Draw_Drawable3D) Copy() const;
49
50 //! For variable dump.
51 Standard_EXPORT virtual void Dump (Standard_OStream& S) const;
52
53 //! For variable whatis command. Set as a result the
54 //! type of the variable.
55 Standard_EXPORT virtual void Whatis (Draw_Interpretor& I) const;
56
57 //! Is a 3D object. (Default True).
58 Standard_EXPORT virtual Standard_Boolean Is3D() const;
59
60 Standard_EXPORT void SetBounds (const Standard_Real xmin, const Standard_Real xmax, const Standard_Real ymin, const Standard_Real ymax);
61
62 Standard_EXPORT void Bounds (Standard_Real& xmin, Standard_Real& xmax, Standard_Real& ymin, Standard_Real& ymax) const;
63
64 Standard_Boolean Visible() const;
65
66 void Visible (const Standard_Boolean V);
67
68 Standard_Boolean Protected() const;
69
70 void Protected (const Standard_Boolean P);
71
72 Standard_CString Name() const;
73
74 virtual void Name (const Standard_CString N);
75
76
77
78
92efcf78 79 DEFINE_STANDARD_RTTIEXT(Draw_Drawable3D,MMgt_TShared)
42cf5bc1 80
81protected:
82
83
84 Standard_EXPORT Draw_Drawable3D();
85
86
87
88private:
89
90
91 Standard_Real myXmin;
92 Standard_Real myXmax;
93 Standard_Real myYmin;
94 Standard_Real myYmax;
95 Standard_Boolean isVisible;
96 Standard_Boolean isProtected;
97 Standard_CString myName;
98
99
100};
101
102
103#include <Draw_Drawable3D.lxx>
104
105
106
107
108
109#endif // _Draw_Drawable3D_HeaderFile