New similar looking webkit-less Welcome page

This commit is contained in:
Mark Watkins 2018-05-08 01:11:02 +10:00
parent d77ba9c11b
commit afd74aeff3
8 changed files with 834 additions and 224 deletions

View File

@ -4,6 +4,7 @@
<p version="1.1.0-unstable-0">
<b>Changes and fixes in v1.1.0-unstable-0</b>
<list>
<li>Combined release notes and about into mega dialog, removing Webkit dependence for those parts</li>
<li>Added brand new live Profile switcher and cleaned up a lot of forced restart conditions</li>
<li>[DeVilbiss] Added DV6 Import capability (Thanks Heynes and Brian)</li>
<li>[PR Dreamstation] Added spuport for newer 960T (DF3 F5V3) and 1030 (DFV3 F3V3) machines</li>

View File

@ -494,6 +494,9 @@ void MainWindow::OpenProfile(QString profileName)
qCritical() << "OpenProfile called with active Daily object!";
return;
}
welcome = new Welcome(ui->tabWidget);
ui->tabWidget->insertTab(1, welcome, tr("Welcome"));
daily = new Daily(ui->tabWidget, nullptr);
ui->tabWidget->insertTab(2, daily, STR_TR_Daily);
daily->ReloadGraphs();
@ -535,6 +538,10 @@ void MainWindow::CloseProfile()
delete daily;
daily = nullptr;
}
if (welcome) {
delete welcome;
welcome = nullptr;
}
if (overview) {
delete overview;
overview = nullptr;
@ -605,7 +612,7 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
disconnect(progdlg, SIGNAL(abortClicked()), import.loader, SLOT(abortImport()));
disconnect(import.loader, SIGNAL(updateMessage(QString)), progdlg, SLOT(setMessage(QString)));
progdlg->hide();
progdlg->close();
delete progdlg;
@ -613,7 +620,7 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
ui->tabWidget->setCurrentIndex(AppSetting->openTabAfterImport());
}
qprogress=saveQprogress;
qprogress = saveQprogress;
return c;
}
@ -1117,11 +1124,8 @@ QString MainWindow::getWelcomeHTML()
void MainWindow::on_homeButton_clicked()
{
if (welcome) ui->tabWidget->setCurrentWidget(welcome);
ui->webView->setHtml(getWelcomeHTML());
//QString infourl="qrc:/docs/index.html"; // use this as a fallback
//ui->webView->setUrl(QUrl(infourl));
}
void MainWindow::updateFavourites()
@ -1216,11 +1220,6 @@ void MainWindow::on_dailyButton_clicked()
daily->RedrawGraphs();
}
}
void MainWindow::JumpDaily()
{
on_dailyButton_clicked();
}
void MainWindow::on_overviewButton_clicked()
{
if (overview) {
@ -2447,16 +2446,28 @@ void MainWindow::GenerateStatistics()
page->currentFrame()->setHtml(html);
ui->statisticsView->setPage(page);
}
MyStatsPage *page2 = new MyStatsPage(this);
page2->currentFrame()->setHtml(GenerateWelcomeHTML());
ui->welcomeView->setPage(page2);
// connect(ui->statisticsView->page()->currentFrame(),SIGNAL(javaScriptWindowObjectCleared())
// QString file="qrc:/docs/index.html";
// QUrl url(file);
// ui->webView->setUrl(url);
void MainWindow::JumpDaily()
{
ui->tabWidget->setCurrentWidget(daily);
}
void MainWindow::JumpOverview()
{
ui->tabWidget->setCurrentWidget(overview);
}
void MainWindow::JumpStatistics()
{
ui->tabWidget->setCurrentWidget(ui->statisticsTab);
}
void MainWindow::JumpImport()
{
on_importButton_clicked();
}
void MainWindow::JumpOxiWizard()
{
on_oximetryButton_clicked();
}

View File

@ -18,6 +18,7 @@
#include "daily.h"
#include "overview.h"
#include "welcome.h"
#include "profileselector.h"
#include "preferencesdialog.h"
@ -129,6 +130,10 @@ class MainWindow : public QMainWindow
static void RestartApplication(bool force_login = false, QString cmdline = QString());
void JumpDaily();
void JumpOverview();
void JumpStatistics();
void JumpImport();
void JumpOxiWizard();
void sendStatsUrl(QString msg) { on_recordsBox_linkClicked(QUrl(msg)); }
@ -355,6 +360,7 @@ private:
Daily *daily;
Overview *overview;
ProfileSelector *profileSelector;
Welcome * welcome;
bool first_load;
PreferencesDialog *prefdialog;
QTime logtime;

View File

@ -937,43 +937,6 @@
<property name="movable">
<bool>false</bool>
</property>
<widget class="QWidget" name="welcomeTab">
<attribute name="title">
<string>Welcome</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_8">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QWebView" name="welcomeView" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="url" stdset="0">
<url>
<string>about:blank</string>
</url>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="statisticsTab">
<attribute name="title">
<string>&amp;Statistics</string>

View File

@ -155,7 +155,6 @@ SOURCES += \
SleepLib/loader_plugins/md300w1_loader.cpp \
Graphs/gSessionTimesChart.cpp \
logger.cpp \
welcome.cpp \
SleepLib/machine_common.cpp \
SleepLib/loader_plugins/weinmann_loader.cpp \
Graphs/gdailysummary.cpp \
@ -165,7 +164,8 @@ SOURCES += \
SleepLib/loader_plugins/cms50f37_loader.cpp \
profileselector.cpp \
SleepLib/loader_plugins/edfparser.cpp \
aboutdialog.cpp
aboutdialog.cpp \
welcome.cpp
HEADERS += \
common_gui.h \
@ -231,7 +231,8 @@ HEADERS += \
profileselector.h \
SleepLib/appsettings.h \
SleepLib/loader_plugins/edfparser.h \
aboutdialog.h
aboutdialog.h \
welcome.h
FORMS += \
daily.ui \
@ -246,7 +247,8 @@ FORMS += \
UpdaterWindow.ui \
oximeterimport.ui \
profileselector.ui \
aboutdialog.ui
aboutdialog.ui \
welcome.ui
RESOURCES += \
Resources.qrc

View File

@ -1,28 +1,75 @@
/* Welcome Page Implementation
*
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#include "welcome.h"
#include "ui_welcome.h"
#include "mainwindow.h"
extern MainWindow * mainwin;
#include <QString>
#include <QApplication>
#include <QFont>
#include <cmath>
#include "SleepLib/profiles.h"
Welcome::Welcome(QWidget *parent) :
QWidget(parent),
ui(new Ui::Welcome)
{
ui->setupUi(this);
if (!p_profile) {
return;
}
// The SDCard warning does not need to be seen anymore for people who DON'T use ResMed S9's.. show first import and only when S9 is present
const auto & mlist = p_profile->GetMachines(MT_CPAP);
bool showCardWarning = (mlist.size() == 0);
for (auto & mach :mlist) {
if (mach->series().compare("S9") == 0) showCardWarning = true;
}
ui->S9Warning->setVisible(showCardWarning);
ui->cpapInfo->setHtml(GenerateCPAPHTML());
ui->oxiInfo->setHtml(GenerateOxiHTML());
}
Welcome::~Welcome()
{
delete ui;
}
void Welcome::on_dailyButton_clicked()
{
mainwin->JumpDaily();
}
void Welcome::on_overviewButton_clicked()
{
mainwin->JumpOverview();
}
void Welcome::on_statisticsButton_clicked()
{
mainwin->JumpStatistics();
}
void Welcome::on_oximetryButton_clicked()
{
mainwin->JumpOxiWizard();
}
void Welcome::on_importButton_clicked()
{
mainwin->JumpImport();
}
// Pinching a few compounded functions from statistics that may come in useful here
extern EventDataType calcAHI(QDate start, QDate end);
extern EventDataType calcFL(QDate start, QDate end);
QString GenerateWelcomeHTML()
QString Welcome::GenerateCPAPHTML()
{
QList<Machine *> cpap_machines = p_profile->GetMachines(MT_CPAP);
QList<Machine *> oximeters = p_profile->GetMachines(MT_OXIMETER);
auto cpap_machines = p_profile->GetMachines(MT_CPAP);
auto oximeters = p_profile->GetMachines(MT_OXIMETER);
QList<Machine *> mach;
mach.append(cpap_machines);
@ -30,15 +77,16 @@ QString GenerateWelcomeHTML()
bool havecpapdata = false;
bool haveoximeterdata = false;
for (int i=0; i < cpap_machines.size(); ++i) {
int daysize = cpap_machines[i]->day.size();
for (auto & mach : cpap_machines) {
int daysize = mach->day.size();
if (daysize > 0) {
havecpapdata = true;
break;
}
}
for (int i=0; i < oximeters.size(); ++i) {
int daysize = oximeters[i]->day.size();
for (auto & mach : oximeters) {
int daysize = mach->day.size();
if (daysize > 0) {
haveoximeterdata = true;
break;
@ -51,95 +99,14 @@ QString GenerateWelcomeHTML()
"<style type='text/css'>"
"p,a,td,body { font-family: '"+QApplication::font().family()+"'; }"
"p,a,td,body { font-size: "+QString::number(QApplication::font().pointSize() + 2)+"px; }"
"table.curved {"
"border: 1px solid gray;"
"border-radius:10px;"
"-moz-border-radius:10px;"
"-webkit-border-radius:10px;"
"page-break-after:auto;"
"-fs-table-paginate: paginate;"
"}"
"table.curved2 {"
"border: 1px solid gray;"
"border-radius:10px;"
"background:#ffffc0;"
"-moz-border-radius:10px;"
"-webkit-border-radius:10px;"
"page-break-after:auto;"
"-fs-table-paginate: paginate;"
"}"
"tr.datarow:nth-child(even) {"
"background-color: #f8f8f8;"
"}"
"table { page-break-after:auto; -fs-table-paginate: paginate; }"
"tr { page-break-inside:avoid; page-break-after:auto }"
"td { page-break-inside:avoid; page-break-after:auto }"
"thead { display:table-header-group; }"
"tfoot { display:table-footer-group; }"
"</style>"
"<link rel='stylesheet' type='text/css' href='qrc:/docs/tooltips.css' />"
"<script type='text/javascript'>"
"function ChangeColor(tableRow, highLight)"
"{ tableRow.style.backgroundColor = highLight; }"
"function Go(url) { throw(url); }"
"</script>"
"</head>"
"<body leftmargin=0 topmargin=5 rightmargin=0>";
html += "<div align=center><table border=0 height=100% width=99%>";
html += QString("<tr><td colspan=4 align=center>") +
"<img src='qrc:/icons/bob-v3.0.png' height=100px>"
"<h1>" + QObject::tr("Welcome to SleepyHead") + "</h1>" +
"<table cellpadding=4 border=0>";
int cols=2;
if (havecpapdata || haveoximeterdata) cols=6;
html+=QString("<tr><td colspan=%1 align=center>").arg(cols)+
"<font size=+1>"+((havecpapdata || haveoximeterdata) ? QObject::tr("What would you like to do?") : QObject::tr("Please Import Some Data")) +"</font></td>"
"</tr>"
"<tr>"
" <td align=center>"
" <table class=curved cellpadding=4>"
" <tr><td align=center onmouseover='ChangeColor(this, \"#eeeeee\");' onmouseout='ChangeColor(this, \"#ffffff\");' onclick='alert(\"import=cpap\");'><font size=+1><img src='qrc:/icons/sdcard.png' width=100px><br/>" + QObject::tr("CPAP<br/>Importer")+"</font></td></tr>"
" </table>"
" </td>"
"<td align=center>"
" <table class=curved cellpadding=4>"
" <tr><td align=center onmouseover='ChangeColor(this, \"#eeeeee\");' onmouseout='ChangeColor(this, \"#ffffff\");' onclick='alert(\"import=oximeter\");'><font size=+1><img src='qrc:/icons/cms50f.png' width=100px><br/>" + QObject::tr("Oximetery<br/>Wizard")+"</font></td></tr>"
" </table>"
"</td>";
if (havecpapdata || haveoximeterdata) {
html += "<td align=center><font size=+2>"+QObject::tr("or")+"</font></td>"
"<td align=center>"
" <table class=curved cellpadding=4>"
" <tr><td align=center onmouseover='ChangeColor(this, \"#eeeeee\");' onmouseout='ChangeColor(this, \"#ffffff\");' onclick='alert(\"statistics=1\");'><font size=+1><img src='qrc:/icons/statistics.png' width=100px><br/>" + QObject::tr("View<br/>Statistics")+"</font></td></tr>"
" </table>"
"</td>"
"<td align=center>"
" <table class=curved cellpadding=4>"
" <tr><td align=center onmouseover='ChangeColor(this, \"#eeeeee\");' onmouseout='ChangeColor(this, \"#ffffff\");' onclick='alert(\"daily=1\");'><font size=+1><img src='qrc:/icons/daily.png' width=100px><br/>" + QObject::tr("View<br/>Daily")+"</font></td></tr>"
" </table>"
"</td>"
"<td align=center>"
" <table class=curved cellpadding=4>"
" <tr><td align=center onmouseover='ChangeColor(this, \"#eeeeee\");' onmouseout='ChangeColor(this, \"#ffffff\");' onclick='alert(\"overview=1\");'><font size=+1><img src='qrc:/icons/overview-page.png' width=100px><br/>" + QObject::tr("View<br/>Overview")+"</font></td></tr>"
" </table>"
"</td>";
}
html += "</tr></table>";
"<body leftmargin=5 topmargin=5 rightmargin=5 bottommargin=5 valign=center align=center>";
Machine * cpap = nullptr;
if (!havecpapdata && !haveoximeterdata) {
html += "<p>" + QObject::tr("It might be a good idea to check preferences first,</br>as there are some options that affect import.")+"</p>"
"<p>" + QObject::tr("First import can take a few minutes.") + "</p>";
html += "<p>" + tr("It might be a good idea to check preferences first,</br>as there are some options that affect import.")+"</p>"
"<p>" + tr("First import can take a few minutes.") + "</p>";
} else {
QDate date = p_profile->LastDay(MT_CPAP);
Day *day = p_profile->GetDay(date, MT_CPAP);
@ -148,22 +115,19 @@ QString GenerateWelcomeHTML()
cpap = day->machine(MT_CPAP);
}
if (day && (cpap != nullptr)) {
QString cpapimage = "qrc"+cpap->getPixmapPath();
QString cpapimage = cpap->getPixmapPath();
ui->cpapIcon->setPixmap(QPixmap(cpapimage));
html += "<table cellpadding=4><tr><td><img src='"+cpapimage+"' width=160px><br/>";
html+="</td><td align=center><table cellpadding=4 class=curved2 title=\""+QObject::tr("Click this box to see this in daily view.")+"\"><tr>"+
QString("<td align=center onmouseover='ChangeColor(this, \"#efefa0\");' onmouseout='ChangeColor(this, \"#ffffc0\");' onclick='alert(\"daily=%1\");'>").arg(date.toString(Qt::ISODate))+"<b>"+
QObject::tr("The last time you used your %1...").arg(cpap->brand()+" "+cpap->series()+" "+cpap->model())+"</b><br/>";
html+= "<b>"+tr("The last time you used your %1...").arg(cpap->brand()+" "+cpap->series()+" "+cpap->model())+"</b><br/>";
int daysto = date.daysTo(QDate::currentDate());
QString daystring;
if (daysto == 1) daystring += QObject::tr("last night");
else if (daysto == 2) daystring += QObject::tr("yesterday");
else daystring += QObject::tr("%2 days ago").arg(date.daysTo(QDate::currentDate()));
if (daysto == 1) daystring += tr("last night");
else if (daysto == 2) daystring += tr("yesterday");
else daystring += tr("%2 days ago").arg(date.daysTo(QDate::currentDate()));
html += QObject::tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "<br/>";
html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "<br/>";
EventDataType hours = day->hours();
html += "<br/>";
@ -171,11 +135,11 @@ QString GenerateWelcomeHTML()
int seconds = int(hours * 3600.0) % 60;
int minutes = int(hours * 60) % 60;
int hour = hours;
QString timestr = QObject::tr("%1 hours, %2 minutes and %3 seconds").arg(hour).arg(minutes).arg(seconds);
QString timestr = tr("%1 hours, %2 minutes and %3 seconds").arg(hour).arg(minutes).arg(seconds);
const EventDataType compliance_min = 4.0;
if (hours > compliance_min) html += QObject::tr("Your machine was on for %1.").arg(timestr)+"<br/>";
else html += QObject::tr("<font color = red>You only had the mask on for %1.</font>").arg(timestr)+"<br/>";
if (hours > compliance_min) html += tr("Your machine was on for %1.").arg(timestr)+"<br/>";
else html += tr("<font color = red>You only had the mask on for %1.</font>").arg(timestr)+"<br/>";
int averagedays = 7; // how many days to look back
@ -186,10 +150,10 @@ QString GenerateWelcomeHTML()
EventDataType ahi = (day->count(CPAP_Obstructive) + day->count(CPAP_Hypopnea) + day->count(CPAP_ClearAirway) + day->count(CPAP_Apnea)) / hours;
EventDataType ahidays = calcAHI(starttime, date);
const QString under = QObject::tr("under");
const QString over = QObject::tr("over");
const QString close = QObject::tr("reasonably close to");
const QString equal = QObject::tr("equal to");
const QString under = tr("under");
const QString over = tr("over");
const QString close = tr("reasonably close to");
const QString equal = tr("equal to");
QString comp;
@ -203,7 +167,7 @@ QString GenerateWelcomeHTML()
comp = equal;
}
html += QObject::tr("You had an AHI of %1, which is <b>%2</b> your %3 day average of %4.").arg(ahi,0,'f',2).arg(comp).arg(averagedays).arg(ahidays,0,'f',2);
html += tr("You had an AHI of %1, which is <b>%2</b> your %3 day average of %4.").arg(ahi,0,'f',2).arg(comp).arg(averagedays).arg(ahidays,0,'f',2);
html += "<br/>";
@ -212,30 +176,30 @@ QString GenerateWelcomeHTML()
if (cpapmode == MODE_CPAP) {
EventDataType pressure = day->settings_max(CPAP_Pressure);
html += QObject::tr("Your CPAP machine blasted you with a constant %1%2 of air").arg(pressure).arg(schema::channel[CPAP_Pressure].units());
html += tr("Your CPAP machine blasted you with a constant %1%2 of air").arg(pressure).arg(schema::channel[CPAP_Pressure].units());
} else if (cpapmode == MODE_APAP) {
EventDataType pressure = day->percentile(CPAP_Pressure, perc/100.0);
html += QObject::tr("Your pressure was under %1%2 for %3% of the time.").arg(pressure).arg(schema::channel[CPAP_Pressure].units()).arg(perc);
html += tr("Your pressure was under %1%2 for %3% of the time.").arg(pressure).arg(schema::channel[CPAP_Pressure].units()).arg(perc);
} else if (cpapmode == MODE_BILEVEL_FIXED) {
EventDataType ipap = day->settings_max(CPAP_IPAP);
EventDataType epap = day->settings_min(CPAP_EPAP);
html += QObject::tr("Your machine blasted you with a constant %1-%2 %3 of air.").arg(epap).arg(ipap).arg(schema::channel[CPAP_Pressure].units());
html += tr("Your machine blasted you with a constant %1-%2 %3 of air.").arg(epap).arg(ipap).arg(schema::channel[CPAP_Pressure].units());
} else if (cpapmode == MODE_BILEVEL_AUTO_FIXED_PS) {
EventDataType ipap = day->percentile(CPAP_IPAP, perc/100.0);
EventDataType epap = day->percentile(CPAP_EPAP, perc/100.0);
html += QObject::tr("Your machine was under %1-%2 %3 for %4% of the time.").arg(epap).arg(ipap).arg(schema::channel[CPAP_Pressure].units()).arg(perc);
html += tr("Your machine was under %1-%2 %3 for %4% of the time.").arg(epap).arg(ipap).arg(schema::channel[CPAP_Pressure].units()).arg(perc);
} else if (cpapmode == MODE_ASV){
EventDataType ipap = day->percentile(CPAP_IPAP, perc/100.0);
EventDataType epap = qRound(day->settings_wavg(CPAP_EPAP));
html += QObject::tr("Your EPAP pressure fixed at %1%2.").arg(epap).arg(schema::channel[CPAP_EPAP].units())+"<br/>";
html += QObject::tr("Your IPAP pressure was under %1%2 for %3% of the time.").arg(ipap).arg(schema::channel[CPAP_IPAP].units()).arg(perc);
html += tr("Your EPAP pressure fixed at %1%2.").arg(epap).arg(schema::channel[CPAP_EPAP].units())+"<br/>";
html += tr("Your IPAP pressure was under %1%2 for %3% of the time.").arg(ipap).arg(schema::channel[CPAP_IPAP].units()).arg(perc);
} else if (cpapmode == MODE_ASV_VARIABLE_EPAP){
EventDataType ipap = day->percentile(CPAP_IPAP, perc/100.0);
EventDataType epap = day->percentile(CPAP_EPAP, perc/100.0);
html += QObject::tr("Your EPAP pressure was under %1%2 for %3% of the time.").arg(epap).arg(schema::channel[CPAP_EPAP].units()).arg(perc)+"<br/>";
html += QObject::tr("Your IPAP pressure was under %1%2 for %3% of the time.").arg(ipap).arg(schema::channel[CPAP_IPAP].units()).arg(perc);
html += tr("Your EPAP pressure was under %1%2 for %3% of the time.").arg(epap).arg(schema::channel[CPAP_EPAP].units()).arg(perc)+"<br/>";
html += tr("Your IPAP pressure was under %1%2 for %3% of the time.").arg(ipap).arg(schema::channel[CPAP_IPAP].units()).arg(perc);
}
html += "<br/>";
@ -255,43 +219,17 @@ QString GenerateWelcomeHTML()
comp = equal;
}
html += QObject::tr("Your average leaks were %1 %2, which is <b>%3</b> your %4 day average of %5.").arg(leak,0,'f',2).arg(schema::channel[CPAP_Leak].units()).arg(comp).arg(averagedays).arg(leakdays,0,'f',2);
html += tr("Your average leaks were %1 %2, which is <b>%3</b> your %4 day average of %5.").arg(leak,0,'f',2).arg(schema::channel[CPAP_Leak].units()).arg(comp).arg(averagedays).arg(leakdays,0,'f',2);
html += "<br/>";
html += "</td></tr></table></td></tr></table>";
} else {
html += "<p>"+QObject::tr("No CPAP data has been imported yet.")+"</p>";
html += "<p>"+tr("No CPAP data has been imported yet.")+"</p>";
}
if (haveoximeterdata) {
QDate oxidate=p_profile->LastDay(MT_OXIMETER);
int daysto = oxidate.daysTo(QDate::currentDate());
html += "<p>"+QObject::tr("Most recent Oximetery data: <a onclick='alert(\"daily=%2\");'>%1</a> ").arg(oxidate.toString(Qt::SystemLocaleLongDate)).arg(oxidate.toString(Qt::ISODate));
if (daysto == 1) html += QObject::tr("(last night)");
else if (daysto == 2) html += QObject::tr("(yesterday)");
else html += QObject::tr("(%2 day ago)").arg(oxidate.daysTo(QDate::currentDate()));
html+="</p>";
} else {
html += "<p>"+QObject::tr("No oximetery data has been imported yet.")+"</p>";
}
}
// The SDCard warning does not need to be seen anymore for people who DON'T use ResMed S9's.. show first import and only when S9 is present
bool showCardWarning = (cpap == nullptr);
QList<Machine *> mlist = p_profile->GetMachines(MT_CPAP);
for (int i=0; i<mlist.size(); ++i) {
Machine *mach = mlist.at(i);
if (mach->series().compare("S9") == 0) showCardWarning = true;
}
if (showCardWarning) {
html += QString("<div align=center><table class=curved cellpadding=3 width=75%>")+
/* html += QString("<div align=center><table class=curved cellpadding=3 width=75%>")+
"<tr>"
"<td align=center colspan=2><b>"+QObject::tr("Very Important Warning For ResMed S9 Users")+"</b></font></td></tr>"
"<tr><td align=center>"+
@ -303,12 +241,56 @@ QString GenerateWelcomeHTML()
"<td><img src=\"qrc:/icons/sdcard-lock.png\" width=64px></td>"
"</tr>"
"</table>"
"</td></tr></table></div>";
} else {
}
"</td></tr></table></div>";*/
// } else {
// }
html += "<script type='text/javascript' language='javascript' src='qrc:/docs/script.js'></script>"
"</body></html>";
html += "</body></html>";
return html;
}
QString Welcome::GenerateOxiHTML()
{
auto oximeters = p_profile->GetMachines(MT_OXIMETER);
bool haveoximeterdata = false;
for (auto & mach : oximeters) {
int daysize = mach->day.size();
if (daysize > 0) {
haveoximeterdata = true;
break;
}
}
QString html = QString("<html><head>")+
"</head>"
"<style type='text/css'>"
"p,a,td,body { font-family: '"+QApplication::font().family()+"'; }"
"p,a,td,body { font-size: "+QString::number(QApplication::font().pointSize() + 2)+"px; }"
"</style>"
"</head>"
"<body leftmargin=5 topmargin=5 rightmargin=5 bottommargin=5 valign=center align=center>";
if (haveoximeterdata) {
QDate oxidate=p_profile->LastDay(MT_OXIMETER);
int daysto = oxidate.daysTo(QDate::currentDate());
html += "<p>"+QObject::tr("Most recent Oximetery data: <a onclick='alert(\"daily=%2\");'>%1</a> ").arg(oxidate.toString(Qt::SystemLocaleLongDate)).arg(oxidate.toString(Qt::ISODate));
if (daysto == 1) html += QObject::tr("(last night)");
else if (daysto == 2) html += QObject::tr("(yesterday)");
else html += QObject::tr("(%2 day ago)").arg(oxidate.daysTo(QDate::currentDate()));
html+="</p>";
ui->oxiIcon->setVisible(true);
ui->oxiInfo->setVisible(true);
} else {
html += "<p>"+QObject::tr("No oximetery data has been imported yet.")+"</p>";
ui->oxiIcon->setVisible(false);
ui->oxiInfo->setVisible(false);
}
html += "</body></html>";
return html;
}

