Salome HOME
Fix for the feature #6: Update of objects (T 1.2): For objects which need updating...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataObject.cxx
index e060a5ac8692b4ea05527dfb35005ec4900b5c54..a201b3e6320de970b369cc2cc1e73644199a524c 100644 (file)
 
 #include "HYDROGUI_DataObject.h"
 
-#include <HYDROData_Image.h>
-#include <HYDROData_Zone.h>
-#include <HYDROData_Object.h>
-#include <HYDROData_Bathymetry.h>
-
 #include <SUIT_DataObject.h>
-
 #include <TDF_Tool.hxx>
+#include <SUIT_ResourceMgr.h>
+#include <SUIT_Session.h>
+#include <QPixmap>
 
 HYDROGUI_DataObject::HYDROGUI_DataObject( SUIT_DataObject* theParent, 
                                           Handle(HYDROData_Entity) theData,
@@ -37,7 +34,8 @@ HYDROGUI_DataObject::HYDROGUI_DataObject( SUIT_DataObject* theParent,
 : CAM_DataObject( theParent ),
   LightApp_DataObject( theParent ),
   myData( theData ),
-  myParentEntry( theParentEntry )
+  myParentEntry( theParentEntry ),
+  myIsValid( true )
 {
 }
 
@@ -68,63 +66,93 @@ QFont HYDROGUI_DataObject::font( const int theId ) const
   QFont aFont = LightApp_DataObject::font( theId );
   if( theId == NameId )
   {
-    Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( modelObject() );
-    if( !anImage.IsNull() && anImage->MustBeUpdated() )
+    Handle(HYDROData_Entity) aDataObject = modelObject();
+    if( !aDataObject.IsNull() && aDataObject->IsMustBeUpdated() )
+    {
       aFont.setItalic( true );
+      aFont.setBold( true );
+    }
   }
   return aFont;
 }
 
-QString HYDROGUI_DataObject::text( const int theColumnId ) const
+QColor HYDROGUI_DataObject::color( const ColorRole theRole, const int theId ) const
 {
-  QString aRes;
-  if( !myData.IsNull() )
+  QColor aColor;
+
+  if ( !isValid() ) {
+    switch ( theRole )
+    {
+      case Text:
+      case Foreground:
+      case Highlight:
+        aColor = Qt::red; // red
+      break;
+      case HighlightedText:
+        // text color for the highlighted item
+        aColor = Qt::white;   // white
+      break;
+
+      default:
+        break;
+    }
+  }
+
+  if ( !aColor.isValid() )
   {
-    if ( theColumnId == RefObjectId || theColumnId == BathymetryId )
+    Handle(HYDROData_Entity) aDataObject = modelObject();
+    if( !aDataObject.IsNull() && aDataObject->IsMustBeUpdated() )
     {
-      Handle(HYDROData_Zone) aZone = Handle(HYDROData_Zone)::DownCast( myData );
-      if ( !aZone.IsNull() )
+      switch ( theRole )
       {
-        HYDROData_SequenceOfObjects aSeq = aZone->GetGeometryObjects();
-        HYDROData_SequenceOfObjects::Iterator anIter( aSeq );
-        for ( ; anIter.More(); anIter.Next() )
-        {
-          Handle(HYDROData_Object) aRefGeomObj =
-            Handle(HYDROData_Object)::DownCast( anIter.Value() );
-          if ( !aRefGeomObj.IsNull() )
-          {
-            switch ( theColumnId )
-            {
-              case RefObjectId:
-                // Get Ref.Object name
-                aRes += aRefGeomObj->GetName() + ", ";
-                break;
-              case BathymetryId:
-                // Get bathymetry name
-                aRes += aRefGeomObj->GetBathymetry()->GetName();
-            }
-          }
-        }
+        case Text:
+        case Foreground:
+        case Highlight:
+          aColor = Qt::blue;    // color for objects which need updating
+        break;
+        case HighlightedText:
+          // text color for the highlighted item
+          aColor = Qt::white;   // white
+        break;
+
+        default:
+          break;
       }
-      if ( aRes.length() > 1 )
-      {
-        aRes.remove( aRes.length() - 2, 2 );
-      }
-    }
-    else
-    {
-      aRes = LightApp_DataObject::text( theColumnId );
     }
   }
-  return aRes;
+
+  if ( !aColor.isValid() ) {
+    aColor = LightApp_DataObject::color( theRole, theId );
+  }
+
+  return aColor;
 }
 
-QColor HYDROGUI_DataObject::color( const ColorRole theColorRole, const int theColumnId ) const
+QPixmap HYDROGUI_DataObject::icon( const int theId ) const
 {
-  //TODO: Implement red color for bathymetry conflicts in case creation dialog
-  return LightApp_DataObject::color( theColorRole, theColumnId );
-}
+  SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
+  if ( theId == NameId )
+  {
+    QString anIcon;
+    Handle(HYDROData_Entity) aDataObject = modelObject();
+    if( aDataObject.IsNull() )
+    {
+      anIcon = QObject::tr( "HYDRO_TYPE0_ICO" ); // KIND_UNKNOWN
+    }
+    else
+    {
+      QString aNeedUpdate = "";
+      if ( aDataObject->IsMustBeUpdated() )
+      {
+        aNeedUpdate = "M_";
+      }
+      anIcon = QObject::tr( QString("HYDRO_%1TYPE%2_ICO").arg( aNeedUpdate ).arg( (int)aDataObject->GetKind() ).toAscii() );
+    }
 
+    return aResMgr->loadPixmap( "HYDRO", anIcon );
+  }
+  return LightApp_DataObject::icon( theId );
+}
 
 QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Entity)& theObject,
                                               const bool theWithPrefix )
@@ -141,6 +169,16 @@ QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Entity)& th
   return aEntryStr;
 }
 
+void HYDROGUI_DataObject::setIsValid( const bool theIsValid )
+{
+  myIsValid = theIsValid;
+}
+
+bool HYDROGUI_DataObject::isValid() const
+{
+  return myIsValid;
+}
+
 HYDROGUI_NamedObject::HYDROGUI_NamedObject( SUIT_DataObject* theParent,
                                             const QString&   theName,
                                             const QString&   theParentEntry  )
@@ -163,3 +201,20 @@ QString HYDROGUI_NamedObject::name() const
 {
   return myName;
 }
+
+QPixmap HYDROGUI_NamedObject::icon( const int theId ) const
+{
+  SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
+  if ( theId == NameId )
+  {
+    return aResMgr->loadPixmap( "HYDRO", QObject::tr( "PARTITION_ICO" ) );
+  }
+  return LightApp_DataObject::icon( theId );
+}
+
+HYDROGUI_DropTargetObject::HYDROGUI_DropTargetObject( SUIT_DataObject* theParent,
+                                            const QString&   theName,
+                                            const QString&   theParentEntry  )
+: HYDROGUI_NamedObject( theParent, theName, theParentEntry ), CAM_DataObject( theParent )
+{
+}