More SleepyHead->OSCR, and remove Updater and Donate features

This commit is contained in:
Phil Olynyk 2019-02-14 20:37:29 -05:00
parent 2dc1c88dd7
commit c4855f2e57
16 changed files with 232 additions and 176 deletions

View File

@ -7,6 +7,8 @@
<file>docs/countries.txt</file>
<file>docs/tz.txt</file>
<file>docs/release_notes.html</file>
<file>docs/about.html</file>
<file>docs/credits.html</file>
<file>docs/schema.xml</file>
<file>docs/channels.xml</file>
<file>fonts/FreeSans.ttf</file>

View File

@ -326,7 +326,7 @@ extern QString STR_TR_PrRelief; // Pressure Relief
extern QString STR_TR_SensAwake;
extern QString STR_TR_Bookmarks;
extern QString STR_TR_SleepyHead;
extern QString STR_TR_OSCR;
extern QString STR_TR_AppVersion;
extern QString STR_TR_Mode;

View File

@ -89,10 +89,11 @@ QString platformStr()
void UpdaterWindow::checkForUpdates()
{
QMessageBox(tr("Not yet implemented"));
#ifdef NO_UPDATER
QMessageBox::information(nullptr,STR_MessageBox_Information, tr("Updates are not yet implemented"));
return;
#else
/********************************************
QString platform=platformStr();
#ifdef Q_OS_WIN
@ -131,9 +132,10 @@ void UpdaterWindow::checkForUpdates()
update_url = QUrl(QString("http://sleepyhead.jedimark.net/releases/LatestVersion-%1").arg(platform));
#endif
downloadUpdateXML();
*******************************************/
#endif // NO_UPDATER
}
#ifndef NO_UPDATER
void UpdaterWindow::downloadUpdateXML()
{
requestmode = RM_CheckUpdates;
@ -267,7 +269,9 @@ void UpdaterWindow::requestFile()
connect(reply, SIGNAL(readyRead()), this, SLOT(dataReceived()));
connect(reply, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(downloadProgress(qint64,
qint64)));
} */
}
************************************************************/
#endif
int checkVersionStatus(QString statusstr)
{
@ -410,9 +414,11 @@ int compareVersion(QString version)
return 0;
}
//const QString UPDATE_SleepyHead = "com.jedimark.sleepyhead";
//const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries";
//const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations";
#ifndef NO_UPDATER
const QString UPDATE_ROSCR = "com.jedimark.sleepyhead";
const QString UPDATE_QT = "com.jedimark.sleepyhead.qtlibraries";
const QString UPDATE_Translations = "com.jedimark.sleepyhead.translations";
bool SpawnApp(QString apppath, QStringList args = QStringList())
{
@ -464,7 +470,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev)
qDebug() << " XML update structure parsed cleanly";
QHash<QString, QString> CurrentVersion;
CurrentVersion[UPDATE_SleepyHead] = VersionString;
CurrentVersion[UPDATE_OSCR] = VersionString;
CurrentVersion[UPDATE_QT] = QT_VERSION_STR;
CurrentVersion[UPDATE_Translations] = VersionString;
@ -514,6 +520,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev)
qDebug() << "Couldn't parse Updates.xml file";
}
}
#endif
// Old
/************************************
@ -859,11 +866,13 @@ void UpdaterWindow::replyFinished(QNetworkReply *reply)
}
}
****************************************************************/
#ifndef NO_UPDATER
void UpdaterWindow::on_CloseButton_clicked()
{
close();
}
#endif
/*************************************
void UpdaterWindow::upgradeNext()
@ -956,9 +965,11 @@ void UpdaterWindow::on_upgradeButton_clicked()
}
************************************************************************/
#ifndef NO_UPDATER
void UpdaterWindow::on_FinishedButton_clicked()
{
if (success) {
mainwin->RestartApplication();
} else { close(); }
}
#endif

View File

@ -47,6 +47,8 @@ class UpdaterWindow : public QMainWindow
//! Start the
void checkForUpdates();
#ifndef NO_UPDATER
/*! \fn ParseUpdateXML(QIODevice * dev)
\brief Parses the update.xml from either QFile or QNetworkReply source
*/
@ -84,29 +86,32 @@ class UpdaterWindow : public QMainWindow
//! \brief Click on finished, restart if app has been upgraded, otherwise just close the window.
void on_FinishedButton_clicked();
#endif
private:
Ui::UpdaterWindow *ui;
RequestMode requestmode;
QNetworkAccessManager *netmanager;
Update *update;
#ifndef NO_UPDATER
//! \brief Holds the results of parsing the update.xml file
UpdateParser updateparser;
// new parser
UpdatesParser updatesparser;
Ui::UpdaterWindow *ui;
RequestMode requestmode;
QTime dltime;
QList<Update *> updates;
Update *update;
Release *release;
QFile file;
QNetworkAccessManager *netmanager;
QNetworkReply *reply;
QList<Update *> updates;
int current_row;
bool success;
QUrl update_url; // for update.xml redirects..
#endif
};
#endif // UPDATEWINDOW_H

