Salome HOME
Windows porting
[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 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
62 #define OBJECT_WNT_EXPORT __declspec( dllexport )
63 #else
64 #define OBJECT_WNT_EXPORT
65 #endif
66 class  OBJECT_WNT_EXPORT GEOM_AISShape : public SALOME_AISShape {
67
68 public:
69
70     inline void* operator new(size_t,void* anAddress) 
71       {
72         return anAddress;
73       }
74     inline void* operator new(size_t size) 
75       { 
76         return Standard::Allocate(size); 
77       }
78     inline void  operator delete(void *anAddress) 
79       { 
80         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
81       }
82 //    inline void  operator delete(void *anAddress, size_t size) 
83 //      { 
84 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
85 //      }
86  // Methods PUBLIC
87  // 
88         GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
89         Standard_Boolean hasIO() ;
90         void setIO(const Handle(SALOME_InteractiveObject)& name) ;
91         void setName(const Standard_CString aName) ;
92         Standard_CString getName() ;
93         Handle_SALOME_InteractiveObject getIO() ;
94         void highlightSubShapes(const TColStd_IndexedMapOfInteger& aIndexMap, const Standard_Boolean aHighlight );
95         ~GEOM_AISShape();
96
97         void SetTransparency(const Standard_Real aValue);
98         void SetShadingColor(const Quantity_Color &aCol);
99
100         virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
101                                       const Handle(Prs3d_Presentation)& aPresentation,
102                                       const Standard_Integer aMode = 0) ;
103
104  // Type management
105  //
106         friend Handle_Standard_Type& GEOM_AISShape_Type_();
107         const Handle(Standard_Type)& DynamicType() const;
108         Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
109
110 protected:
111
112  // Methods PROTECTED
113  // 
114
115
116  // Fields PROTECTED
117  //
118
119
120 private: 
121
122  // Methods PRIVATE
123  // 
124
125
126  // Fields PRIVATE
127  //
128   Standard_CString myName;
129   Quantity_Color myShadingColor;
130 };
131
132
133
134
135
136 // other inline functions and methods (like "C++: function call" methods)
137 //
138
139
140 #endif