Show Links in statusbar when hovering over them in Help Browser

This commit is contained in:
Mark Watkins 2011-12-26 15:51:53 +10:00
parent 76e79a6a12
commit 79616b5b17
5 changed files with 28 additions and 2 deletions

View File

@ -37,5 +37,6 @@
<file>icons/trophy.png</file>
<file>icons/bookmark.png</file>
<file>icons/help.png</file>
<file>LICENSE.txt</file>
</qresource>
</RCC>

View File

@ -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

View File

@ -50,7 +50,13 @@ Plus a few <a href='qrc:/docs/usage.html'>usage notes</a>, and some important in
<td colspan=2>
<hr/>
<p><b>Copyright:</b> &copy;2011 <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (jedimark)</p>
<p><b>License:</b> This software is released freely under the <a href="http://www.gnu.org/licenses/gpl.html">GNU Public License</a>.</p>
<p><b>License:</b> This software is released freely under the <a href="qrc:/LICENSE.txt">GNU Public License</a>.</p>
<p><b>External Credits:</b> <br/>
SleepyHead is built using the <a href="http://qt.nokia.com">Qt</a> Application Framework<br/>
It uses the cross platform <a href="http://code.google.com/p/qextserialport/">QExtSerialPort</a> library for serial port access in the Oximetry module.<br/>
In the updater code, SleepyHead uses <a href="http://sourceforge.net/projects/quazip/">QuaZip</a> by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package.<br/>
<hr/>
<p><b>DISCLAIMER:</b></p>
<b><p>This is <font color="red"><u>NOT</u></font> medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.</p>

View File

@ -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);
}

View File

@ -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;