View File

@ -9,6 +9,8 @@
#include <QDesktopServices>
#include <QFile>
#include <QDebug>
#include <QMessageBox>
#include "version.h"
#include "SleepLib/appsettings.h"
@ -22,6 +24,8 @@ AboutDialog::AboutDialog(QWidget *parent) :
{
ui->setupUi(this);
ui->aboutText->setHtml(getAbout());
ui->creditsText->setHtml(getCredits());
ui->licenseText->setHtml(getLicense());
ui->relnotesText->setHtml(getRelnotes());
ui->versionLabel->setText(VersionString);
@ -55,10 +59,35 @@ AboutDialog::~AboutDialog()
delete ui;
}
/***************************************************
void AboutDialog::on_donateButton_clicked()
{
// QDesktopServices::openUrl(QUrl("http://sleepyhead.jedimark.net/donate.php"));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not yet implemented"));
}
******************************************************/
QString AboutDialog::getAbout()
{
QFile clfile(":/docs/about.html");
QString text = tr("Sorry, could not locate About file.");
if (clfile.open(QIODevice::ReadOnly)) {
text = clfile.readAll();
} else
qDebug() << "Failed to open About file";
return text;
}
QString AboutDialog::getCredits()
{
QFile clfile(":/docs/credits.html");
QString text = tr("Sorry, could not locate Credits file.");
if (clfile.open(QIODevice::ReadOnly)) {
text = clfile.readAll();
}
return text;
}
QString AboutDialog::getRelnotes()

View File

@ -22,10 +22,13 @@ public:
explicit AboutDialog(QWidget *parent = 0);
~AboutDialog();
/****************************************************
private slots:
void on_donateButton_clicked();
***************************************************/
private:
QString getAbout();
QString getCredits();
QString getLicense();
QString getRelnotes();

View File

