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