mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Show Links in statusbar when hovering over them in Help Browser
This commit is contained in:
parent
76e79a6a12
commit
79616b5b17
@ -37,5 +37,6 @@
|
|||||||
<file>icons/trophy.png</file>
|
<file>icons/trophy.png</file>
|
||||||
<file>icons/bookmark.png</file>
|
<file>icons/bookmark.png</file>
|
||||||
<file>icons/help.png</file>
|
<file>icons/help.png</file>
|
||||||
|
<file>LICENSE.txt</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
@ -183,7 +183,8 @@ OTHER_FILES += \
|
|||||||
docs/release_notes.html \
|
docs/release_notes.html \
|
||||||
docs/startup_tips.txt \
|
docs/startup_tips.txt \
|
||||||
docs/countries.txt \
|
docs/countries.txt \
|
||||||
docs/tz.txt
|
docs/tz.txt \
|
||||||
|
LICENSE.txt
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,7 +50,13 @@ Plus a few <a href='qrc:/docs/usage.html'>usage notes</a>, and some important in
|
|||||||
<td colspan=2>
|
<td colspan=2>
|
||||||
<hr/>
|
<hr/>
|
||||||
<p><b>Copyright:</b> ©2011 <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (jedimark)</p>
|
<p><b>Copyright:</b> ©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/>
|
<hr/>
|
||||||
<p><b>DISCLAIMER:</b></p>
|
<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>
|
<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>
|
||||||
|
@ -1100,10 +1100,13 @@ void MainWindow::on_webView_loadFinished(bool arg1)
|
|||||||
}
|
}
|
||||||
ui->backButton->setEnabled(ui->webView->history()->canGoBack());
|
ui->backButton->setEnabled(ui->webView->history()->canGoBack());
|
||||||
ui->forwardButton->setEnabled(ui->webView->history()->canGoForward());
|
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()
|
void MainWindow::on_webView_loadStarted()
|
||||||
{
|
{
|
||||||
|
disconnect(ui->webView->page(),SIGNAL(linkHovered(QString,QString,QString)),this,SLOT(LinkHovered(QString,QString,QString)));
|
||||||
if (!first_load) {
|
if (!first_load) {
|
||||||
qstatus->setText(tr("Loading"));
|
qstatus->setText(tr("Loading"));
|
||||||
qprogress->reset();
|
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);
|
||||||
|
}
|
||||||
|
@ -259,6 +259,9 @@ private slots:
|
|||||||
|
|
||||||
void on_favouritesList_itemClicked(QListWidgetItem *item);
|
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:
|
private:
|
||||||
|
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
|
Loading…
Reference in New Issue
Block a user