diff --git a/sleepyhead/UpdaterWindow.ui b/sleepyhead/UpdaterWindow.ui index e9ded06f..d2a9b3f7 100644 --- a/sleepyhead/UpdaterWindow.ui +++ b/sleepyhead/UpdaterWindow.ui @@ -22,7 +22,16 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 @@ -111,17 +120,20 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 - - - - about:blank - - - + @@ -133,7 +145,16 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 @@ -205,7 +226,16 @@ 4 - + + 4 + + + 4 + + + 4 + + 4 @@ -237,7 +267,16 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 @@ -292,7 +331,16 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 @@ -308,7 +356,16 @@ 0 - + + 0 + + + 0 + + + 0 + + 0 @@ -349,13 +406,6 @@ - - - QWebView - QWidget -
QtWebKit/QWebView
-
-
diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index b6205686..49609fe0 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -11,11 +11,6 @@ #include #include #include -#include -#include -#include -#include -#include #include #include #include @@ -32,6 +27,8 @@ #include #include #include +#include +#include #include #include "common_gui.h" @@ -214,8 +211,8 @@ MainWindow::MainWindow(QWidget *parent) : ui->action_Sidebar_Toggle->setChecked(b); ui->toolBox->setVisible(b); - ui->statisticsView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); - ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateExternalLinks); +// ui->statisticsView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); +// ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateExternalLinks); QString loadingtxt = "" @@ -324,29 +321,6 @@ void MainWindow::Notify(QString s, QString title, int ms) } } -class MyStatsPage: public QWebPage -{ - public: - MyStatsPage(QObject *parent); - virtual ~MyStatsPage(); - protected: - //virtual void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID); - virtual void javaScriptAlert(QWebFrame *frame, const QString &msg); -}; -MyStatsPage::MyStatsPage(QObject *parent) - : QWebPage(parent) -{ -} -MyStatsPage::~MyStatsPage() -{ -} - -void MyStatsPage::javaScriptAlert(QWebFrame *frame, const QString &msg) -{ - Q_UNUSED(frame); - mainwin->sendStatsUrl(msg); -} - QString getCPAPPixmap(QString mach_class) { QString cpapimage; @@ -1197,12 +1171,12 @@ void MainWindow::updateFavourites() void MainWindow::on_backButton_clicked() { - ui->webView->back(); + ui->helpBrowser->backward(); } void MainWindow::on_forwardButton_clicked() { - ui->webView->forward(); + ui->helpBrowser->forward(); } void MainWindow::on_webView_urlChanged(const QUrl &arg1) @@ -1212,8 +1186,9 @@ void MainWindow::on_webView_urlChanged(const QUrl &arg1) void MainWindow::on_urlBar_activated(const QString &arg1) { - QUrl url(arg1); - ui->webView->setUrl(url); + Q_UNUSED(arg1); + //QUrl url(arg1); + //ui->webView->setUrl(url); } void MainWindow::on_dailyButton_clicked() @@ -1242,17 +1217,15 @@ void MainWindow::on_webView_loadFinished(bool arg1) qstatus->setText(""); } - ui->backButton->setEnabled(ui->webView->history()->canGoBack()); - ui->forwardButton->setEnabled(ui->webView->history()->canGoForward()); + 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))); + //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))); + //disconnect(ui->webView->page(), SIGNAL(linkHovered(QString, QString, QString)), this, SLOT(LinkHovered(QString, QString, QString))); if (!first_load) { qstatus->setText(tr("Loading")); @@ -1455,7 +1428,7 @@ void MainWindow::on_actionPrint_Report_triggered() if (ui->tabWidget->currentWidget() == ui->statisticsTab) { ui->statisticsView->print(&printer); } else if (ui->tabWidget->currentWidget() == ui->helpTab) { - ui->webView->print(&printer); + ui->helpBrowser->print(&printer); } } @@ -1489,14 +1462,12 @@ void MainWindow::on_action_CycleTabs_triggered() void MainWindow::on_actionOnline_Users_Guide_triggered() { - ui->webView->load(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=SleepyHead_Users_Guide")); - ui->tabWidget->setCurrentWidget(ui->helpTab); + QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=SleepyHead_Users_Guide")); } void MainWindow::on_action_Frequently_Asked_Questions_triggered() { - ui->webView->load(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions")); - ui->tabWidget->setCurrentWidget(ui->helpTab); + QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions")); } void packEventList(EventList *el, EventDataType minval = 0) @@ -2053,7 +2024,7 @@ void MainWindow::on_webView_linkClicked(const QUrl &url) if (s.toLower().startsWith("https:")) { QDesktopServices().openUrl(url); } else { - ui->webView->setUrl(url); + //ui->helpBrowser->setUrl(url); } } @@ -2363,14 +2334,12 @@ void MainWindow::on_actionImport_RemStar_MSeries_Data_triggered() void MainWindow::on_actionSleep_Disorder_Terms_Glossary_triggered() { - ui->webView->load(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary")); - ui->tabWidget->setCurrentWidget(ui->helpTab); + QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary")); } void MainWindow::on_actionHelp_Support_SleepyHead_Development_triggered() { - QUrl url = QUrl("https://sleepyhead.jedimark.net/donate.php"); - QDesktopServices().openUrl(url); + QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php")); } void MainWindow::on_actionChange_Language_triggered() @@ -2440,9 +2409,7 @@ void MainWindow::GenerateStatistics() //QWebFrame *frame=ui->statisticsView->page()->currentFrame(); //frame->addToJavaScriptWindowObject("mainwin",this); //ui->statisticsView->setHtml(html); - MyStatsPage *page = new MyStatsPage(this); - page->currentFrame()->setHtml(html); - ui->statisticsView->setPage(page); + ui->statisticsView->setHtml(html); } diff --git a/sleepyhead/mainwindow.h b/sleepyhead/mainwindow.h index 04fc8756..5e3d6b42 100644 --- a/sleepyhead/mainwindow.h +++ b/sleepyhead/mainwindow.h @@ -11,8 +11,6 @@ #include #include -#include -#include #include #include diff --git a/sleepyhead/mainwindow.ui b/sleepyhead/mainwindow.ui index 1511d59c..2ec364d7 100644 --- a/sleepyhead/mainwindow.ui +++ b/sleepyhead/mainwindow.ui @@ -926,7 +926,7 @@ QTabWidget::Rounded - 0 + 1 false @@ -958,19 +958,7 @@ 0 - - - - 0 - 0 - - - - - about:blank - - - + @@ -1228,31 +1216,7 @@ 0 - - - - 0 - 0 - - - - - 0 - 200 - - - - - 0 - 200 - - - - - qrc:/docs/index.html - - - + @@ -1417,7 +1381,7 @@ QToolBox::tab:selected { 0 0 - 158 + 310 676 @@ -1875,7 +1839,7 @@ border: 2px solid #56789a; border-radius: 30px; 0 0 - 175 + 327 667 @@ -2931,7 +2895,7 @@ p, li { white-space: pre-wrap; } 0 0 - 175 + 327 667 @@ -3417,13 +3381,6 @@ p, li { white-space: pre-wrap; } - - - QWebView - QWidget -
QtWebKitWidgets/QWebView
-
-
diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 41744ffa..da8e584e 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -4,13 +4,11 @@ # #------------------------------------------------- -QT += core gui network xml printsupport serialport +QT += core gui network xml printsupport serialport widgets -greaterThan(QT_MAJOR_VERSION,4) { - QT += widgets webkitwidgets -} else { # qt4 - QT += webkit +lessThan(QT_MAJOR_VERSION,5) { + error("Sorry, need Qt 5 to build SleepyHead"); } #SleepyHead requires OpenGL 2.0 support to run smoothly diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp index f8a1d738..4b20d5fe 100644 --- a/sleepyhead/statistics.cpp +++ b/sleepyhead/statistics.cpp @@ -1,4 +1,4 @@ -/* Statistics Report Generator Implementation +/* Statistics Report Generator Implementation * * Copyright (c) 2011-2018 Mark Watkins * @@ -9,6 +9,7 @@ #include #include #include +#include #include #include "mainwindow.h" @@ -16,6 +17,14 @@ extern MainWindow *mainwin; +QString resizeHTMLPixmap(QPixmap &pixmap, int width, int height) { + QByteArray byteArray; + QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray + buffer.open(QIODevice::WriteOnly); + pixmap.scaled(width, height, Qt::KeepAspectRatio, Qt::SmoothTransformation).save(&buffer, "PNG"); + return QString(""); +} + QString formatTime(float time) { int hours = time; @@ -623,6 +632,8 @@ QString htmlHeader(bool showheader) "" "" ""; + + QPixmap bobPixmap(":/icons/bob-v3.0.png"); if (showheader) { html += "
" "" @@ -630,7 +641,7 @@ QString htmlHeader(bool showheader) "" + STR_TR_SleepyHead + "
" "" + QObject::tr("Usage Statistics") + "" "" - "
"+userinfo+"
" + "
" +resizeHTMLPixmap(bobPixmap,140,140)+"
" "
" "
"; }