Salome HOME
c760d195a9ef14140f5e264844d2631dcc1a953d
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataObject.cxx
1 // Copyright (C) 2007-2013  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.
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 "HYDROGUI_DataObject.h"
24
25 #include <SUIT_DataObject.h>
26
27 #include <TDF_Tool.hxx>
28
29 HYDROGUI_DataObject::HYDROGUI_DataObject( SUIT_DataObject* theParent, 
30                                           Handle(HYDROData_Object) theData,
31                                           const QString& theParentEntry )
32 : CAM_DataObject( theParent ),
33   LightApp_DataObject( theParent ),
34   myData( theData ),
35   myParentEntry( theParentEntry )
36 {
37 }
38
39 QString HYDROGUI_DataObject::entry() const
40 {
41   QString anEntry = HYDROGUI_DataObject::dataObjectEntry( modelObject() );
42   if( isReference() )
43     anEntry.prepend( myParentEntry + "_" );
44   return anEntry;
45 }
46
47 QString HYDROGUI_DataObject::refEntry() const
48 {
49   if( !myParentEntry.isEmpty() )
50     return HYDROGUI_DataObject::dataObjectEntry( modelObject() );
51   return QString();
52 }
53
54 QString HYDROGUI_DataObject::name() const
55 {
56   if( !myData.IsNull() )
57     return myData->GetName();
58   return QString();
59 }
60
61 QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Object)& theObject )
62 {
63   QString aEntryStr = QString::null;
64   if( !theObject.IsNull() )
65   {
66     TCollection_AsciiString aLabEntr;
67     TDF_Tool::Entry( theObject->Label(), aLabEntr );
68     aEntryStr = HYDROGUI_DataObject::entryPrefix() + QString( aLabEntr.ToCString() );
69   }
70   return aEntryStr;
71 }
72
73 HYDROGUI_NamedObject::HYDROGUI_NamedObject( SUIT_DataObject* theParent,
74                                             const QString& theName )
75 : CAM_DataObject( theParent ),
76   LightApp_DataObject( theParent ),
77   myName( theName )
78 {
79 }
80
81 QString HYDROGUI_NamedObject::entry() const
82 {
83   //return LightApp_DataObject::entry();
84   return HYDROGUI_DataObject::entryPrefix() + name();
85 }
86
87 QString HYDROGUI_NamedObject::name() const
88 {
89   return myName;
90 }