Salome HOME
refs #430: incorrect coordinates in dump polyline
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.h
index 266599303d8940e5cd06a5ee802063d37db31288..7c9e0d46d5340aa2200a5e89d176b48aa87bb55f 100644 (file)
 
 #include "HYDROGUI_InputPanel.h"
 
-class QGroupBox;
-class QLineEdit;
+#include <AIS_InteractiveContext.hxx>
+
 class CurveCreator_Widget;
 class CurveCreator_ICurve;
-class OCCViewer_Viewer;
+class OCCViewer_ViewManager;
+class SUIT_ViewWindow;
+class QGroupBox;
+class QLineEdit;
+class QLabel;
 
 class HYDROGUI_ProfileDlg : public HYDROGUI_InputPanel
 {
@@ -39,24 +43,29 @@ public:
   HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle );
   virtual ~HYDROGUI_ProfileDlg();
 
-  void setOCCViewer( OCCViewer_Viewer* theViewer );
+  Handle(AIS_InteractiveContext) getAISContext();
 
   void  setProfileName( const QString& theName );
   QString getProfileName() const;
        
-  void  setCurve( CurveCreator_ICurve* theCurve );
+  void  setProfile( CurveCreator_ICurve* theProfile );
 
   void  reset();
 
   QList<int> getSelectedSections();
-  QList< QPair< int, int > > getSelectedPoints();
 
   void  deleteSelected();
   bool  deleteEnabled();
 
+protected:
+  virtual bool eventFilter( QObject*, QEvent* );
+
 protected slots:
-  void processStartedSubOperation( QWidget* );
+  void processStartedSubOperation( QWidget*, bool );
   void processFinishedSubOperation( QWidget* );
+
+  void onMouseMove( SUIT_ViewWindow*, QMouseEvent* );
+
 signals:
   void                  createPreview( QString );
   void                  selectionChanged();
@@ -64,9 +73,11 @@ signals:
   void                  subOperationStarted(QWidget*);
   void                  subOperationFinished(QWidget*);
 private:
-  QLineEdit*            myName;
-  CurveCreator_Widget*  myEditorWidget;
-  //QGroupBox*            myAddElementBox;
+  QLineEdit*             myName;
+  CurveCreator_Widget*   myEditorWidget;
+  QGroupBox*             myAddElementBox;
+  OCCViewer_ViewManager* myViewManager;
+  QLabel*                myCoordLabel;
 };
 
 #endif