diff --git a/sleepyhead/docs/release_notes.html b/sleepyhead/docs/release_notes.html index 1ddbae1b..91d273b0 100644 --- a/sleepyhead/docs/release_notes.html +++ b/sleepyhead/docs/release_notes.html @@ -4,6 +4,7 @@

Changes and fixes in v1.1.0-unstable-0 +

  • Combined release notes and about into mega dialog, removing Webkit dependence for those parts
  • 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 8380ec78..0af8f050 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -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(); } diff --git a/sleepyhead/mainwindow.h b/sleepyhead/mainwindow.h index e092b229..f1660abe 100644 --- a/sleepyhead/mainwindow.h +++ b/sleepyhead/mainwindow.h @@ -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; diff --git a/sleepyhead/mainwindow.ui b/sleepyhead/mainwindow.ui index 869903c8..fc848706 100644 --- a/sleepyhead/mainwindow.ui +++ b/sleepyhead/mainwindow.ui @@ -937,43 +937,6 @@ false - - - Welcome - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - - about:blank - - - - - - &Statistics diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 561ba41b..41744ffa 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -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 diff --git a/sleepyhead/welcome.cpp b/sleepyhead/welcome.cpp index 24627ad5..60a467c4 100644 --- a/sleepyhead/welcome.cpp +++ b/sleepyhead/welcome.cpp @@ -1,28 +1,75 @@ -/* Welcome Page Implementation - * - * Copyright (c) 2011-2018 Mark Watkins - * - * 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 -#include -#include -#include -#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 cpap_machines = p_profile->GetMachines(MT_CPAP); - QList oximeters = p_profile->GetMachines(MT_OXIMETER); + auto cpap_machines = p_profile->GetMachines(MT_CPAP); + auto oximeters = p_profile->GetMachines(MT_OXIMETER); QList 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() "" - "" - "" "" - ""; - - html += "
    "; - html += QString("
    ") + - "" - - "

    " + QObject::tr("Welcome to SleepyHead") + "

    " + - - ""; - - int cols=2; - if (havecpapdata || haveoximeterdata) cols=6; - - - html+=QString("" - "" - "" - " " - ""; - if (havecpapdata || haveoximeterdata) { - html += "" - "" - "" - ""; - - } - html += "
    ").arg(cols)+ - ""+((havecpapdata || haveoximeterdata) ? QObject::tr("What would you like to do?") : QObject::tr("Please Import Some Data")) +"
    " - " " - " " - "

    " + QObject::tr("CPAP
    Importer")+"
    " - "
    " - " " - " " - "

    " + QObject::tr("Oximetery
    Wizard")+"
    " - "
    "+QObject::tr("or")+"" - " " - " " - "

    " + QObject::tr("View
    Statistics")+"
    " - "
    " - " " - " " - "

    " + QObject::tr("View
    Daily")+"
    " - "
    " - " " - " " - "

    " + QObject::tr("View
    Overview")+"
    " - "
    "; + ""; Machine * cpap = nullptr; if (!havecpapdata && !haveoximeterdata) { - html += "

    " + QObject::tr("It might be a good idea to check preferences first,
    as there are some options that affect import.")+"

    " - "

    " + QObject::tr("First import can take a few minutes.") + "

    "; + html += "

    " + tr("It might be a good idea to check preferences first,
    as there are some options that affect import.")+"

    " + "

    " + tr("First import can take a few minutes.") + "

    "; } 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 += "

    "; - - html+="
    "+ - QString("
    ").arg(date.toString(Qt::ISODate))+""+ - QObject::tr("The last time you used your %1...").arg(cpap->brand()+" "+cpap->series()+" "+cpap->model())+"
    "; + html+= ""+tr("The last time you used your %1...").arg(cpap->brand()+" "+cpap->series()+" "+cpap->model())+"
    "; 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)) + "
    "; + html += tr("was %1 (on %2)").arg(daystring).arg(date.toString(Qt::SystemLocaleLongDate)) + "
    "; EventDataType hours = day->hours(); html += "
    "; @@ -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)+"
    "; - else html += QObject::tr("You only had the mask on for %1.").arg(timestr)+"
    "; + if (hours > compliance_min) html += tr("Your machine was on for %1.").arg(timestr)+"
    "; + else html += tr("You only had the mask on for %1.").arg(timestr)+"
    "; 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 %2 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 %2 your %3 day average of %4.").arg(ahi,0,'f',2).arg(comp).arg(averagedays).arg(ahidays,0,'f',2); html += "
    "; @@ -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())+"
    "; - 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())+"
    "; + 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)+"
    "; - 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)+"
    "; + 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 += "
    "; @@ -255,43 +219,17 @@ QString GenerateWelcomeHTML() comp = equal; } - html += QObject::tr("Your average leaks were %1 %2, which is %3 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 %3 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 += "
    "; - html += "
    "; } else { - html += "

    "+QObject::tr("No CPAP data has been imported yet.")+"

    "; + html += "

    "+tr("No CPAP data has been imported yet.")+"

    "; } - if (haveoximeterdata) { - QDate oxidate=p_profile->LastDay(MT_OXIMETER); - int daysto = oxidate.daysTo(QDate::currentDate()); - - html += "

    "+QObject::tr("Most recent Oximetery data: %1 ").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+="

    "; - } else { - html += "

    "+QObject::tr("No oximetery data has been imported yet.")+"

    "; - } - } - - // 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 mlist = p_profile->GetMachines(MT_CPAP); - for (int i=0; iseries().compare("S9") == 0) showCardWarning = true; - } - - - if (showCardWarning) { - html += QString("
    ")+ +/* html += QString("
    ")+ "" "" "" "" "
    "+QObject::tr("Very Important Warning For ResMed S9 Users")+"
    "+ @@ -303,12 +241,56 @@ QString GenerateWelcomeHTML() "
    " - "
    "; - } else { - } + "";*/ +// } else { + // } - html += "" - ""; + 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("")+ + "" + "" + "" + ""; + + if (haveoximeterdata) { + QDate oxidate=p_profile->LastDay(MT_OXIMETER); + int daysto = oxidate.daysTo(QDate::currentDate()); + + html += "

    "+QObject::tr("Most recent Oximetery data: %1 ").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+="

    "; + ui->oxiIcon->setVisible(true); + ui->oxiInfo->setVisible(true); + } else { + html += "

    "+QObject::tr("No oximetery data has been imported yet.")+"

    "; + ui->oxiIcon->setVisible(false); + ui->oxiInfo->setVisible(false); + } + + html += ""; return html; } diff --git a/sleepyhead/welcome.h b/sleepyhead/welcome.h new file mode 100644 index 00000000..122f5ab2 --- /dev/null +++ b/sleepyhead/welcome.h @@ -0,0 +1,35 @@ +#ifndef WELCOME_H +#define WELCOME_H + +#include + +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 diff --git a/sleepyhead/welcome.ui b/sleepyhead/welcome.ui new file mode 100644 index 00000000..5e876213 --- /dev/null +++ b/sleepyhead/welcome.ui @@ -0,0 +1,610 @@ + + + Welcome + + + + 0 + 0 + 965 + 719 + + + + Form + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 128 + 128 + + + + + 128 + 128 + + + + + + + :/icons/bob-v3.0.png + + + true + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + 15 + 75 + true + + + + Welcome To SleepyHead + + + Qt::AlignCenter + + + + + + + + 11 + + + + What would you like to do? + + + Qt::AlignCenter + + + + + + + 10 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + 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; +} + + + CPAP Importer + + + + :/icons/sdcard.png:/icons/sdcard.png + + + + 100 + 100 + + + + Qt::ToolButtonTextUnderIcon + + + 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; +} + + + Oximetry Wizard + + + + :/icons/cms50f.png:/icons/cms50f.png + + + + 100 + 100 + + + + Qt::ToolButtonTextUnderIcon + + + true + + + + + + + + 0 + 0 + + + + or + + + + + + + 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; +} + + + View Daily + + + + :/icons/daily.png:/icons/daily.png + + + + 100 + 100 + + + + Qt::ToolButtonTextUnderIcon + + + 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; +} + + + View Overview + + + + :/icons/overview-page.png:/icons/overview-page.png + + + + 100 + 100 + + + + Qt::ToolButtonTextUnderIcon + + + 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; +} + + + View Statistics + + + + :/icons/statistics.png:/icons/statistics.png + + + + 100 + 100 + + + + Qt::ToolButtonTextUnderIcon + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + 2 + + + + + + + + + 0 + 0 + + + + + 128 + 128 + + + + + 128 + 128 + + + + + + + :/icons/mask.png + + + true + + + + + + + + 0 + 0 + + + + + 16777215 + 150 + + + + + 10 + + + + border: 1px solid; border-radius:20px; background-color: palette(base); + + + Qt::ScrollBarAlwaysOff + + + Qt::ScrollBarAlwaysOff + + + QAbstractScrollArea::AdjustToContents + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-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;"><br /></p></body></html> + + + + + + + + + + + + 0 + 0 + + + + + 128 + 128 + + + + + 128 + 128 + + + + + + + :/icons/oximeter.png + + + true + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + + 16777215 + 150 + + + + + 10 + + + + border: 1px solid; border-radius:20px; background-color: palette(base); + + + QAbstractScrollArea::AdjustToContents + + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + 0 + 0 + + + + + 40 + 40 + + + + + 40 + 40 + + + + + + + :/icons/sdcard-lock.png + + + true + + + + + + + <html><head/><body><p align="center"><span style=" font-size:10pt; font-weight:600;">Warning: </span><span style=" font-size:10pt; color:#ff0000;">ResMed S9 SDCards </span><span style=" font-size:10pt; font-weight:600; color:#ff0000;">need </span><span style=" font-size:10pt; color:#ff0000;">to be locked </span><span style=" font-size:10pt; font-weight:600; color:#ff0000;">before </span><span style=" font-size:10pt; color:#ff0000;">inserting into your computer<br/></span><span style=" font-size:10pt; color:#000000;">Some operating systems write cache files which break their special filesystem Journal</span></p></body></html> + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + +