Salome HOME
Separate action "Find bottom" for context menu.
[modules/hydro.git] / src / HYDROData / HYDROData_DummyObject3D.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
23 #include "HYDROData_DummyObject3D.h"
24
25 #include "HYDROData_Object.h"
26
27 #include <TopoDS_Shape.hxx>
28
29 #include <QString>
30 #include <QColor>
31
32 IMPLEMENT_STANDARD_HANDLE(HYDROData_DummyObject3D,HYDROData_Entity)
33 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_DummyObject3D,HYDROData_Entity)
34
35 HYDROData_DummyObject3D::HYDROData_DummyObject3D()
36 : HYDROData_Entity()
37 {
38 }
39
40 HYDROData_DummyObject3D::~HYDROData_DummyObject3D()
41 {
42 }
43
44 QString HYDROData_DummyObject3D::GetName() const
45 {
46   QString aName;
47
48   Handle(HYDROData_Object) aFatherObj = GetObject();
49   if ( !aFatherObj.IsNull() )
50     aName = aFatherObj->GetName();
51
52   aName += "_3D";
53
54   return aName;
55 }
56
57 bool HYDROData_DummyObject3D::CanBeUpdated() const
58 {
59   return false;
60 }
61
62 bool HYDROData_DummyObject3D::CanRemove()
63 {
64   return false;
65 }
66
67 Handle(HYDROData_Object) HYDROData_DummyObject3D::GetObject() const
68 {
69   return Handle(HYDROData_Object)::DownCast( GetFatherObject() );
70 }
71
72 TopoDS_Shape HYDROData_DummyObject3D::GetShape() const
73 {
74   TopoDS_Shape aResShape;
75
76   Handle(HYDROData_Object) aFatherObj = GetObject();
77   if ( !aFatherObj.IsNull() )
78     aResShape = aFatherObj->GetShape3D();
79
80   return aResShape;
81 }
82
83 QColor HYDROData_DummyObject3D::GetFillingColor() const
84 {
85   QColor aResColor( Qt::yellow );
86
87   Handle(HYDROData_Object) aFatherObj = GetObject();
88   if ( !aFatherObj.IsNull() )
89     aResColor = aFatherObj->GetFillingColor();
90
91   return aResColor;
92 }
93
94 QColor HYDROData_DummyObject3D::GetBorderColor() const
95 {
96   QColor aResColor( Qt::transparent );
97
98   Handle(HYDROData_Object) aFatherObj = GetObject();
99   if ( !aFatherObj.IsNull() )
100     aResColor = aFatherObj->GetBorderColor();
101
102   return aResColor;
103 }
104
105