0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / samples / ios / UIKitSample / UIKitSample / CafShapePrs.h
1 // Copyright (c) 2017 OPEN CASCADE SAS
2 //
3 // This file is part of the examples of the Open CASCADE Technology software library.
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in all
13 // copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
21
22 #ifndef CafShapePrs_h
23 #define CafShapePrs_h
24
25 #include <TDF_Label.hxx>
26 #include <XCAFPrs_AISObject.hxx>
27 #include <XCAFPrs_Style.hxx>
28
29 typedef NCollection_DataMap<TopoDS_Shape, Handle(AIS_ColoredDrawer), TopTools_ShapeMapHasher> CafDataMapOfShapeColor;
30 typedef NCollection_DataMap<TDF_Label, Handle(AIS_InteractiveObject)> MapOfPrsForShapes;
31
32 //! Interactive object for shape in DECAF document
33 class CafShapePrs : public XCAFPrs_AISObject
34 {
35   DEFINE_STANDARD_RTTIEXT(CafShapePrs, XCAFPrs_AISObject)
36 public:
37
38   //! Default constructor.
39   CafShapePrs (const TDF_Label&                theLabel,
40                const XCAFPrs_Style&            theStyle,
41                const Graphic3d_MaterialAspect& theMaterial);
42
43   //! Search custom aspect for specified shape.
44   Standard_Boolean FindCustomAspects (const TopoDS_Shape&        theShape,
45                                       Handle(AIS_ColoredDrawer)& theAspects) const
46   {
47     return myShapeColors.Find (theShape, theAspects);
48   }
49
50   //! Access the styles map.
51   const CafDataMapOfShapeColor& ShapeColors() const { return myShapeColors; }
52
53   //! Override default style.
54   virtual void DefaultStyle (XCAFPrs_Style& theStyle) const Standard_OVERRIDE
55   {
56     theStyle = myDefStyle;
57   }
58
59 protected:
60
61   XCAFPrs_Style myDefStyle; //!< default style
62
63 };
64
65 #endif // CafShapePrs_h