Salome HOME
Observe Image operation.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Module.h
index e35a9fb3113ce68aa537016cb8fa02e3299daf21..8db2c13b32e0570c784d720779b32c79a1578f9b 100644 (file)
@@ -27,6 +27,8 @@
 
 #include <QEvent>
 
+class QGraphicsSceneMouseEvent;
+
 class GraphicsView_Viewer;
 
 class SUIT_ViewWindow;
@@ -43,6 +45,13 @@ class HYDROGUI_Module : public LightApp_Module
 
   enum CustomEvent { NewViewEvent = QEvent::User + 100 };
 
+public:
+  enum ViewManagerRole { VMR_Unknown = 0, VMR_General, VMR_TransformImage, VMR_ObserveImage };
+  typedef QPair< SUIT_ViewManager*, ViewManagerRole > ViewManagerInfo;
+
+  typedef QMap        < int, ViewManagerInfo > ViewManagerMap;
+  typedef QMapIterator< int, ViewManagerInfo > ViewManagerMapIterator;
+
 public:
   HYDROGUI_Module();
   virtual ~HYDROGUI_Module();
@@ -64,7 +73,12 @@ public:
   HYDROGUI_DataModel* getDataModel() const;
   HYDROGUI_Displayer* getDisplayer() const;
 
-  GraphicsView_Viewer* getViewer( const int theViewerId ) const;
+  GraphicsView_Viewer* getViewer( const int theId ) const;
+
+  int getViewManagerId( SUIT_ViewManager* theViewManager );
+  ViewManagerRole getViewManagerRole( SUIT_ViewManager* theViewManager );
+  void setViewManagerRole( SUIT_ViewManager* theViewManager,
+                           const ViewManagerRole theRole );
 
 protected:
   CAM_DataModel* createDataModel();
@@ -89,6 +103,8 @@ protected slots:
   virtual void onViewManagerRemoved( SUIT_ViewManager* );
   virtual void onViewCreated( SUIT_ViewWindow* );
 
+  void onViewPortMouseEvent( QGraphicsSceneMouseEvent* );
+
 private:
   void updateGV( const bool theIsInit = false, 
                  const bool theIsForced = false );
@@ -116,6 +132,8 @@ private:
 private:
   HYDROGUI_Displayer* myDisplayer;
 
+  ViewManagerMap myViewManagerMap;
+
   bool myIsUpdateEnabled;
 };