diff --git a/sleepyhead/docs/release_notes.html b/sleepyhead/docs/release_notes.html
index 91d273b0..fc0bed4a 100644
--- a/sleepyhead/docs/release_notes.html
+++ b/sleepyhead/docs/release_notes.html
@@ -4,7 +4,8 @@
Changes and fixes in v1.1.0-unstable-0
-Combined release notes and about into mega dialog, removing Webkit dependence for those parts
+Killed off dependency on Webkit... (or as I prefer to call it "murderalized with extreme prejudice"!)
+Combined release notes and about into mega dialog
Added brand new live Profile switcher and cleaned up a lot of forced restart conditions
[DeVilbiss] Added DV6 Import capability (Thanks Heynes and Brian)
[PR Dreamstation] Added spuport for newer 960T (DF3 F5V3) and 1030 (DFV3 F3V3) machines
diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp
index 49609fe0..15c91a89 100644
--- a/sleepyhead/mainwindow.cpp
+++ b/sleepyhead/mainwindow.cpp
@@ -239,6 +239,12 @@ MainWindow::MainWindow(QWidget *parent) :
ui->mainsplitter->setSizes(a);
ui->mainsplitter->setStretchFactor(0,1);
ui->mainsplitter->setStretchFactor(1,0);
+
+ QTimer::singleShot(0, this, SLOT(Startup()));
+
+ ui->backButton->setEnabled(ui->helpBrowser->backwardHistoryCount()>0);
+ ui->forwardButton->setEnabled(ui->helpBrowser->forwardHistoryCount()>0);
+
}
void MainWindow::logMessage(QString msg)
@@ -1179,16 +1185,10 @@ void MainWindow::on_forwardButton_clicked()
ui->helpBrowser->forward();
}
-void MainWindow::on_webView_urlChanged(const QUrl &arg1)
-{
- ui->urlBar->setEditText(arg1.toString());
-}
-
void MainWindow::on_urlBar_activated(const QString &arg1)
{
Q_UNUSED(arg1);
- //QUrl url(arg1);
- //ui->webView->setUrl(url);
+ ui->helpBrowser->setText(QString("This ain't no web browser.. this needs to look up %1 in help index or something").arg(arg1));
}
void MainWindow::on_dailyButton_clicked()
@@ -1205,40 +1205,6 @@ void MainWindow::on_overviewButton_clicked()
}
}
-void MainWindow::on_webView_loadFinished(bool arg1)
-{
- Q_UNUSED(arg1);
- qprogress->hide();
-
- if (first_load) {
- QTimer::singleShot(0, this, SLOT(Startup()));
- first_load = false;
- } else {
- qstatus->setText("");
- }
-
- ui->backButton->setEnabled(ui->helpBrowser->backwardHistoryCount()>0);
- ui->forwardButton->setEnabled(ui->helpBrowser->forwardHistoryCount()>0);
-
- //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();
- qprogress->show();
- }
-}
-
-void MainWindow::on_webView_loadProgress(int progress)
-{
- qprogress->setValue(progress);
-}
-
void MainWindow::aboutBoxLinkClicked(const QUrl &url)
{
QDesktopServices::openUrl(url);
@@ -2016,23 +1982,6 @@ void MainWindow::on_actionView_Statistics_triggered()
ui->tabWidget->setCurrentWidget(ui->statisticsTab);
}
-void MainWindow::on_webView_linkClicked(const QUrl &url)
-{
- QString s = url.toString();
- qDebug() << "Link Clicked" << url;
-
- if (s.toLower().startsWith("https:")) {
- QDesktopServices().openUrl(url);
- } else {
- //ui->helpBrowser->setUrl(url);
- }
-}
-
-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);
@@ -2443,11 +2392,6 @@ void MainWindow::on_statisticsButton_clicked()
}
}
-void MainWindow::on_statisticsView_linkClicked(const QUrl &arg1)
-{
- on_recordsBox_anchorClicked(arg1);
-}
-
void MainWindow::on_reportModeMonthly_clicked()
{
ui->statStartDate->setVisible(false);
@@ -2626,3 +2570,26 @@ void MainWindow::on_recordsBox_anchorClicked(const QUrl &linkurl)
ui->tabWidget->setCurrentWidget(ui->statisticsTab);
}
}
+
+void MainWindow::on_helpBrowser_sourceChanged(const QUrl &url)
+{
+ ui->urlBar->setEditText(url.toString());
+}
+
+void MainWindow::on_statisticsView_anchorClicked(const QUrl &url)
+{
+ on_recordsBox_anchorClicked(url);
+}
+
+void MainWindow::on_helpBrowser_anchorClicked(const QUrl &url)
+{
+ QString s = url.toString();
+ qDebug() << "Link Clicked" << url;
+
+ if (s.toLower().startsWith("https:")) {
+ QDesktopServices().openUrl(url);
+ } else {
+ ui->helpBrowser->setText(QString("Loading resource %1").arg(url.toString()));
+ //ui->helpBrowser->setUrl(url);
+ }
+}
diff --git a/sleepyhead/mainwindow.h b/sleepyhead/mainwindow.h
index 5e3d6b42..83683c4b 100644
--- a/sleepyhead/mainwindow.h
+++ b/sleepyhead/mainwindow.h
@@ -183,9 +183,6 @@ class MainWindow : public QMainWindow
//! \brief Go forward in the welcome browsers history
void on_forwardButton_clicked();
- //! \brief Updates the URL bar to show changes to the URL
- void on_webView_urlChanged(const QUrl &arg1);
-
//! \brief Loads a web page when enter is pressed in the URL bar
void on_urlBar_activated(const QString &arg1);
@@ -195,15 +192,6 @@ class MainWindow : public QMainWindow
//! \brief Selects the Overview page and redraws the graphs
void on_overviewButton_clicked();
- //! \brief called when webpage has finished loading in welcome browser
- void on_webView_loadFinished(bool arg1);
-
- //! \brief called when webpage has starts loading in welcome browser
- void on_webView_loadStarted();
-
- //! \brief Updates the progress bar in the statusbar while a page is loading
- void on_webView_loadProgress(int progress);
-
//! \brief Display About Dialog
void on_action_About_triggered();
@@ -267,14 +255,10 @@ class MainWindow : public QMainWindow
void on_actionView_Statistics_triggered();
- void on_webView_linkClicked(const QUrl &arg1);
-
//void on_favouritesList_itemSelectionChanged();
//void on_favouritesList_itemClicked(QListWidgetItem *item);
- void on_webView_statusBarMessage(const QString &text);
-
//! \brief Display Help WebView Link in statusbar.
void LinkHovered(const QString &link, const QString &title, const QString &textContent);
void on_tabWidget_currentChanged(int index);
@@ -302,8 +286,6 @@ class MainWindow : public QMainWindow
//! \brief Populates the statistics with information.
void on_statisticsButton_clicked();
- void on_statisticsView_linkClicked(const QUrl &arg1);
-
void on_reportModeMonthly_clicked();
void on_reportModeStandard_clicked();
@@ -346,6 +328,12 @@ class MainWindow : public QMainWindow
void on_recordsBox_anchorClicked(const QUrl &linkurl);
+ void on_helpBrowser_sourceChanged(const QUrl &url);
+
+ void on_statisticsView_anchorClicked(const QUrl &url);
+
+ void on_helpBrowser_anchorClicked(const QUrl &url);
+
private:
void importCPAPBackups();
void finishCPAPImport();
diff --git a/sleepyhead/mainwindow.ui b/sleepyhead/mainwindow.ui
index 2ec364d7..03845ce2 100644
--- a/sleepyhead/mainwindow.ui
+++ b/sleepyhead/mainwindow.ui
@@ -926,7 +926,7 @@
QTabWidget::Rounded
- 1
+ 0
false
@@ -1164,7 +1164,7 @@
-
- ...
+
@@ -1176,11 +1176,33 @@
24
+
+ Qt::ToolButtonTextBesideIcon
+
true
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 75
+ true
+
+
+
+ Search Topic:
+
+
+
-
diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp
index 4b20d5fe..45145d6e 100644
--- a/sleepyhead/statistics.cpp
+++ b/sleepyhead/statistics.cpp
@@ -635,15 +635,14 @@ QString htmlHeader(bool showheader)
QPixmap bobPixmap(":/icons/bob-v3.0.png");
if (showheader) {
- html += "
"
- ""+userinfo+" | "
- ""
- "" + STR_TR_SleepyHead + " "
- "" + QObject::tr("Usage Statistics") + ""
- " | "
- "" +resizeHTMLPixmap(bobPixmap,140,140)+" "
- " |
"
- "
";
+ html += ""
+ +resizeHTMLPixmap(bobPixmap,64,64)+"
"
+ "" + STR_TR_SleepyHead + "
"
+ "" + QObject::tr("Usage Statistics") + "
"
+ "" + QObject::tr("(NOT approved for compliance reporting purposes)")+"
";
+
+ if (!userinfo.isEmpty()) html += "
"+userinfo+"
";
+ html += "
";
}
return html;
}
@@ -653,9 +652,8 @@ QString htmlFooter(bool showinfo=true)
if (showinfo) {
html += "
";
- html += QString(QObject::tr("This report was generated by SleepyHead (%1), and has not been approved in any way for compliance or medical diagnostic purposes.")).
- arg(VersionString) + "
" +
- QObject::tr("SleepyHead is free open-source software available from http://sourceforge.net/projects/SleepyHead");
+ html += QString(QObject::tr("This report was generated by SleepyHead v%1")).arg(ShortVersionString) + "
"
+ +QObject::tr("SleepyHead is free open-source CPAP research software available from http://sleepyhead.jedimark.net");
html += "
";
}
diff --git a/sleepyhead/version.h b/sleepyhead/version.h
index 74fb8bd9..c69a4547 100644
--- a/sleepyhead/version.h
+++ b/sleepyhead/version.h
@@ -18,6 +18,7 @@ const int revision_number = 0; // bugfixes, revisions
const QString ReleaseStatus = "unstable"; // testing/nightly/unstable, beta/untamed, rc/almost, r/stable
const QString VersionString = QString("%1.%2.%3-%4-%5").arg(major_version).arg(minor_version).arg(revision_number).arg(ReleaseStatus).arg(build_number);
+const QString ShortVersionString = QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
#ifdef Q_OS_MAC
const QString PlatformString = "MacOSX";