35
sleepyhead/welcome.h Normal file
View File

@ -0,0 +1,35 @@
#ifndef WELCOME_H
#define WELCOME_H
#include <QWidget>
namespace Ui {
class Welcome;
}
class Welcome : public QWidget
{
Q_OBJECT
public:
explicit Welcome(QWidget *parent = 0);
~Welcome();
private slots:
void on_dailyButton_clicked();
void on_overviewButton_clicked();
void on_statisticsButton_clicked();
void on_oximetryButton_clicked();
void on_importButton_clicked();
private:
QString GenerateCPAPHTML();
QString GenerateOxiHTML();
Ui::Welcome *ui;
};
#endif // WELCOME_H

610
sleepyhead/welcome.ui Normal file
View File

@ -0,0 +1,610 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Welcome</class>
<widget class="QWidget" name="Welcome">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>965</width>
<height>719</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label">
<property name="minimumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="pixmap">
<pixmap resource="Resources.qrc">:/icons/bob-v3.0.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_4">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<widget class="QLabel" name="label_2">
<property name="font">
<font>
<pointsize>15</pointsize>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Welcome To SleepyHead</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="font">
<font>
<pointsize>11</pointsize>
</font>
</property>
<property name="text">
<string>What would you like to do?</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>10</number>
</property>
<item>
<spacer name="horizontalSpacer_5">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QToolButton" name="importButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background: transparent;
border: 2px solid transparent; border-radius: 10px;
}
QToolButton:hover {
border: 2px solid #56789a; border-radius: 10px;
}
QToolButton:pressed {
background-color: #8080ff;
border: 2px solid #56789a; border-radius: 10px;
}</string>
</property>
<property name="text">
<string>CPAP Importer</string>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/sdcard.png</normaloff>:/icons/sdcard.png</iconset>
</property>
<property name="iconSize">
<size>
<width>100</width>
<height>100</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="oximetryButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background: transparent;
border: 2px solid transparent; border-radius: 10px;
}
QToolButton:hover {
border: 2px solid #56789a; border-radius: 10px;
}
QToolButton:pressed {
background-color: #8080ff;
border: 2px solid #56789a; border-radius: 10px;
}</string>
</property>
<property name="text">
<string>Oximetry Wizard</string>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/cms50f.png</normaloff>:/icons/cms50f.png</iconset>
</property>
<property name="iconSize">
<size>
<width>100</width>
<height>100</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>or</string>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="dailyButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background: transparent;
border: 2px solid transparent; border-radius: 10px;
}
QToolButton:hover {
border: 2px solid #56789a; border-radius: 10px;
}
QToolButton:pressed {
background-color: #8080ff;
border: 2px solid #56789a; border-radius: 10px;
}</string>
</property>
<property name="text">
<string>View Daily</string>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/daily.png</normaloff>:/icons/daily.png</iconset>
</property>
<property name="iconSize">
<size>
<width>100</width>
<height>100</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="overviewButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background: transparent;
border: 2px solid transparent; border-radius: 10px;
}
QToolButton:hover {
border: 2px solid #56789a; border-radius: 10px;
}
QToolButton:pressed {
background-color: #8080ff;
border: 2px solid #56789a; border-radius: 10px;
}</string>
</property>
<property name="text">
<string>View Overview</string>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/overview-page.png</normaloff>:/icons/overview-page.png</iconset>
</property>
<property name="iconSize">
<size>
<width>100</width>
<height>100</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="statisticsButton">
<property name="styleSheet">
<string notr="true">QToolButton {
background: transparent;
border: 2px solid transparent; border-radius: 10px;
}
QToolButton:hover {
border: 2px solid #56789a; border-radius: 10px;
}
QToolButton:pressed {
background-color: #8080ff;
border: 2px solid #56789a; border-radius: 10px;
}</string>
</property>
<property name="text">
<string>View Statistics</string>
</property>
<property name="icon">
<iconset resource="Resources.qrc">
<normaloff>:/icons/statistics.png</normaloff>:/icons/statistics.png</iconset>
</property>
<property name="iconSize">
<size>
<width>100</width>
<height>100</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="autoRaise">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_6">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<widget class="QFrame" name="frame">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<property name="lineWidth">
<number>2</number>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLabel" name="cpapIcon">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="pixmap">
<pixmap resource="Resources.qrc">:/icons/mask.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QTextBrowser" name="cpapInfo">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>150</height>
</size>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true">border: 1px solid; border-radius:20px; background-color: palette(base); </string>
</property>
<property name="verticalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="horizontalScrollBarPolicy">
<enum>Qt::ScrollBarAlwaysOff</enum>
</property>
<property name="sizeAdjustPolicy">
<enum>QAbstractScrollArea::AdjustToContents</enum>
</property>
<property name="html">
<string notr="true">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8.25pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_4">
<item>
<widget class="QLabel" name="oxiIcon">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>128</width>
<height>128</height>
</size>
</property>
<property name="text">
<string notr="true"/>
</property>
<property name="pixmap">
<pixmap resource="Resources.qrc">:/icons/oximeter.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item>
<widget class="QTextBrowser" name="oxiInfo">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>150</height>
</size>
</property>
<property name="font">
<font>
<pointsize>10</pointsize>
</font>
</property>
<property name="styleSheet">
<string notr="true">border: 1px solid; border-radius:20px; background-color: palette(base); </string>
</property>
<property name="sizeAdjustPolicy">
<enum>QAbstractScrollArea::AdjustToContents</enum>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QFrame" name="S9Warning">
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QLabel" name="label_5">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>40</width>
<height>40</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>40</width>
<height>40</height>
</size>
</property>
<property name="text">
<string/>
</property>
<property name="pixmap">
<pixmap resource="Resources.qrc">:/icons/sdcard-lock.png</pixmap>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_6">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;Warning: &lt;/span&gt;&lt;span style=&quot; font-size:10pt; color:#ff0000;&quot;&gt;ResMed S9 SDCards &lt;/span&gt;&lt;span style=&quot; font-size:10pt; font-weight:600; color:#ff0000;&quot;&gt;need &lt;/span&gt;&lt;span style=&quot; font-size:10pt; color:#ff0000;&quot;&gt;to be locked &lt;/span&gt;&lt;span style=&quot; font-size:10pt; font-weight:600; color:#ff0000;&quot;&gt;before &lt;/span&gt;&lt;span style=&quot; font-size:10pt; color:#ff0000;&quot;&gt;inserting into your computer&lt;br/&gt;&lt;/span&gt;&lt;span style=&quot; font-size:10pt; color:#000000;&quot;&gt;Some operating systems write cache files which break their special filesystem Journal&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<resources>
<include location="Resources.qrc"/>
</resources>
<connections/>
</ui>