@ -37,34 +37,6 @@
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTextBrowser" name="aboutText">
<property name="html">
<string>&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:8pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:20pt;&quot;&gt;Welcome to Open Source CPAP Reviewer&lt;/span&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; 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:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This software has been designed to assist you in reviewing the data produced by your CPAP machines and related equipment.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:18pt; color:#ff0000;&quot;&gt;PLEASE READ CAREFULLY&lt;/span&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; 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:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OSCR is &lt;span style=&quot; font-weight:600;&quot;&gt;NOT &lt;/span&gt;a substitute for competent medical guidance from your Doctor.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCR can not in any way be guaranteed. &lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Any reports generated are for &lt;span style=&quot; font-weight:600;&quot;&gt;PERSONAL USE ONLY&lt;/span&gt;, and are &lt;span style=&quot; font-weight:600;&quot;&gt;NOT IN ANY WAY&lt;/span&gt; fit for compliance or medical diagnostic purposes.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Use of this software is &lt;span style=&quot; font-style:italic;&quot;&gt;entirely &lt;/span&gt;at your own risk. The author will not be held liable for &lt;span style=&quot; font-weight:600; text-decoration: underline;&quot;&gt;anything&lt;/span&gt; related to the use or misuse of this software.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OSCR is free (as in freedom) software, released under the &lt;span style=&quot; font-style:italic;&quot;&gt;GNU Public License v3&lt;/span&gt;, and comes with no warranty, and without ANY claims to fitness for any purpose.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OSCR is copyright ©2011-2018 &lt;a href=&quot;http://jedimark.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Mark Watkins&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; 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:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
@ -93,30 +65,6 @@ p, li { white-space: pre-wrap; }
<layout class="QVBoxLayout" name="verticalLayout_5">
<item>
<widget class="QTextBrowser" name="creditsText">
<property name="html">
<string>&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; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:20pt;&quot;&gt;OSCR Credits&lt;/span&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;For OSCR to come to you in the form you see it in now, it took a lot more work than just that of the projects creator &lt;a href=&quot;http://jedimark.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Jedimark&lt;/span&gt;&lt;/a&gt;.&lt;/p&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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;OpenSource Libraries&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OSCR uses the OpenSource version of the Qt cross platform toolkit available from &lt;a href=&quot;http://qt.io&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://qt.io&lt;/span&gt;&lt;/a&gt; which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCR at &lt;a href=&quot;http://doc.qt.io/archives/qt-5.7/3rdparty.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://doc.qt.io/archives/qt-5.7/3rdparty.html&lt;/span&gt;&lt;/a&gt;&lt;/p&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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Data formats&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCR involved a lot of hacking, I needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Patches, bugfixes and platform support&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot; color:#000000;&quot;&gt;James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.&lt;/span&gt;&lt;/p&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; color:#000000;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600; color:#000000;&quot;&gt;Language and Translation&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;The translation team is as follows: Arie Klerk (Translation Coordinator, also Dutch), Steffen Reitz (German), Chen Hao (Chinese), Lars-Erik Söderström (Swedish), Damien Vigneron (French), António Jorge Costa (Portuguese), Judith Guzmán (Spanish), Plamen Tonev (Bulgarian), Johan Heikkilä (Finnish), Boguslaw Kucharski (Polish), Luca Roberti (Italian), Iohannis Nasef (Greek and Arabic), Heyns van der Merwe (African), Jason Williams (English UK) and Yaron Keren (Hebrew).&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;&lt;br /&gt;Any remarks can be sent to Arie Klerk, who will gladly bring you in contact with the translator.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot; font-weight:600; color:#000000;&quot;&gt;Special Mentions&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot; color:#000000;&quot;&gt;A big thanks (again) to Arie Klerk for tirelessly filling the role of SleepyHead's Translation coordinator and helping get SleepyHead out of it's monolingual rut, and fit and ready to be shared with a much wider audience around the world.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;Special thanks to Pugsy and Robysue from &lt;/span&gt;&lt;a href=&quot;http://cpaptalk.com&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;CPAPTalk&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; color:#000000;&quot;&gt; for their help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.&lt;br /&gt;&lt;br /&gt;Thanks to CPAPTalk's host &lt;/span&gt;&lt;a href=&quot;http://CPAP.com&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;CPAP.com&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; color:#000000;&quot;&gt; for their generous donations, and letting me run amock in the early days and pester their forums users for help to test SleepyHead. &lt;/span&gt;&lt;/p&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; color:#000000;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; color:#000000;&quot;&gt;Thanks to SuperSleeper over at &lt;/span&gt;&lt;a href=&quot;http://www.apneaboard.com/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;ApneaBoard&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; color:#000000;&quot;&gt; for helping out with mirroring space and forums and stuff.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
@ -147,37 +95,6 @@ p, li { white-space: pre-wrap; }
</item>
</layout>
</widget>
<widget class="QWidget" name="supportTab">
<attribute name="title">
<string>Support OSCR</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QTextBrowser" name="supportText">
<property name="html">
<string>&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 align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:20pt;&quot;&gt;Support OSCR Development&lt;/span&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;All software, regardless of its software licensing costs time, money and resources to create and maintain, especially complex applications like OSCR.&lt;br /&gt;&lt;br /&gt;The SleepyHead project was created early in 2011 by Mark Watkins (&lt;a href=&quot;http://jedimark.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Jedimark&lt;/span&gt;&lt;/a&gt;), and has grown over the years into a seriously complex cross platform desktop application. It is the compound result of an insane amount of hard work and many, many all nighter hacking sessions, and time spent distracted from family responsibilties.&lt;/p&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;There is a lot of ongoing work trying to keep OSCR up to date with ever changing CPAP machine variants as well as the continuously improving understanding of the undocumented data formats. I know I haven't always kept up, but I really do try my best.&lt;br /&gt;&lt;br /&gt;I'd like to offer a huge thankyou for those who have given donations and support along the way... you truly helped to make OSCR what it is today.&lt;br /&gt;&lt;br /&gt;If OSCR has benefited you and have the means to do so, please consider showing your appreciation by supporting the continued development of this software project.&lt;/p&gt;
&lt;p align=&quot;center&quot; 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;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;a href=&quot;http://sleepyhead.jedimark.net/donate.php&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:600; text-decoration: underline; color:#0000ff;&quot;&gt;&lt;br /&gt;Donate via Paypal&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p align=&quot;center&quot; 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:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p align=&quot;center&quot; 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:11pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
<item>
@ -277,13 +194,6 @@ p, li { white-space: pre-wrap; }
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="donateButton">
<property name="text">
<string>&amp;Donate via Paypal</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">

45
oscr/docs/about.html Normal file
View File

@ -0,0 +1,45 @@
<!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; }
.centre {text-align:center; margin:0; text-indent:0;}
</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:0; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p>
<p class="centre" style="-qt-block-indent:0;"><span style=" font-size:20pt;"i>
Welcome to Open Source CPAP Reviewer</span></p>
<p class="centre" style="-qt-paragraph-type:empty;-qt-block-indent:0; font-size:11pt;"><br /></p>
<p class="centre" style="-qt-block-indent:0;">
This software has been designed to assist you in reviewing the data produced by your CPAP machines and related equipment.</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0;"><br /></p>
<hr />
<p class="centre" style="-qt-block-indent:0;"><span style=" font-size:18pt; color:#ff0000;">
PLEASE READ CAREFULLY</span></p>
<hr />
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0; font-size:11pt;"><br /></p>
<p class="centre" style="-qt-block-indent:0;">
OSCR is <span style=" font-weight:600;">NOT </span>a substitute for competent medical guidance from your Doctor.</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0;"><br /></p>
<p class="centre" style="-qt-block-indent:0;">
Due to the lack of documentation released by manufacturers regarding file formats, accuracy of data displayed in OSCR can not in any way be guaranteed. </p>
<p align="center" style="-qt-paragraph-type:empty; -qt-block-indent:0; "><br /></p>
<p class="centre" style="-qt-block-indent:0;">
Any reports generated are for <span style=" font-weight:600;">PERSONAL USE ONLY</span>, and are <span style=" font-weight:600;">NOT IN ANY WAY</span> fit for compliance or medical diagnostic purposes.</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0;"><br /></p>
<p class="centre" style="-qt-block-indent:0;">
Use of this software is <span style=" font-style:italic;">entirely </span>at your own risk. The authors will not be held liable for <span style=" font-weight:600; text-decoration: underline;">anything</span> related to the use or misuse of this software.</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0;"><br /></p>
<hr />
<p class="centre" style="-qt-block-indent:0;">
OSCR is free (as in freedom) software, released under the <span style=" font-style:italic;">GNU Public License v3</span>, and comes with no warranty, and without ANY claims to fitness for any purpose.</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0;"><br /></p>
<p class="centre" style="-qt-block-indent:0;">
OSCR is copyright ©2011-2018 <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Mark Watkins</span></a></p>
<p class="centre" style="-qt-block-indent:0;">
and portions &copy;2019 Nightowl Software</p>
<p class="centre" style="-qt-paragraph-type:empty; -qt-block-indent:0; font-size:11pt;"><br /></p>
</body>
</html>

