Salome HOME
Merging with WPdev
[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 #include "GEOM_OBJECT_defs.hxx"
31
32 #ifndef _Standard_HeaderFile
33 #include <Standard.hxx>
34 #endif
35 #ifndef _Handle_GEOM_AISShape_HeaderFile
36 #include "Handle_GEOM_AISShape.hxx"
37 #endif
38
39 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
40 #include "Handle_SALOME_InteractiveObject.hxx"
41 #endif
42 #ifndef _Standard_CString_HeaderFile
43 #include <Standard_CString.hxx>
44 #endif
45 #ifndef _SALOME_AISShape_HeaderFile
46 #include "SALOME_AISShape.hxx"
47 #endif
48 #ifndef _Standard_Boolean_HeaderFile
49 #include <Standard_Boolean.hxx>
50 #endif
51 #ifndef _Handle_PrsMgr_PresentationManager3d_HeaderFile
52 #include <Handle_PrsMgr_PresentationManager3d.hxx>
53 #endif
54 #ifndef _Handle_Prs3d_Presentation_HeaderFile
55 #include <Handle_Prs3d_Presentation.hxx>
56 #endif
57
58 class PrsMgr_PresentationManager3d;
59 class Prs3d_Presentation;
60 class SALOME_InteractiveObject;
61 class TopoDS_Shape;
62
63 class GEOM_OBJECT_EXPORT GEOM_AISShape : public SALOME_AISShape {
64
65 public:
66
67     inline void* operator new(size_t,void* anAddress) 
68       {
69         return anAddress;
70       }
71     inline void* operator new(size_t size) 
72       { 
73         return Standard::Allocate(size); 
74       }
75     inline void  operator delete(void *anAddress) 
76       { 
77         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
78       }
79 //    inline void  operator delete(void *anAddress, size_t size) 
80 //      { 
81 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
82 //      }
83  // Methods PUBLIC
84  // 
85         GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
86         Standard_Boolean hasIO() ;
87         void setIO(const Handle(SALOME_InteractiveObject)& name) ;
88         void setName(const Standard_CString aName) ;
89         Standard_CString getName() ;
90         Handle_SALOME_InteractiveObject getIO() ;
91         void highlightSubShapes(const TColStd_IndexedMapOfInteger& aIndexMap, const Standard_Boolean aHighlight );
92         ~GEOM_AISShape();
93
94         void SetTransparency(const Standard_Real aValue);
95         void SetShadingColor(const Quantity_Color &aCol);
96
97         virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
98                                       const Handle(Prs3d_Presentation)& aPresentation,
99                                       const Standard_Integer aMode = 0) ;
100
101  // Type management
102  //
103         friend Handle_Standard_Type& GEOM_AISShape_Type_();
104         const Handle(Standard_Type)& DynamicType() const;
105         Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
106
107 protected:
108
109  // Methods PROTECTED
110  // 
111
112
113  // Fields PROTECTED
114  //
115
116
117 private: 
118
119  // Methods PRIVATE
120  // 
121
122
123  // Fields PRIVATE
124  //
125   Standard_CString myName;
126   Quantity_Color myShadingColor;
127 };
128
129
130
131
132
133 // other inline functions and methods (like "C++: function call" methods)
134 //
135
136
137 #endif