Salome HOME
Dump Image data to python script (Feature #13).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PolylineOp.h
index 6ff93f05139866a7678a0bdde73329aef9263f3d..2502c970b541aad060833c3341893697e0da45a7 100755 (executable)
@@ -28,6 +28,9 @@
 #include <HYDROData_Polyline.h>
 
 class CurveCreator_Curve;
+class SUIT_ViewManager;
+class OCCViewer_ViewManager;
+class HYDROGUI_AISCurve;
 
 class HYDROGUI_PolylineOp : public HYDROGUI_Operation
 {
@@ -43,11 +46,21 @@ protected:
   virtual bool processApply( int& theUpdateFlags, QString& theErrorMsg );
 
   virtual void startOperation();
+  
+  void onCreatePreview();
+
+protected slots:
+  void onEditorSelectionChanged();
 
 private:
+  SUIT_ViewManager*           myActiveViewManager;
+
+  OCCViewer_ViewManager*      myPreviewViewManager;
+
   bool                       myIsEdit;
   Handle(HYDROData_Polyline) myEditedObject;
   CurveCreator_Curve*        myCurve;
+  HYDROGUI_AISCurve*         myAISCurve;
 };
 
 #endif