0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / AIS / AIS_ColoredDrawer.hxx
1 // Copyright (c) 2016 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #ifndef _AIS_ColoredDrawer_HeaderFile
15 #define _AIS_ColoredDrawer_HeaderFile
16
17 #include <Prs3d_Drawer.hxx>
18 #include <Quantity_Color.hxx>
19
20 //! Customizable properties.
21 class AIS_ColoredDrawer : public Prs3d_Drawer
22 {
23   DEFINE_STANDARD_RTTIEXT(AIS_ColoredDrawer, Prs3d_Drawer)
24 public:
25
26   //! Default constructor.
27   AIS_ColoredDrawer (const Handle(Prs3d_Drawer)& theLink)
28   : myIsHidden    (false),
29     myHasOwnMaterial(false),
30     myHasOwnColor (false),
31     myHasOwnTransp(false),
32     myHasOwnWidth (false)
33   {
34     Link (theLink);
35   }
36
37   bool IsHidden() const                                 { return myIsHidden;     }
38   void SetHidden (const bool theToHide)                 { myIsHidden = theToHide;}
39
40   bool HasOwnMaterial() const                           { return myHasOwnMaterial;  }
41   void UnsetOwnMaterial()                               { myHasOwnMaterial = false; }
42   void SetOwnMaterial()                                 { myHasOwnMaterial = true;  }
43
44   bool HasOwnColor() const                              { return myHasOwnColor;  }
45   void UnsetOwnColor()                                  { myHasOwnColor = false; }
46   void SetOwnColor (const Quantity_Color& /*theColor*/) { myHasOwnColor = true;  }
47
48   bool HasOwnTransparency() const                       { return myHasOwnTransp;  }
49   void UnsetOwnTransparency()                           { myHasOwnTransp = false; }
50   void SetOwnTransparency (Standard_Real /*theTransp*/) { myHasOwnTransp = true;  }
51
52   bool HasOwnWidth() const                              { return myHasOwnWidth;  }
53   void UnsetOwnWidth()                                  { myHasOwnWidth = false; }
54   void SetOwnWidth (const Standard_Real /*theWidth*/)   { myHasOwnWidth = true;  }
55
56 public:  //! @name list of overridden properties
57
58   bool myIsHidden;
59   bool myHasOwnMaterial;
60   bool myHasOwnColor;
61   bool myHasOwnTransp;
62   bool myHasOwnWidth;
63
64 };
65
66 DEFINE_STANDARD_HANDLE(AIS_ColoredDrawer, Prs3d_Drawer)
67
68 #endif // _AIS_ColoredDrawer_HeaderFile