Salome HOME
Profile object creation.
[modules/hydro.git] / src / HYDROData / HYDROData_Object.cxx
1
2 #include "HYDROData_Object.h"
3
4 #include "HYDROData_Bathymetry.h"
5
6 #include <TNaming_Builder.hxx>
7 #include <TNaming_NamedShape.hxx>
8
9 #include <TopoDS_Shape.hxx>
10
11 #include <QColor>
12
13 IMPLEMENT_STANDARD_HANDLE(HYDROData_Object,HYDROData_Entity)
14 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Object,HYDROData_Entity)
15
16 HYDROData_Object::HYDROData_Object()
17 : HYDROData_Entity()
18 {
19 }
20
21 HYDROData_Object::~HYDROData_Object()
22 {
23 }
24
25 void HYDROData_Object::SetTopShape( const TopoDS_Shape& theShape )
26 {
27   TNaming_Builder aBuilder( myLab.FindChild( DataTag_TopShape ) );
28   aBuilder.Generated( theShape );
29 }
30
31 void HYDROData_Object::SetShape3D( const TopoDS_Shape& theShape )
32 {
33   TNaming_Builder aBuilder( myLab.FindChild( DataTag_Shape3D ) );
34   aBuilder.Generated( theShape );
35 }
36
37 void HYDROData_Object::SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry )
38 {
39   SetReferenceObject( theBathymetry, DataTag_Bathymetry );
40 }
41
42 Handle(HYDROData_Bathymetry) HYDROData_Object::GetBathymetry() const
43 {
44   return Handle(HYDROData_Bathymetry)::DownCast( 
45            GetReferenceObject( DataTag_Bathymetry ) );
46 }
47
48 void HYDROData_Object::RemoveBathymetry()
49 {
50   ClearReferenceObjects( DataTag_Bathymetry );
51 }
52
53 TopoDS_Shape HYDROData_Object::getTopShape() const
54 {
55   TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, false );
56   if ( !aLabel.IsNull() )
57   {
58     Handle(TNaming_NamedShape) aNamedShape;
59     if( aLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) )
60       return aNamedShape->Get();
61   }
62
63   return TopoDS_Shape();
64 }
65
66 void HYDROData_Object::removeTopShape()
67 {
68   TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, false );
69   if ( !aLabel.IsNull() )
70     aLabel.ForgetAllAttributes();
71 }
72
73 TopoDS_Shape HYDROData_Object::getShape3D() const
74 {
75   TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false );
76   if ( !aLabel.IsNull() )
77   {
78     Handle(TNaming_NamedShape) aNamedShape;
79     if( aLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) )
80       return aNamedShape->Get();
81   }
82
83   return TopoDS_Shape();
84 }
85
86 void HYDROData_Object::removeShape3D()
87 {
88   TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false );
89   if ( !aLabel.IsNull() )
90     aLabel.ForgetAllAttributes();
91 }
92
93 void HYDROData_Object::SetFillingColor( const QColor& theColor )
94 {
95   return SetColor( theColor, DataTag_FillingColor );
96 }
97
98 QColor HYDROData_Object::GetFillingColor() const
99 {
100   return GetColor( DefaultFillingColor(), DataTag_FillingColor );
101 }
102
103 void HYDROData_Object::SetBorderColor( const QColor& theColor )
104 {
105   return SetColor( theColor, DataTag_BorderColor );
106 }
107
108 QColor HYDROData_Object::GetBorderColor() const
109 {
110   return GetColor( DefaultBorderColor(), DataTag_BorderColor );
111 }
112
113 QColor HYDROData_Object::DefaultFillingColor()
114 {
115   return QColor( Qt::yellow );
116 }
117
118 QColor HYDROData_Object::DefaultBorderColor()
119 {
120   return QColor( Qt::transparent );
121 }