31
oscr/docs/credits.html Normal file
View File

@ -0,0 +1,31 @@
<!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 { white-space: pre-wrap; margin:0; text-indent:0; -qt-block-indent:0; }
</style>
</head>
<body style=" font-family:'MS Shell Dlg 2'; font-size:10pt; font-weight:400; font-style:normal;">
<p><span style=" font-size:20pt;">OSCR Credits</span></p>
<hr />
<p>OSCR is a derivitive of the SleepyHead program written by Mark Watkins, during the years 2011 to 2018. The current project is the combined effort of people from both CPAPtalk.com and ApneaBoard.com, starting in 2019.</p>
<p>For OSCR to come to you in the form you see it in now, it took a lot more work than just that of the project's original creator <a href="http://jedimark.net"><span style=" text-decoration: underline; color:#0000ff;">Jedimark</span></a>. The following are the Credits from the last version of SleepyHead.</p>
<p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">OpenSource Libraries</span></p>
<p>OSCR uses the OpenSource version of the Qt cross platform toolkit available from <a href="http://qt.io"><span style=" text-decoration: underline; color:#0000ff;">http://qt.io</span></a> which itself draws from many smaller open source libraries. You can read the individual licensing for many of these components that are used under the hood of ROSCR at <a href="http://doc.qt.io/archives/qt-5.7/3rdparty.html"><span style=" text-decoration: underline; color:#0000ff;">http://doc.qt.io/archives/qt-5.7/3rdparty.html</span></a></p>
<p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">Data formats</span></p>
<p>Becase the CPAP machine data formats are mostly undocumented and getting them working in OSCR involved a lot of hacking, Mark Watkins needed a lot of SD card data samples, and patient users willing to put up with crashes and wonky data, and plenty of help from my fellow hackers out there who shared in the workload breaking data formats. Thanks to all of you who have helped in the fight to protect our right to keep our own data open and accessible!<br /><br /><span style=" font-weight:600;">Patches, bugfixes and platform support</span><br /><span style=" color:#000000;">James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl, Roy Stone, François Revol, Michael Masterson, RezNet, JediBob, Pholy and names I'm sure I've missed or yet to add.</span></p>
<p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" font-weight:600;">Language and Translation</span></p>
<p><span style=" color:#000000;">Now with sixteen (!) new languages besides English (US) it is important to mention all those people who have done an enormous job breaking their heads over 1566 strings with 9572 words, making a total of over 56.000 characters, for the original SleepyHead Version 1.0.0<br /></span></p>
<p><span style=" color:#000000;">The translation team was: Arie Klerk (Translation Coordinator, also Dutch), Steffen Reitz (German), Chen Hao (Chinese), Lars-Erik Söderström (Swedish), Damien Vigneron (French), António Jorge Costa (Portuguese), Judith Guzmán (Spanish), Plamen Tonev (Bulgarian), Johan Heikkilä (Finnish), Boguslaw Kucharski (Polish), Luca Roberti (Italian), Iohannis Nasef (Greek and Arabic), Heyns van der Merwe (African), Jason Williams (English UK) and Yaron Keren (Hebrew).</span></p>
<p><span style=" color:#000000;"><br />Any remarks can be sent to Arie Klerk, who will attempt to put you in contact with the translator.</span></p>
<p><span style=" color:#000000;"><br /></span><span style=" font-weight:600; color:#000000;">Special Mentions<br /></span><span style=" color:#000000;">A big thanks (again) to Arie Klerk for tirelessly filling the role of SleepyHead's Translation coordinator and helping get SleepyHead out of it's monolingual rut, and fit and ready to be shared with a much wider audience around the world.<br /></span></p>
<p<span style=" color:#000000;">Special thanks to Pugsy and Robysue from </span><a href="http://cpaptalk.com"><span style=" text-decoration: underline; color:#0000ff;">CPAPTalk</span></a><span style=" color:#000000;"> for their help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.<br /><br />Thanks to CPAPTalk's host </span><a href="http://CPAP.com"><span style=" text-decoration: underline; color:#0000ff;">CPAP.com</span></a><span style=" color:#000000;"> for their generous donations, and letting me run amock in the early days and pester their forums users for help to test SleepyHead. </span></p>
<p style="-qt-paragraph-type:empty;"><br /></p>
<p><span style=" color:#000000;">Thanks to SuperSleeper over at </span><a href="http://www.apneaboard.com/"><span style=" text-decoration: underline; color:#0000ff;">ApneaBoard</span></a><span style=" color:#000000;"> for helping out with mirroring space and forums and stuff.</span></p>
</body>
</html>

