Salome HOME
Creat\Edit stream operation.
[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 #include <TDF_Tool.hxx>
27
28 HYDROGUI_DataObject::HYDROGUI_DataObject( SUIT_DataObject* theParent, 
29                                           Handle(HYDROData_Entity) theData,
30                                           const QString& theParentEntry )
31 : CAM_DataObject( theParent ),
32   LightApp_DataObject( theParent ),
33   myData( theData ),
34   myParentEntry( theParentEntry ),
35   myIsValid( true )
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 QFont HYDROGUI_DataObject::font( const int theId ) const
62 {
63   QFont aFont = LightApp_DataObject::font( theId );
64   if( theId == NameId )
65   {
66     Handle(HYDROData_Entity) aDataObject = modelObject();
67     if( !aDataObject.IsNull() && aDataObject->IsMustBeUpdated() )
68       aFont.setItalic( true );
69   }
70   return aFont;
71 }
72
73 QColor HYDROGUI_DataObject::color( const ColorRole theRole, const int theId ) const
74 {
75   QColor aColor;
76
77   if ( !isValid() ) {
78     switch ( theRole )
79     {
80       case Text:
81       case Foreground:
82       case Highlight:
83         aColor = QColor( 255, 0, 0 ); // red
84       break;
85       case HighlightedText:
86         // text color for the highlighted item
87         aColor = QColor( 255, 255, 255 );   // white
88       break;
89
90       default:
91         break;
92     }
93   }
94
95   if ( !aColor.isValid() ) {
96     aColor = LightApp_DataObject::color( theRole, theId );
97   }
98
99   return aColor;
100 }
101
102 QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Entity)& theObject,
103                                               const bool theWithPrefix )
104 {
105   QString aEntryStr = QString::null;
106   if( !theObject.IsNull() )
107   {
108     TCollection_AsciiString aLabEntr;
109     TDF_Tool::Entry( theObject->Label(), aLabEntr );
110     aEntryStr = aLabEntr.ToCString();
111     if( theWithPrefix )
112       aEntryStr.prepend( HYDROGUI_DataObject::entryPrefix() );
113   }
114   return aEntryStr;
115 }
116
117 void HYDROGUI_DataObject::setIsValid( const bool theIsValid )
118 {
119   myIsValid = theIsValid;
120 }
121
122 bool HYDROGUI_DataObject::isValid() const
123 {
124   return myIsValid;
125 }
126
127 HYDROGUI_NamedObject::HYDROGUI_NamedObject( SUIT_DataObject* theParent,
128                                             const QString&   theName,
129                                             const QString&   theParentEntry  )
130 : CAM_DataObject( theParent ),
131   LightApp_DataObject( theParent ),
132   myName( theName ),
133   myParentEntry( theParentEntry )
134 {
135 }
136
137 QString HYDROGUI_NamedObject::entry() const
138 {
139   QString anEntry = HYDROGUI_DataObject::entryPrefix() + name();
140   if( !myParentEntry.isEmpty() )
141     anEntry.prepend( myParentEntry + "_" );
142   return anEntry;
143 }
144
145 QString HYDROGUI_NamedObject::name() const
146 {
147   return myName;
148 }
149
150 HYDROGUI_DropTargetObject::HYDROGUI_DropTargetObject( SUIT_DataObject* theParent,
151                                             const QString&   theName,
152                                             const QString&   theParentEntry  )
153 : HYDROGUI_NamedObject( theParent, theName, theParentEntry ), CAM_DataObject( theParent )
154 {
155 }
156