]> SALOME platform Git repositories - modules/hydro.git/blobdiff - src/HYDROGUI/HYDROGUI_DataObject.cxx
Salome HOME
Name validator is added to the Calculation Case dialog.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DataObject.cxx
index c1ff5a25008a4383774ac6ad7bdd369c08fdb270..133a99d36ff72d7e2fa2ba00abadb27e70af2e3f 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>
+
 HYDROGUI_DataObject::HYDROGUI_DataObject( SUIT_DataObject* theParent, 
-                                          Handle(HYDROData_Object) theData )
+                                          Handle(HYDROData_Entity) theData,
+                                          const QString& theParentEntry )
 : CAM_DataObject( theParent ),
   LightApp_DataObject( theParent ),
-  myData( theData )
+  myData( theData ),
+  myParentEntry( theParentEntry )
 {
-  // unique identifier generated from pointer to this object, like: "HD_0x123457"
-  // "H" means "HYDRO", "D" means "data" to avoid conflicts with named objects
-  std::ostringstream aStream; 
-  aStream << "HD_" << this;
-  myEntry = QString( aStream.str().c_str() );
 }
 
 QString HYDROGUI_DataObject::entry() const
 {
-  return myEntry;
+  QString anEntry = HYDROGUI_DataObject::dataObjectEntry( modelObject() );
+  if( isReference() )
+    anEntry.prepend( myParentEntry + "_" );
+  return anEntry;
+}
+
+QString HYDROGUI_DataObject::refEntry() const
+{
+  if( !myParentEntry.isEmpty() )
+    return HYDROGUI_DataObject::dataObjectEntry( modelObject() );
+  return QString();
 }
 
 QString HYDROGUI_DataObject::name() const
@@ -49,44 +63,102 @@ QString HYDROGUI_DataObject::name() const
   return QString();
 }
 
-HYDROGUI_DataObject* HYDROGUI_DataObject::objectByEntry( const QString& theEntry )
+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() )
+      aFont.setItalic( true );
+  }
+  return aFont;
+}
+
+QString HYDROGUI_DataObject::text( const int theColumnId ) const
+{
+  QString aRes;
+  if( !myData.IsNull() )
+  {
+    if ( theColumnId == RefObjectId || theColumnId == BathymetryId )
+    {
+      Handle(HYDROData_Zone) aZone = Handle(HYDROData_Zone)::DownCast( myData );
+      if ( !aZone.IsNull() )
+      {
+        HYDROData_SequenceOfObjects::Iterator anIter( aZone->GetGeometryObjects() );
+        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();
+            }
+          }
+        }
+      }
+      if ( aRes.length() > 1 )
+      {
+        aRes.remove( aRes.length() - 2, 2 );
+      }
+    }
+    else
+    {
+      aRes = LightApp_DataObject::text( theColumnId );
+    }
+  }
+  return aRes;
+}
+
+QColor HYDROGUI_DataObject::color( const ColorRole theColorRole, const int theColumnId ) const
+{
+  //TODO: Implement red color for bathymetry conflicts in case creation dialog
+  return LightApp_DataObject::color( theColorRole, theColumnId );
+}
+
+
+QString HYDROGUI_DataObject::dataObjectEntry( const Handle(HYDROData_Entity)& theObject,
+                                              const bool theWithPrefix )
 {
-  static const QString aPrefixD( "HD_" );
-  if ( theEntry.indexOf( aPrefixD ) != 0 ) 
-    return NULL; // not HYDRO entry
-  
-  std::istringstream aStream( theEntry.toLatin1().constData() + 3 ); // start reading just after "HD_"
-  void* aPtr = 0;
-  aStream >> aPtr;
-
-  return ( HYDROGUI_DataObject* )aPtr;
+  QString aEntryStr = QString::null;
+  if( !theObject.IsNull() )
+  {
+    TCollection_AsciiString aLabEntr;
+    TDF_Tool::Entry( theObject->Label(), aLabEntr );
+    aEntryStr = aLabEntr.ToCString();
+    if( theWithPrefix )
+      aEntryStr.prepend( HYDROGUI_DataObject::entryPrefix() );
+  }
+  return aEntryStr;
 }
 
 HYDROGUI_NamedObject::HYDROGUI_NamedObject( SUIT_DataObject* theParent,
-                                            const QString& theName )
+                                            const QString&   theName,
+                                            const QString&   theParentEntry  )
 : CAM_DataObject( theParent ),
   LightApp_DataObject( theParent ),
-  myName( theName )
+  myName( theName ),
+  myParentEntry( theParentEntry )
 {
 }
 
 QString HYDROGUI_NamedObject::entry() const
 {
-  // unique identifier generated from pointer to this object, like: "HD_0x123457"
-  // "H" means "HYDRO", "N" means "named" to avoid conflicts with data objects
-  return "HN_" + myName;
+  QString anEntry = HYDROGUI_DataObject::entryPrefix() + name();
+  if( !myParentEntry.isEmpty() )
+    anEntry.prepend( myParentEntry + "_" );
+  return anEntry;
 }
 
 QString HYDROGUI_NamedObject::name() const
 {
   return myName;
 }
-
-QString HYDROGUI_NamedObject::nameByEntry( const QString& theEntry )
-{
-  static const QString aPrefixN( "HN_" );
-  if( theEntry.indexOf( aPrefixN ) != 0 ) 
-    return QString(); // not HYDRO entry
-  
-  return theEntry.right( 3 );
-}