Salome HOME
Update mechanism is corrected (Bug #182).
[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 HYDROData_SequenceOfObjects HYDROData_Object::GetAllReferenceObjects() const
26 {
27   HYDROData_SequenceOfObjects aResSeq = HYDROData_Entity::GetAllReferenceObjects();
28
29   Handle(HYDROData_Bathymetry) aRefBathymetry = GetBathymetry();
30   if ( !aRefBathymetry.IsNull() )
31     aResSeq.Append( aRefBathymetry );
32
33   return aResSeq;
34 }
35
36 void HYDROData_Object::SetTopShape( const TopoDS_Shape& theShape )
37 {
38   TNaming_Builder aBuilder( myLab.FindChild( DataTag_TopShape ) );
39   aBuilder.Generated( theShape );
40 }
41
42 void HYDROData_Object::SetShape3D( const TopoDS_Shape& theShape )
43 {
44   TNaming_Builder aBuilder( myLab.FindChild( DataTag_Shape3D ) );
45   aBuilder.Generated( theShape );
46 }
47
48 void HYDROData_Object::Update()
49 {
50   HYDROData_Entity::Update();
51   removeTopShape();
52   removeShape3D();
53 }
54
55 void HYDROData_Object::SetBathymetry( const Handle(HYDROData_Bathymetry)& theBathymetry )
56 {
57   SetReferenceObject( theBathymetry, DataTag_Bathymetry );
58   SetToUpdate( true );
59 }
60
61 Handle(HYDROData_Bathymetry) HYDROData_Object::GetBathymetry() const
62 {
63   return Handle(HYDROData_Bathymetry)::DownCast( 
64            GetReferenceObject( DataTag_Bathymetry ) );
65 }
66
67 void HYDROData_Object::RemoveBathymetry()
68 {
69   ClearReferenceObjects( DataTag_Bathymetry );
70   SetToUpdate( true );
71 }
72
73 TopoDS_Shape HYDROData_Object::getTopShape() const
74 {
75   TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, 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::removeTopShape()
87 {
88   TDF_Label aLabel = myLab.FindChild( DataTag_TopShape, false );
89   if ( !aLabel.IsNull() )
90     aLabel.ForgetAllAttributes();
91 }
92
93 TopoDS_Shape HYDROData_Object::getShape3D() const
94 {
95   TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false );
96   if ( !aLabel.IsNull() )
97   {
98     Handle(TNaming_NamedShape) aNamedShape;
99     if( aLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) )
100       return aNamedShape->Get();
101   }
102
103   return TopoDS_Shape();
104 }
105
106 void HYDROData_Object::removeShape3D()
107 {
108   TDF_Label aLabel = myLab.FindChild( DataTag_Shape3D, false );
109   if ( !aLabel.IsNull() )
110     aLabel.ForgetAllAttributes();
111 }
112
113 void HYDROData_Object::SetFillingColor( const QColor& theColor )
114 {
115   SetColor( theColor, DataTag_FillingColor );
116 }
117
118 QColor HYDROData_Object::GetFillingColor() const
119 {
120   return GetColor( DefaultFillingColor(), DataTag_FillingColor );
121 }
122
123 void HYDROData_Object::SetBorderColor( const QColor& theColor )
124 {
125   SetColor( theColor, DataTag_BorderColor );
126 }
127
128 QColor HYDROData_Object::GetBorderColor() const
129 {
130   return GetColor( DefaultBorderColor(), DataTag_BorderColor );
131 }
132
133 QColor HYDROData_Object::DefaultFillingColor()
134 {
135   return QColor( Qt::yellow );
136 }
137
138 QColor HYDROData_Object::DefaultBorderColor()
139 {
140   return QColor( Qt::transparent );
141 }