Salome HOME
fd4638a92a5a364fa12600ce21f4d510ced88fa6
[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 : CAM_DataObject( theParent ),
32   LightApp_DataObject( theParent ),
33   myData( theData )
34 {
35 }
36
37 QString HYDROGUI_DataObject::entry() const
38 {
39   return HYDROGUI_DataObject::dataObjectEntry( modelObject() );
40 }
41
42 QString HYDROGUI_DataObject::name() const
43 {
44   if( !myData.IsNull() )
45     return myData->GetName();
46   return QString();
47 }
48
49 QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Object)& theObject )
50 {
51   QString aEntryStr = QString::null;
52   if( !theObject.IsNull() )
53   {
54     TCollection_AsciiString aLabEntr;
55     TDF_Tool::Entry( theObject->Label(), aLabEntr );
56     aEntryStr = HYDROGUI_DataObject::entryPrefix() + QString( aLabEntr.ToCString() );
57   }
58   return aEntryStr;
59 }
60
61 HYDROGUI_NamedObject::HYDROGUI_NamedObject( SUIT_DataObject* theParent,
62                                             const QString& theName )
63 : CAM_DataObject( theParent ),
64   LightApp_DataObject( theParent ),
65   myName( theName )
66 {
67 }
68
69 QString HYDROGUI_NamedObject::entry() const
70 {
71   //return LightApp_DataObject::entry();
72   return HYDROGUI_DataObject::entryPrefix() + name();
73 }
74
75 QString HYDROGUI_NamedObject::name() const
76 {
77   return myName;
78 }