Salome HOME
refs #500: regression in bathymetry show in OCCT
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.h
index e2f1c5f30a2eee413141537222b126a715b70aa5..d49f29f5842d48f2bc302106a7c39a3bb0f051a2 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 #ifndef HYDROGUI_PROFILEDLG_H
 #define HYDROGUI_PROFILEDLG_H
 
-#include "HYDROGUI_InputPanel.h"
+#include "HYDROGUI_ViewerDlg.h"
 
 #include <AIS_InteractiveContext.hxx>
 
-class QLineEdit;
 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
+class HYDROGUI_ProfileDlg : public HYDROGUI_ViewerDlg
 {
   Q_OBJECT
 
@@ -40,8 +43,6 @@ public:
   HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle );
   virtual ~HYDROGUI_ProfileDlg();
 
-  Handle(AIS_InteractiveContext) getAISContext();
-
   void  setProfileName( const QString& theName );
   QString getProfileName() const;
        
@@ -50,21 +51,28 @@ public:
   void  reset();
 
   QList<int> getSelectedSections();
-  QList< QPair< int, int > > getSelectedPoints();
 
   void  deleteSelected();
   bool  deleteEnabled();
 
+protected slots:
+  void processStartedSubOperation( QWidget*, bool );
+  void processFinishedSubOperation( QWidget* );
+
 signals:
   void                  createPreview( QString );
   void                  selectionChanged();
   void                  widgetCreated(QWidget*);
   void                  subOperationStarted(QWidget*);
   void                  subOperationFinished(QWidget*);
+
+protected:
+  virtual Handle(AIS_Trihedron) trihedron();
+
 private:
-  QLineEdit*            myName;
-  CurveCreator_Widget*  myEditorWidget;
-  OCCViewer_Viewer*     myViewer;
+  QLineEdit*             myName;
+  CurveCreator_Widget*   myEditorWidget;
+  QGroupBox*             myAddElementBox;
 };
 
 #endif