diff --git a/Resources.qrc b/Resources.qrc
index 222c5993..37bf4688 100644
--- a/Resources.qrc
+++ b/Resources.qrc
@@ -37,5 +37,6 @@
Copyright: ©2011 Mark Watkins (jedimark)
-License: This software is released freely under the GNU Public License.
+License: This software is released freely under the GNU Public License.
+External Credits:
+SleepyHead is built using the Qt Application Framework
+It uses the cross platform QExtSerialPort library for serial port access in the Oximetry module.
+In the updater code, SleepyHead uses QuaZip by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package.
+
+
DISCLAIMER:
This is NOT medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.
diff --git a/mainwindow.cpp b/mainwindow.cpp index d26a4d13..a39a67ed 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1100,10 +1100,13 @@ void MainWindow::on_webView_loadFinished(bool arg1) } ui->backButton->setEnabled(ui->webView->history()->canGoBack()); ui->forwardButton->setEnabled(ui->webView->history()->canGoForward()); + + connect(ui->webView->page(),SIGNAL(linkHovered(QString,QString,QString)),this,SLOT(LinkHovered(QString,QString,QString))); } void MainWindow::on_webView_loadStarted() { + disconnect(ui->webView->page(),SIGNAL(linkHovered(QString,QString,QString)),this,SLOT(LinkHovered(QString,QString,QString))); if (!first_load) { qstatus->setText(tr("Loading")); qprogress->reset(); @@ -2097,3 +2100,15 @@ void MainWindow::on_favouritesList_itemClicked(QListWidgetItem *item) } } } + +void MainWindow::on_webView_statusBarMessage(const QString &text) +{ + ui->statusbar->showMessage(text); +} + +void MainWindow::LinkHovered(const QString & link, const QString & title, const QString & textContent) +{ + Q_UNUSED(title); + Q_UNUSED(textContent); + ui->statusbar->showMessage(link); +} diff --git a/mainwindow.h b/mainwindow.h index 750859c5..0f693913 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -259,6 +259,9 @@ private slots: void on_favouritesList_itemClicked(QListWidgetItem *item); + void on_webView_statusBarMessage(const QString &text); + + void LinkHovered(const QString & link, const QString & title, const QString & textContent); private: Ui::MainWindow *ui;