Salome HOME
Fix for the bug #45: check and warning when the same image is used in 2 arguments.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.cxx
index 7af6f434382f57534d4831d73bce0a57b3c698bd..4952ce856ee8d8151e64165914d2bfda6b3d5497 100644 (file)
@@ -23,6 +23,8 @@
 #include "HYDROGUI_ProfileDlg.h"
 
 #include "HYDROGUI_Module.h"
+#include "HYDROGUI_Tool.h"
+
 #include <CurveCreator_Widget.h>
 #include <CurveCreator_ICurve.hxx>
 
 #include <SUIT_Session.h>
 #include <SUIT_ResourceMgr.h>
 
+#include <GEOMUtils.hxx>
+
 #include <QGroupBox>
 #include <QHBoxLayout>
 #include <QLabel>
 #include <QLineEdit>
+#include <QMouseEvent>
 
 HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle )
 : HYDROGUI_InputPanel( theModule, theTitle ), myName(NULL)
@@ -93,6 +98,23 @@ HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QStr
   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
 
   myAddElementBox->hide();
+
+  // Coordinates
+  connect( myViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
+           this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
+  if ( aViewWin ) {
+    OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( aViewWin );
+    if ( aViewFrame && aViewFrame->getViewPort() ) {
+      aViewFrame->getViewPort()->installEventFilter( this );
+    }
+  }
+
+  myCoordLabel = new QLabel( this );
+  QHBoxLayout* aCoordLayout = new QHBoxLayout();
+  aCoordLayout->addWidget( myCoordLabel );
+  aCoordLayout->addStretch();
+
+  addLayout( aCoordLayout );
 }
 
 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
@@ -173,3 +195,28 @@ void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
   theWidget->hide();
   myAddElementBox->hide();
 }
+
+void HYDROGUI_ProfileDlg::onMouseMove( SUIT_ViewWindow* theViewWindow, QMouseEvent* theEvent )
+{
+  OCCViewer_ViewWindow* anOCCViewWindow = 
+    dynamic_cast<OCCViewer_ViewWindow*>(theViewWindow);
+  if ( anOCCViewWindow && anOCCViewWindow->getViewPort() ) {
+    gp_Pnt aPnt = GEOMUtils::ConvertClickToPoint( 
+      theEvent->x(), theEvent->y(), anOCCViewWindow->getViewPort()->getView() );
+
+    // Show the coordinates
+    QString aX = HYDROGUI_Tool::GetCoordinateString( aPnt.X() );
+    QString anY = HYDROGUI_Tool::GetCoordinateString( aPnt.Y() );
+    myCoordLabel->setText( tr("COORDINATES_INFO").arg( aX ).arg( anY ) );
+  }
+}
+
+bool HYDROGUI_ProfileDlg::eventFilter( QObject* theObj, QEvent* theEvent )
+{
+  if ( theObj->inherits( "OCCViewer_ViewPort" ) && 
+       theEvent->type() == QEvent::Leave ) {
+    myCoordLabel->clear();
+  }
+
+  return HYDROGUI_InputPanel::eventFilter( theObj, theEvent );
+}
\ No newline at end of file