Salome HOME
ce59e04ef9bca4f9cb580b040bf33cb88711b027
[modules/geom.git] / src / OBJECT / GEOM_AISShape.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  GEOM OBJECT : interactive object for Geometry entities visualization
23 //  File   : GEOM_AISShape.hxx
24 //  Module : GEOM
25 //
26 #ifndef _GEOM_AISShape_HeaderFile
27 #define _GEOM_AISShape_HeaderFile
28
29 #include "GEOM_OBJECT_defs.hxx"
30
31 #ifndef _Standard_HeaderFile
32 #include <Standard.hxx>
33 #endif
34 #ifndef _Handle_GEOM_AISShape_HeaderFile
35 #include "Handle_GEOM_AISShape.hxx"
36 #endif
37
38 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
39 #include "Handle_SALOME_InteractiveObject.hxx"
40 #endif
41 #ifndef _Standard_CString_HeaderFile
42 #include <Standard_CString.hxx>
43 #endif
44 #ifndef _SALOME_AISShape_HeaderFile
45 #include "SALOME_AISShape.hxx"
46 #endif
47 #ifndef _Standard_Boolean_HeaderFile
48 #include <Standard_Boolean.hxx>
49 #endif
50 #ifndef _Handle_PrsMgr_PresentationManager3d_HeaderFile
51 #include <Handle_PrsMgr_PresentationManager3d.hxx>
52 #endif
53 #ifndef _Handle_Prs3d_Presentation_HeaderFile
54 #include <Handle_Prs3d_Presentation.hxx>
55 #endif
56
57 #include <TCollection_AsciiString.hxx>
58
59 class PrsMgr_PresentationManager3d;
60 class Prs3d_Presentation;
61 class SALOME_InteractiveObject;
62 class TopoDS_Shape;
63
64 class GEOM_OBJECT_EXPORT GEOM_AISShape : public SALOME_AISShape {
65
66 public:
67
68     inline void* operator new(size_t,void* anAddress) 
69       {
70         return anAddress;
71       }
72     inline void* operator new(size_t size) 
73       { 
74         return Standard::Allocate(size); 
75       }
76     inline void  operator delete(void *anAddress) 
77       { 
78         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
79       }
80 //    inline void  operator delete(void *anAddress, size_t size) 
81 //      { 
82 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
83 //      }
84  // Methods PUBLIC
85  // 
86         GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
87         Standard_Boolean hasIO() ;
88         void setIO(const Handle(SALOME_InteractiveObject)& name) ;
89         void setName(const Standard_CString aName) ;
90         Standard_CString getName() ;
91         Handle_SALOME_InteractiveObject getIO() ;
92         void highlightSubShapes(const TColStd_IndexedMapOfInteger& aIndexMap, const Standard_Boolean aHighlight );
93         ~GEOM_AISShape();
94
95         void SetTransparency(const Standard_Real aValue);
96         void SetShadingColor(const Quantity_Color &aCol);
97         void SetDisplayVectors(bool isShow);
98
99         virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
100                                       const Handle(Prs3d_Presentation)& aPresentation,
101                                       const Standard_Integer aMode = 0) ;
102
103         virtual  bool isShowVectors () { return myDisplayVectors; }
104         
105  // Type management
106  //
107         friend Handle_Standard_Type& GEOM_AISShape_Type_();
108         const Handle(Standard_Type)& DynamicType() const;
109         Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
110
111 protected: 
112   Quantity_Color myShadingColor;
113
114 private: 
115   TCollection_AsciiString myName;
116   bool                    myDisplayVectors;
117 };
118
119
120 // other inline functions and methods (like "C++: function call" methods)
121 //
122
123
124 #endif