Salome HOME
Dump Image data to python script (Feature #13).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Tool.h
index e67274fc5dc09200352e7b807aeef3160590381f..35ab64743bb4a04479a8022545858a1d3540872f 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef HYDROGUI_TOOL_H
 #define HYDROGUI_TOOL_H
 
-#include <HYDROData_Object.h>
+#include <HYDROData_Image.h>
 
 #include <GraphicsView_Defs.h>
 #include <GraphicsView_ViewPort.h>
@@ -102,6 +102,14 @@ public:
                                                    int& theMinutes,
                                                    double& theSeconds );
 
+  /**
+   * \brief Check that the specified objects are equal.
+   * \param theObj1 first object
+   * \param theObj2 second object
+   */
+  static bool                     IsEqual( const Handle(HYDROData_Object)& theObj1,
+                                           const Handle(HYDROData_Object)& theObj2 );
+
   /**
    * \brief Set the specified view manager to be active on the desktop.
    * \param theModule module
@@ -173,14 +181,36 @@ public:
    * \param theModule module
    * \return view id
    */
-  static int                      GetActiveGraphicsViewId( HYDROGUI_Module* theModule );
+  static size_t                   GetActiveGraphicsViewId( HYDROGUI_Module* theModule );
 
   /**
    * \brief Get list of ids of existing GraphicsView views.
    * \param theModule module
    * \return list of view ids
    */
-  static QList<int>               GetGraphicsViewIdList( HYDROGUI_Module* theModule );
+  static QList<size_t>            GetGraphicsViewIdList( HYDROGUI_Module* theModule );
+
+  /**
+   * \brief Get the list of references (recursively) for the specified image object
+   * \param theImage image data object
+   * \param theRefObjects list of reference objects
+   * \param theRefNames list of reference object names
+   */
+  static void                     GetObjectReferences( const Handle(HYDROData_Image)& theImage,
+                                                       HYDROData_SequenceOfObjects& theRefObjects,
+                                                       QStringList& theRefNames );
+
+  /**
+   * \brief Get the list of back-references for the specified object
+   * \param theModule module
+   * \param theObj data object
+   * \param theBackRefObjects list of back-reference objects
+   * \param theBackRefNames list of back-reference object names
+   */
+  static void                     GetObjectBackReferences( HYDROGUI_Module* theModule,
+                                                           const Handle(HYDROData_Object)& theObj,
+                                                           HYDROData_SequenceOfObjects& theBackRefObjects,
+                                                           QStringList& theBackRefNames );
 };
 
 #endif