0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / Draw / Draw_Drawable3D.hxx
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 <Standard_Transient.hxx>
27 #include <Standard_OStream.hxx>
28 #include <Draw_Interpretor.hxx>
29 class Draw_Display;
30
31
32 class Draw_Drawable3D;
33 DEFINE_STANDARD_HANDLE(Draw_Drawable3D, Standard_Transient)
34
35
36 class Draw_Drawable3D : public Standard_Transient
37 {
38
39 public:
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
79   DEFINE_STANDARD_RTTIEXT(Draw_Drawable3D,Standard_Transient)
80
81 protected:
82
83   
84   Standard_EXPORT Draw_Drawable3D();
85
86
87
88 private:
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