]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Object browser reference text color was corrected.
authorstv <stv@opencascade.com>
Tue, 7 Jun 2005 09:16:46 +0000 (09:16 +0000)
committerstv <stv@opencascade.com>
Tue, 7 Jun 2005 09:16:46 +0000 (09:16 +0000)
src/SalomeApp/SalomeApp_DataObject.cxx
src/SalomeApp/SalomeApp_DataObject.h

index e1937ceb9124f378a8988028563fe88bd2fa8638..e7a922be8f9e89cd8ba5db8db13cd793d38959d6 100644 (file)
@@ -125,18 +125,6 @@ QPixmap SalomeApp_DataObject::icon() const
   return QPixmap();
 }
 
-QColor SalomeApp_DataObject::color() const
-{
-  _PTR(GenericAttribute) anAttr;
-  if ( myObject && myObject->FindAttribute( anAttr, "AttributeTextColor" ) )
-  {
-    _PTR(AttributeTextColor) aColAttr( anAttr );
-    QColor color( (int)aColAttr->TextColor().R, (int)aColAttr->TextColor().G, (int)aColAttr->TextColor().B );
-    return color;
-  }
-  return QColor();
-}
-
 QString SalomeApp_DataObject::text( const int id ) const
 {
   QString txt;
@@ -165,8 +153,10 @@ QColor SalomeApp_DataObject::color( const ColorRole cr ) const
   QColor clr;
   switch ( cr )
   {
-  case Foreground:
-    if ( myObject )
+  case Text:
+    if ( isReference() )
+      clr = QColor( 255, 0, 0 );
+    else if ( myObject )
     {
       _PTR(GenericAttribute) anAttr;
       if ( myObject->FindAttribute( anAttr, "AttributeTextColor" ) )
index 26ffdfeb4f100fe5bf828e0d92e330ea39558b84..9077f786d08a8f478c6aea07d77d12b817c6c31e 100644 (file)
@@ -24,7 +24,6 @@ public:
     
   virtual QString                 name() const;
   virtual QPixmap                 icon() const;
-  virtual QColor                  color() const;
   virtual QString                 toolTip() const;
 
   virtual QString                 text( const int ) const;