View File

@ -2,9 +2,12 @@
<html>
<body>
<p version="1.1.1-testing-1">
<b>Changes and fixes in v1.1.1-testing-1</b>
<b>Changes and fixes in OSCR v1.0.0-beta-1</b>
<list>
<li>This is a Community Release, prepared without Mark's assistance, but, we hope, with his blessing</li>
<li>This is a Community Release, prepared without Mark Watkin's assistance</li>
<li>The Donation and Update features have been removed</li>
<li>The Glossary, FAQ, and Wiki features are not yet implemented</li>
<li>The Help Pages require Qt 5.9 to build; Qt 5.7 is the oldest supported</li>
<li>The Daily page left panel will resize to a smaller size.</li>
<li>Oximeter import reports file errors in a message box</li>
<li>Fixed date and time problems with Oximeter import</li>
@ -17,7 +20,7 @@
<br />
<p version="1.1.0-unstable-0">
<b>Changes and fixes in v1.1.0-unstable-0</b>
<b>Changes and fixes in SleepyHead v1.1.0-unstable-0</b>
<list>
<li>New help browser with indexing and multilanguage support
<li>Killed off dependency on Webkit... (or as I prefer to call it "murderalized with extreme prejudice"!)</li>

View File

@ -155,10 +155,10 @@ int main(int argc, char *argv[])
if (opengl2supported) {
if (!settings.value(BetterBuild, false).toBool()) {
QMessageBox::information(nullptr, QObject::tr("A faster build of SleepyHead may be available"),
QObject::tr("This build of SleepyHead is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"<br/><br/>"+
QMessageBox::information(nullptr, QObject::tr("A faster build of OSCR may be available"),
QObject::tr("This build of OSCR is a compatability version that also works on computers lacking OpenGL 2.0 support.")+"<br/><br/>"+
QObject::tr("However it looks like your computer has full support for OpenGL 2.0!") + "<br/><br/>"+
QObject::tr("This version will run fine, but a \"<b>%1</b>\" tagged build of SleepyHead will likely run a bit faster on your computer.").arg("-OpenGL")+"<br/><br/>"+
QObject::tr("This version will run fine, but a \"<b>%1</b>\" tagged build of OSCR will likely run a bit faster on your computer.").arg("-OpenGL")+"<br/><br/>"+
QObject::tr("You will not be bothered with this message again."), QMessageBox::Ok, QMessageBox::Ok);
settings.setValue(BetterBuild, true);
}
@ -166,12 +166,12 @@ int main(int argc, char *argv[])
#else
if (bad_graphics) {
QMessageBox::warning(nullptr, QObject::tr("Incompatible Graphics Hardware"),
QObject::tr("This build of SleepyHead requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "<br/><br/>"+
QObject::tr("This build of OSCR requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability.") + "<br/><br/>"+
QObject::tr("You may need to update your computers graphics drivers from the GPU makers website. %1").
arg(intel_graphics ? QObject::tr("(<a href='http://intel.com/support'>Intel's support site</a>)") : "")+"<br/><br/>"+
QObject::tr("Because graphs will not render correctly, and it may cause crashes, this build will now exit.")+"<br/><br/>"+
QObject::tr("There is another build available tagged \"<b>-BrokenGL</b>\" that should work on your computer.")
,QMessageBox::Ok, QMessageBox::Ok);
QObject::tr("There is another build available tagged \"<b>-BrokenGL</b>\" that should work on your computer."),
QMessageBox::Ok, QMessageBox::Ok);
exit(1);
}
#endif
@ -195,10 +195,10 @@ int main(int argc, char *argv[])
if (!havefolder && !force_data_dir) {
if (QMessageBox::question(nullptr, STR_MessageBox_Question,
QObject::tr("Would you like SleepyHead to use this location for storing its data?")+"\n\n"+
QObject::tr("Would you like OSCR to use this location for storing its data?")+"\n\n"+
QDir::toNativeSeparators(GetAppRoot())+"\n\n"+
QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old SleepyHead data folder.")+"\n\n"+
QObject::tr("(If you have no idea what to do here, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) {
QObject::tr("If you are upgrading, don't panic, you just need to make sure this is pointed at your old OSCR data folder.")+"\n\n"+
QObject::tr("(If you are unsure, just click yes.)"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) {
settings.setValue("Settings/AppRoot", GetAppRoot());
change_data_dir = false;
}
@ -208,17 +208,17 @@ retry_directory:
if (change_data_dir) {
QString datadir = QFileDialog::getExistingDirectory(nullptr,
QObject::tr("Choose or create new folder for SleepyHead data"), GetAppRoot(),
QObject::tr("Choose or create new folder for OSCR data"), GetAppRoot(),
QFileDialog::ShowDirsOnly);
if (datadir.isEmpty()) {
if (!havefolder) {
QMessageBox::information(nullptr, QObject::tr("Exiting"),
QObject::tr("As you did not select a data folder, SleepyHead will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again."));
QObject::tr("As you did not select a data folder, OSCR will exit.")+"\n\n"+QObject::tr("Next time you run, you will be asked again."));
return 0;
} else {
QMessageBox::information(nullptr, STR_MessageBox_Warning,
QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("SleepyHead will now start with your old one.")+"\n\n"+
QObject::tr("You did not select a directory.")+"\n\n"+QObject::tr("OSCR will now start with your old one.")+"\n\n"+
QDir::toNativeSeparators(GetAppRoot()), QMessageBox::Ok);
}
} else {
@ -229,9 +229,9 @@ retry_directory:
if (dir.count() > 2) {
// Not a new directory.. nag the user.
if (QMessageBox::question(nullptr, STR_MessageBox_Warning,
QObject::tr("The folder you chose is not empty, nor does it already contain valid SleepyHead data.")
+ "\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n"
+ datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
QObject::tr("The folder you chose is not empty, nor does it already contain valid OSCR data.") +
"\n\n"+QObject::tr("Are you sure you want to use this folder?")+"\n\n" +
datadir, QMessageBox::Yes, QMessageBox::No) == QMessageBox::No) {
goto retry_directory;
}
}
@ -253,14 +253,15 @@ retry_directory:
AppSetting->setLanguage(language);
// Clean up some legacy crap
QFile lf(PREF.Get("{home}/Layout.xml"));
if (lf.exists()) {
lf.remove();
}
// QFile lf(PREF.Get("{home}/Layout.xml"));
// if (lf.exists()) {
// lf.remove();
// }
PREF.Erase(STR_AppName);
PREF.Erase(STR_GEN_SkipLogin);
#ifndef NO_UPDATER
////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates..
////////////////////////////////////////////////////////////////////////////////////////////
@ -282,16 +283,17 @@ retry_directory:
check_updates = true;
}
}
#endif
int vc = compareVersion(AppSetting->versionString());
if (vc < 0) {
AppSetting->setShowAboutDialog(1);
//release_notes();
check_updates = false;
// check_updates = false;
} else if (vc > 0) {
if (QMessageBox::warning(nullptr, STR_MessageBox_Error,
QObject::tr("The version of SleepyHead you just ran is OLDER than the one used to create this data (%1).").
QObject::tr("The version of OSCR you just ran is OLDER than the one used to create this data (%1).").
arg(AppSetting->versionString()) +"\n\n"+
QObject::tr("It is likely that doing this will cause data corruption, are you sure you want to do this?"),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {
@ -353,8 +355,9 @@ retry_directory:
Q_UNUSED(changing_language)
Q_UNUSED(dont_load_profile)
#ifndef NO_UPDATER
if (check_updates) { mainwin->CheckForUpdates(); }
#endif
mainwin->SetupGUI();
mainwin->show();

View File

@ -92,7 +92,7 @@ MainWindow::MainWindow(QWidget *parent) :
a->setEnabled(false);
systraymenu->addSeparator();
systraymenu->addAction(tr("&About"), this, SLOT(on_action_About_triggered()));
systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered()));
// systraymenu->addAction(tr("Check for &Updates"), this, SLOT(on_actionCheck_for_Updates_triggered()));
systraymenu->addSeparator();
systraymenu->addAction(tr("E&xit"), this, SLOT(close()));
} else { // if not available, the messages will popup in the taskbar
@ -845,11 +845,9 @@ void MainWindow::on_action_Import_Data_triggered()
if (!p_profile->cpap->autoImport()) {
QMessageBox mbox(QMessageBox::NoIcon,
tr("CPAP Data Located"),
infostr+"\n\n"+QDir::toNativeSeparators(datacards[0].path)+"\n\n"+
tr("CPAP Data Located"), infostr+"\n\n"+QDir::toNativeSeparators(datacards[0].path)+"\n\n"+
tr("Would you like to import from this location?"),
QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel,
this);
QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, this);
mbox.setDefaultButton(QMessageBox::Yes);
mbox.setButtonText(QMessageBox::No, tr("Specify"));
@ -1260,13 +1258,19 @@ void MainWindow::on_oximetryButton_clicked()
void MainWindow::CheckForUpdates()
{
qDebug() << "procedure <CheckForUpdates> called";
on_actionCheck_for_Updates_triggered();
}
void MainWindow::on_actionCheck_for_Updates_triggered()
{
#ifdef NO_UPDATER
qDebug() << "procedure <on_actionCheck_for_Updates_triggered> called";
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Updates are not yet implemented"));
#else
UpdaterWindow *w = new UpdaterWindow(this);
w->checkForUpdates();
#endif
}
bool toolbox_visible = false;
@ -1433,13 +1437,13 @@ void MainWindow::on_action_CycleTabs_triggered()
void MainWindow::on_actionOnline_Users_Guide_triggered()
{
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=SleepyHead_Users_Guide"));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The User's Guide is not yet implemented"));
}
void MainWindow::on_action_Frequently_Asked_Questions_triggered()
{
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Frequently_Asked_Questions"));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The FAQ is not yet implemented"));
}
void packEventList(EventList *el, EventDataType minval = 0)
@ -1685,7 +1689,10 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
if (QProcess::startDetached("/usr/bin/open", args)) {
QApplication::instance()->exit();
} else { QMessageBox::warning(nullptr, tr("Gah!"), tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."), QMessageBox::Ok); }
} else {
QMessageBox::warning(nullptr, tr("Gah!"),
tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok);
}
#else
apppath = QApplication::instance()->applicationFilePath();
@ -1709,7 +1716,10 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
QApplication::instance()->exit();
// ::exit(0);
} else { QMessageBox::warning(nullptr, tr("Gah!"), tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."), QMessageBox::Ok); }
} else {
QMessageBox::warning(nullptr, tr("Gah!"),
tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok);
}
#endif
}
@ -1822,9 +1832,9 @@ void MainWindow::on_actionRebuildCPAP(QAction *action)
if (backups) {
if (QMessageBox::question(this,
STR_MessageBox_Question,
tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n" +
tr("Are you sure you want to rebuild all CPAP data for the following machine:\n\n") +
mach->brand() + " " + mach->model() + " " +
mach->modelnumber() + " (" + mach->serial() + ")\n\n"+
mach->modelnumber() + " (" + mach->serial() + ")\n\n" +
tr("Please note, that this could result in loss of graph data if OSCR's backups have been disabled or interfered with in any way."),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {
return;
@ -1834,7 +1844,7 @@ void MainWindow::on_actionRebuildCPAP(QAction *action)
STR_MessageBox_Warning,
"<p><b>"+STR_MessageBox_Warning+": </b>"+tr("For some reason, OSCR does not have any backups for the following machine:")+ "</p>" +
"<p>"+mach->brand() + " " + mach->model() + " " + mach->modelnumber() + " (" + mach->serial() + ")</p>"+
"<p>"+tr("Provided you have made <i>your <b>own</b> backups for ALL of your CPAP data</i>, you can still complete this operation, but you will have to restore from your backups manually.")+"</p>"
"<p>"+tr("Provided you have made <i>your <b>own</b> backups for ALL of your CPAP data</i>, you can still complete this operation, but you will have to restore from your backups manually.")+"</p>" +
"<p><b>"+tr("Are you really sure you want to do this?")+"</b></p>",
QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) {
return;
@ -1940,23 +1950,26 @@ void MainWindow::purgeMachine(Machine * mach)
p_profile->StoreMachines();
} else {
QMessageBox::warning(this, STR_MessageBox_Error,
tr("A file permission error or simillar screwed up the purge process, you will have to delete the following folder manually:")
+"\n\n"+
QDir::toNativeSeparators(mach->getDataPath()), QMessageBox::Ok, QMessageBox::Ok);
if (overview) overview->ReloadGraphs();
tr("A file permission error casued the purge process to fail; you will have to delete the following folder manually:") +
"\n\n" + QDir::toNativeSeparators(mach->getDataPath()), QMessageBox::Ok, QMessageBox::Ok);
if (overview)
overview->ReloadGraphs();
if (daily) {
daily->clearLastDay(); // otherwise Daily will crash
daily->ReloadGraphs();
}
if (welcome) welcome->refreshPage();
if (welcome)
welcome->refreshPage();
//GenerateStatistics();
return;
}
if (overview) overview->ReloadGraphs();
if (overview)
overview->ReloadGraphs();
QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ));
rxcache.remove();
@ -1986,9 +1999,7 @@ void MainWindow::on_helpButton_clicked()
#ifndef helpless
ui->tabWidget->setCurrentWidget(help);
#else
QMessageBox msgBox;
msgBox.setText("No help is available.");
msgBox.exec();
QMessageBox::information(nullptr, STR_MessageBox_Error, tr("No help is available."));
#endif
}
@ -2222,13 +2233,13 @@ void MainWindow::on_actionImport_RemStar_MSeries_Data_triggered()
void MainWindow::on_actionSleep_Disorder_Terms_Glossary_triggered()
{
// QDesktopServices::openUrl(QUrl("http://sleepyhead.sourceforge.net/wiki/index.php?title=Glossary"));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The Glossary is not yet implemented"));
}
void MainWindow::on_actionHelp_Support_OSCR_Development_triggered()
{
// QDesktopServices().openUrl(QUrl("https://sleepyhead.jedimark.net/donate.php"));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Donations are not yet implemented"));
}
void MainWindow::on_actionChange_Language_triggered()
@ -2449,7 +2460,7 @@ void MainWindow::on_actionExport_CSV_triggered()
void MainWindow::on_actionExport_Review_triggered()
{
QMessageBox::information(nullptr, STR_MessageBox_Information, QObject::tr("Sorry, this feature is not implemented yet"), QMessageBox::Ok);
QMessageBox::information(nullptr, STR_MessageBox_Information, tr("Export review is not yet implemented"));
}
void MainWindow::on_mainsplitter_splitterMoved(int, int)
@ -2464,7 +2475,7 @@ void MainWindow::on_actionReport_a_Bug_triggered()
// QString language = settings.value(LangSetting).toString();
//
// QDesktopServices::openUrl(QUrl(QString("https://sleepyhead.jedimark.net/report_bugs.php?lang=%1&version=%2&platform=%3").arg(language).arg(VersionString).arg(PlatformString)));
QMessageBox(tr("Not yet implemented"));
QMessageBox::information(nullptr, STR_MessageBox_Error, tr("Bug reports are not yet implemented"));
}
void MainWindow::on_profilesButton_clicked()

View File

@ -267,7 +267,7 @@ class MainWindow : public QMainWindow
void on_actionSleep_Disorder_Terms_Glossary_triggered();
void on_actionHelp_Support_SleepyHead_Development_triggered();
void on_actionHelp_Support_OSCR_Development_triggered();
void aboutBoxLinkClicked(const QUrl &url);

View File

@ -18,6 +18,7 @@ contains(DEFINES, helpless) {
}
DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += NO_UPDATER
#OSRC requires OpenGL 2.0 support to run smoothly
#On platforms where it's not available, it can still be built to work
@ -357,6 +358,8 @@ OTHER_FILES += \
docs/graphs.xml \
docs/channels.xml \
docs/release_notes.html \
docs/about.html \
docs/credits.html \
docs/startup_tips.txt \
docs/countries.txt \
docs/tz.txt \

View File

@ -1166,7 +1166,7 @@ void PreferencesDialog::on_createSDBackups_clicked(bool checked)
{
if (!checked && p_profile->session->backupCardData()) {
if (QMessageBox::question(this,
STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCR needs these to rebuild the database if errors are found.\n\n"+
STR_MessageBox_Warning, tr("Switching off backups is not a good idea, because OSCR needs these to rebuild the database if errors are found.\n\n") +
tr("Are you really sure you want to do this?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) {
// do nothing
} else {

View File

@ -637,7 +637,7 @@ QString Statistics::htmlHeader(bool showheader)
if (showheader) {
html += "<div align=center>"
+resizeHTMLPixmap(logoPixmap,64,64)+"<br/>"
"<font size='+3'>" + STR_TR_SleepyHead + "</font><br/>"
"<font size='+3'>" + STR_TR_OSCR + "</font><br/>"
"<font size='+2'>" + tr("Usage Statistics") + "</font><br/>"
"<font size='+1' title=\""+tr("This is for legal reasons. Sorry, not sorry. Without manufacturer support and documentation, OSCR is unsuitable as a compliance/medical reporting tool.")+"\">" + tr("(NOT approved for compliance or medical reporting purposes)")+"</font><br/>";
@ -1424,7 +1424,7 @@ void Statistics::UpdateRecordsBox()
} else {
html += "<br/><b>"+tr("Want more information?")+"</b><br/>";
html += "<i>"+tr("SleepyHead needs all summary data loaded to calculate best/worst data for individual days.")+"</i><br/><br/>";
html += "<i>"+tr("OSCR needs all summary data loaded to calculate best/worst data for individual days.")+"</i><br/><br/>";
html += "<i>"+tr("Please enable Pre-Load Summaries checkbox in preferences to make sure this data is available.")+"</i><br/><br/>";
}