Salome HOME
sources v1.2
[modules/geom.git] / src / OBJECT / GEOM_AISShape.hxx
1 //  GEOM OBJECT : interactive object for Geometry entities visualization
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GEOM_AISShape.hxx
25 //  Module : GEOM
26
27 #ifndef _GEOM_AISShape_HeaderFile
28 #define _GEOM_AISShape_HeaderFile
29
30 #ifndef _Standard_HeaderFile
31 #include <Standard.hxx>
32 #endif
33 #ifndef _Handle_GEOM_AISShape_HeaderFile
34 #include "Handle_GEOM_AISShape.hxx"
35 #endif
36
37 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
38 #include "Handle_SALOME_InteractiveObject.hxx"
39 #endif
40 #ifndef _Standard_CString_HeaderFile
41 #include <Standard_CString.hxx>
42 #endif
43 #ifndef _SALOME_AISShape_HeaderFile
44 #include "SALOME_AISShape.hxx"
45 #endif
46 #ifndef _Standard_Boolean_HeaderFile
47 #include <Standard_Boolean.hxx>
48 #endif
49 #ifndef _Handle_PrsMgr_PresentationManager3d_HeaderFile
50 #include <Handle_PrsMgr_PresentationManager3d.hxx>
51 #endif
52 #ifndef _Handle_Prs3d_Presentation_HeaderFile
53 #include <Handle_Prs3d_Presentation.hxx>
54 #endif
55
56 class PrsMgr_PresentationManager3d;
57 class Prs3d_Presentation;
58 class SALOME_InteractiveObject;
59 class TopoDS_Shape;
60
61
62 class GEOM_AISShape : public SALOME_AISShape {
63
64 public:
65
66     inline void* operator new(size_t,void* anAddress) 
67       {
68         return anAddress;
69       }
70     inline void* operator new(size_t size) 
71       { 
72         return Standard::Allocate(size); 
73       }
74     inline void  operator delete(void *anAddress) 
75       { 
76         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
77       }
78 //    inline void  operator delete(void *anAddress, size_t size) 
79 //      { 
80 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
81 //      }
82  // Methods PUBLIC
83  // 
84 Standard_EXPORT   GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
85 Standard_EXPORT   Standard_Boolean hasIO() ;
86 Standard_EXPORT   void setIO(const Handle(SALOME_InteractiveObject)& name) ;
87 Standard_EXPORT   void setName(const Standard_CString aName) ;
88 Standard_EXPORT   Standard_CString getName() ;
89 Standard_EXPORT   Handle_SALOME_InteractiveObject getIO() ;
90 Standard_EXPORT   ~GEOM_AISShape();
91
92 Standard_EXPORT   void SetTransparency(const Standard_Real aValue);
93 Standard_EXPORT   void SetShadingColor(const Quantity_Color &aCol);
94
95 Standard_EXPORT virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
96                                       const Handle(Prs3d_Presentation)& aPresentation,
97                                       const Standard_Integer aMode = 0) ;
98
99  // Type management
100  //
101  Standard_EXPORT friend Handle_Standard_Type& GEOM_AISShape_Type_();
102  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
103  Standard_EXPORT Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
104
105 protected:
106
107  // Methods PROTECTED
108  // 
109
110
111  // Fields PROTECTED
112  //
113
114
115 private: 
116
117  // Methods PRIVATE
118  // 
119
120
121  // Fields PRIVATE
122  //
123   Handle_SALOME_InteractiveObject myIO;
124   Standard_CString myName;
125   Quantity_Color myShadingColor;
126 };
127
128
129
130
131
132 // other inline functions and methods (like "C++: function call" methods)
133 //
134
135
136 #endif