diff --git a/Resources.qrc b/Resources.qrc index 222c5993..37bf4688 100644 --- a/Resources.qrc +++ b/Resources.qrc @@ -37,5 +37,6 @@ icons/trophy.png icons/bookmark.png icons/help.png + LICENSE.txt diff --git a/SleepyHeadQT.pro b/SleepyHeadQT.pro index 29d3acfc..36947165 100644 --- a/SleepyHeadQT.pro +++ b/SleepyHeadQT.pro @@ -183,7 +183,8 @@ OTHER_FILES += \ docs/release_notes.html \ docs/startup_tips.txt \ docs/countries.txt \ - docs/tz.txt + docs/tz.txt \ + LICENSE.txt diff --git a/docs/index.html b/docs/index.html index 13aab304..79c7af29 100644 --- a/docs/index.html +++ b/docs/index.html @@ -50,7 +50,13 @@ Plus a few usage notes, and some important in

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;