Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / XGUI / XGUI_ViewerProxy.h
index 9c4755f827084bfe5cb14c5a7b12a089fb84964a..f9f104ff35520301eef89e71353a813a8dacb191 100644 (file)
@@ -24,6 +24,7 @@
 #include "XGUI.h"
 #include <ModuleBase_IViewer.h>
 #include <ModelAPI_Feature.h>
+#include <ModelAPI_Result.h>
 
 #include <AIS_Trihedron.hxx>
 #include <AIS_ListOfInteractive.hxx>
@@ -117,6 +118,8 @@ Q_OBJECT
   /// by mouse drugging. If this is impossible thet it has to return False.
   virtual bool canDragByMouse() const;
 
+  virtual void updateHighlight();
+
   // Fit all along Z (perpendicular to display)
   //virtual void Zfitall();
 
@@ -151,6 +154,8 @@ private slots:
   void onKeyRelease(AppElements_ViewWindow*, QKeyEvent*);
 
   void onViewTransformed(AppElements_ViewWindow::OperationType);
+#else
+  void onMouseMove(ModuleBase_IViewWindow*, QMouseEvent*);
 #endif
 
  private:
@@ -158,7 +163,7 @@ private slots:
    void eraseHighlight();
 
   XGUI_Workshop* myWorkshop;
-  FeaturePtr myFeature;
+  ResultPtr myResult;
   AIS_ListOfInteractive myHighlights;
 };