2018-06-13 04:17:58 +00:00
|
|
|
/* SleepLib Common Functions
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2018-04-02 02:08:32 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-12-21 05:47:33 +00:00
|
|
|
|
|
|
|
#include <QDateTime>
|
2012-01-11 11:25:36 +00:00
|
|
|
#include <QDir>
|
2018-04-22 12:06:48 +00:00
|
|
|
#include <QThread>
|
2018-06-14 09:12:49 +00:00
|
|
|
#ifndef BROKEN_OPENGL_BUILD
|
2018-06-07 05:30:31 +00:00
|
|
|
#include <QGLWidget>
|
2018-06-14 09:12:49 +00:00
|
|
|
#endif
|
2018-06-07 05:30:31 +00:00
|
|
|
#include <QOpenGLFunctions>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QCoreApplication>
|
2019-07-05 01:14:41 +00:00
|
|
|
#include <QApplication>
|
2018-06-12 12:55:44 +00:00
|
|
|
#include <QSettings>
|
2019-07-05 01:14:41 +00:00
|
|
|
#include <QFontDatabase>
|
2020-03-14 17:43:24 +00:00
|
|
|
#include <QStandardPaths>
|
2019-07-05 01:14:41 +00:00
|
|
|
#include <QMenuBar>
|
2018-06-07 05:30:31 +00:00
|
|
|
|
|
|
|
#include "SleepLib/common.h"
|
|
|
|
|
2018-06-07 00:09:06 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <QtZlib/zlib.h>
|
|
|
|
#else
|
2018-06-14 07:25:54 +00:00
|
|
|
#include <unistd.h>
|
2014-09-29 14:41:31 +00:00
|
|
|
#include <zlib.h>
|
2018-06-07 00:09:06 +00:00
|
|
|
#endif
|
2011-12-21 05:47:33 +00:00
|
|
|
|
2018-06-05 23:01:22 +00:00
|
|
|
#include "version.h"
|
2011-12-21 11:09:50 +00:00
|
|
|
#include "profiles.h"
|
2019-07-05 01:14:41 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
extern MainWindow * mainwin;
|
2011-12-21 05:47:33 +00:00
|
|
|
|
2019-08-06 17:51:14 +00:00
|
|
|
QString MedDateFormat = "ddd MMM d yyyy"; // QT default value, which we override if we can
|
|
|
|
bool dayFirst = false;
|
2013-10-18 04:56:44 +00:00
|
|
|
|
2019-08-06 17:51:14 +00:00
|
|
|
// System locale and regional settings support only a "short" date (m/d/yyy) and a "long"
|
|
|
|
// date (day of week, month, day, year -- all spelled out fully). We get the formatting
|
|
|
|
// for the long format, shorten day and month name, and remove excess commas.
|
|
|
|
void SetDateFormat () {
|
|
|
|
QLocale sysLocale = QLocale::system();
|
|
|
|
QString dfmt = sysLocale.dateFormat();
|
|
|
|
qDebug() << "system locale date format" << dfmt;
|
|
|
|
|
|
|
|
QString s = dfmt.replace("dddd", "ddd");
|
|
|
|
if (!s.isEmpty()) s = s.replace("MMMM", "MMM");
|
|
|
|
if (!s.isEmpty()) s = s.replace(",", "");
|
|
|
|
if (!s.isEmpty()) {
|
|
|
|
QDate testDate (2018, 12, 31);
|
|
|
|
QString testresult = testDate.toString(s);
|
|
|
|
if (!testresult.isEmpty()) // make sure we can translate a date
|
|
|
|
MedDateFormat = s; // If we can, save the format for future use
|
|
|
|
}
|
|
|
|
|
|
|
|
// Record whether month or day is first in the formatting
|
|
|
|
QString s2 = MedDateFormat;
|
|
|
|
s2 = s2.replace("ddd","");
|
|
|
|
int monthidx = s2.indexOf("MMM");
|
|
|
|
if (s2.indexOf("d") < monthidx)
|
|
|
|
dayFirst = true;
|
|
|
|
|
|
|
|
qDebug() << "shortened date format" << MedDateFormat << "dayFirst" << dayFirst;
|
|
|
|
}
|
2018-06-07 05:30:31 +00:00
|
|
|
|
2013-10-18 04:56:44 +00:00
|
|
|
const QString getDeveloperName()
|
|
|
|
{
|
|
|
|
return STR_DeveloperName;
|
|
|
|
}
|
|
|
|
|
2019-04-08 14:26:59 +00:00
|
|
|
const QString getDeveloperDomain()
|
|
|
|
{
|
|
|
|
return STR_DeveloperDomain;
|
|
|
|
}
|
|
|
|
|
2013-10-18 04:56:44 +00:00
|
|
|
const QString getAppName()
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
QString name = STR_AppName;
|
2020-01-15 18:18:00 +00:00
|
|
|
name += getPrereleaseSuffix();
|
2013-10-18 04:56:44 +00:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2019-03-25 23:43:04 +00:00
|
|
|
const QString getModifiedAppData()
|
2013-10-18 04:56:44 +00:00
|
|
|
{
|
2019-03-25 23:43:04 +00:00
|
|
|
QString appdata = STR_AppData;
|
2020-01-15 18:18:00 +00:00
|
|
|
appdata += getPrereleaseSuffix();
|
2019-03-25 23:43:04 +00:00
|
|
|
return appdata;
|
2013-10-18 04:56:44 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:13:47 +00:00
|
|
|
bool gfxEgnineIsSupported(GFXEngine e)
|
2018-06-12 12:55:44 +00:00
|
|
|
{
|
2018-06-13 04:17:58 +00:00
|
|
|
#if defined(Q_OS_WIN32)
|
2018-06-14 07:25:54 +00:00
|
|
|
Q_UNUSED(e)
|
2018-06-13 04:13:47 +00:00
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
switch(e) {
|
|
|
|
case GFX_OpenGL:
|
|
|
|
case GFX_Software:
|
|
|
|
return true;
|
|
|
|
case GFX_ANGLE:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2018-06-12 12:55:44 +00:00
|
|
|
}
|
2018-06-13 04:13:47 +00:00
|
|
|
GFXEngine currentGFXEngine()
|
2018-06-12 12:55:44 +00:00
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
|
2018-06-13 04:13:47 +00:00
|
|
|
return (GFXEngine)qMin(settings.value(GFXEngineSetting, GFX_OpenGL).toUInt(), (unsigned int)MaxGFXEngine);
|
2018-06-12 12:55:44 +00:00
|
|
|
}
|
2018-06-13 04:13:47 +00:00
|
|
|
void setCurrentGFXEngine(GFXEngine e)
|
2018-06-12 12:55:44 +00:00
|
|
|
{
|
2018-06-13 04:13:47 +00:00
|
|
|
QSettings settings;
|
2018-06-12 12:55:44 +00:00
|
|
|
|
2018-06-13 04:13:47 +00:00
|
|
|
settings.setValue(GFXEngineSetting, qMin((unsigned int)e, (unsigned int)MaxGFXEngine));
|
|
|
|
}
|
2018-06-12 12:55:44 +00:00
|
|
|
|
2018-06-07 05:30:31 +00:00
|
|
|
QString getOpenGLVersionString()
|
|
|
|
{
|
|
|
|
static QString glversion;
|
2018-06-14 09:12:49 +00:00
|
|
|
if (glversion.isEmpty()) {
|
|
|
|
|
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
glversion="LegacyGFX";
|
|
|
|
qDebug() << "This LegacyGFX build has been created without the need for OpenGL";
|
|
|
|
#else
|
2018-06-07 05:30:31 +00:00
|
|
|
|
|
|
|
QGLWidget w;
|
|
|
|
w.makeCurrent();
|
|
|
|
|
|
|
|
QOpenGLFunctions f;
|
|
|
|
f.initializeOpenGLFunctions();
|
|
|
|
glversion = QString(QLatin1String(reinterpret_cast<const char*>(f.glGetString(GL_VERSION))));
|
2019-06-01 22:12:38 +00:00
|
|
|
// qDebug() << "Graphics Engine:" << glversion;
|
2018-06-14 09:12:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return glversion;
|
2018-06-07 05:30:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float getOpenGLVersion()
|
|
|
|
{
|
2018-06-14 09:12:49 +00:00
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
return 0;
|
|
|
|
#else
|
2018-06-07 05:30:31 +00:00
|
|
|
QString glversion = getOpenGLVersionString();
|
|
|
|
glversion = glversion.section(" ",0,0);
|
|
|
|
bool ok;
|
|
|
|
float v = glversion.toFloat(&ok);
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
QString tmp = glversion.section(".",0,1);
|
|
|
|
v = tmp.toFloat(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
// just look at major, we are only interested in whether we have OpenGL 2.0 anyway
|
|
|
|
tmp = glversion.section(".",0,0);
|
|
|
|
v = tmp.toFloat(&ok);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v;
|
2018-06-14 09:12:49 +00:00
|
|
|
#endif
|
2018-06-07 05:30:31 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 12:14:07 +00:00
|
|
|
// Obtains graphic engine as a string
|
2019-05-04 00:26:08 +00:00
|
|
|
// This works on Windows. Don't know about other platforms.
|
2018-06-07 05:30:31 +00:00
|
|
|
QString getGraphicsEngine()
|
|
|
|
{
|
|
|
|
QString gfxEngine = QString();
|
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
gfxEngine = CSTR_GFX_BrokenGL;
|
|
|
|
#else
|
2019-06-07 12:14:07 +00:00
|
|
|
if (QCoreApplication::testAttribute(Qt::AA_UseSoftwareOpenGL))
|
2019-05-04 00:26:08 +00:00
|
|
|
gfxEngine = CSTR_GFX_BrokenGL;
|
2019-06-07 12:14:07 +00:00
|
|
|
else if (QCoreApplication::testAttribute(Qt::AA_UseOpenGLES))
|
|
|
|
gfxEngine = CSTR_GFX_ANGLE;
|
|
|
|
else
|
2018-06-07 05:30:31 +00:00
|
|
|
gfxEngine = CSTR_GFX_OpenGL;
|
|
|
|
#endif
|
|
|
|
return gfxEngine;
|
|
|
|
}
|
|
|
|
|
2019-06-01 22:12:38 +00:00
|
|
|
QStringList buildInfo;
|
|
|
|
|
2020-01-16 18:58:18 +00:00
|
|
|
QStringList makeBuildInfo (QString forcedEngine){
|
|
|
|
// application name and version has already been added
|
|
|
|
buildInfo << (QObject::tr("Built with Qt %1 on %2").arg(QT_VERSION_STR).arg(getBuildDateTime()));
|
2019-06-02 17:24:17 +00:00
|
|
|
buildInfo << QString("");
|
|
|
|
buildInfo << (QObject::tr("Operating system:") + " " + QSysInfo::prettyProductName());
|
2019-06-01 22:12:38 +00:00
|
|
|
buildInfo << (QObject::tr("Graphics Engine:") + " " + getOpenGLVersionString());
|
|
|
|
buildInfo << (QObject::tr("Graphics Engine type:") + " " + getGraphicsEngine());
|
|
|
|
if (forcedEngine != "")
|
|
|
|
buildInfo << forcedEngine;
|
|
|
|
|
2020-01-16 18:58:18 +00:00
|
|
|
buildInfo << QString("");
|
|
|
|
if (getAppName() != STR_AppName) // Report any non-standard app key
|
|
|
|
buildInfo << (QObject::tr("App key:") + " " + getAppName());
|
|
|
|
// Data directory will always be added, later.
|
|
|
|
|
2019-06-01 22:12:38 +00:00
|
|
|
return buildInfo;
|
|
|
|
}
|
|
|
|
|
2019-06-02 02:51:18 +00:00
|
|
|
QStringList addBuildInfo (QString value) {
|
|
|
|
buildInfo << (value);
|
|
|
|
return buildInfo;
|
|
|
|
}
|
|
|
|
|
2019-06-01 22:12:38 +00:00
|
|
|
QStringList getBuildInfo() {
|
|
|
|
return buildInfo;
|
|
|
|
}
|
|
|
|
|
2018-06-07 05:30:31 +00:00
|
|
|
QString appResourcePath()
|
|
|
|
{
|
2020-03-14 17:43:24 +00:00
|
|
|
static QString path;
|
|
|
|
if ( path.size() != 0 )
|
|
|
|
return path;
|
|
|
|
|
2018-06-07 05:30:31 +00:00
|
|
|
#ifdef Q_OS_MAC
|
2020-03-14 17:43:24 +00:00
|
|
|
path = QDir::cleanPath(QCoreApplication::applicationDirPath() + "/../Resources");
|
2018-06-07 05:30:31 +00:00
|
|
|
#else
|
2020-03-14 17:43:24 +00:00
|
|
|
// QStringList paths = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation);
|
|
|
|
// Check the Appiication Path first, so we can execute out of the build directory
|
2020-03-15 20:27:36 +00:00
|
|
|
QStringList paths;
|
|
|
|
// This one will be used if the Html and Translations folders
|
|
|
|
// are in the same folder as the OSCAR executable
|
2020-08-26 01:09:53 +00:00
|
|
|
paths.append( QCoreApplication::applicationDirPath() );
|
2020-03-15 20:27:36 +00:00
|
|
|
#ifdef Q_OS_LINUX
|
2020-08-26 01:09:53 +00:00
|
|
|
QString appName = QCoreApplication::applicationName();
|
|
|
|
if (appName != QString("OSCAR"))
|
|
|
|
appName = QString("OSCAR-test");
|
|
|
|
paths.append( QString( "/usr/share/" ) + appName );
|
|
|
|
paths.append( QString( "/usr/local/share/" ) + appName );
|
2020-03-15 20:27:36 +00:00
|
|
|
#endif
|
2020-03-14 17:43:24 +00:00
|
|
|
for (auto p = begin(paths); p != end(paths); ++p ) {
|
|
|
|
QString fname = *p+QString("/Translations/oscar_qt_fr.qm");
|
|
|
|
qDebug() << "Trying" << fname;
|
|
|
|
QFileInfo f = QFileInfo(fname);
|
|
|
|
if ( f.exists() ) {
|
|
|
|
path = *p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( path.size() == 0 )
|
|
|
|
path = QCoreApplication::applicationDirPath();
|
2018-06-07 05:30:31 +00:00
|
|
|
#endif
|
2020-03-14 17:43:24 +00:00
|
|
|
|
2018-06-07 05:30:31 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
|
|
|
{
|
|
|
|
return QLocale::system().firstDayOfWeek();
|
|
|
|
}
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
int idealThreads() { return QThread::idealThreadCount(); }
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
qint64 timezoneOffset()
|
|
|
|
{
|
|
|
|
static bool ok = false;
|
|
|
|
static qint64 _TZ_offset = 0;
|
|
|
|
|
|
|
|
if (ok) { return _TZ_offset; }
|
2011-12-21 05:47:33 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
QDateTime d1 = QDateTime::currentDateTime();
|
|
|
|
QDateTime d2 = d1;
|
2011-12-21 05:47:33 +00:00
|
|
|
d1.setTimeSpec(Qt::UTC);
|
2014-04-17 05:58:57 +00:00
|
|
|
_TZ_offset = d2.secsTo(d1);
|
|
|
|
_TZ_offset *= 1000L;
|
2011-12-21 05:47:33 +00:00
|
|
|
return _TZ_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString weightString(float kg, UnitSystem us)
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
if (us == US_Undefined) {
|
2014-07-11 12:09:38 +00:00
|
|
|
us = p_profile->general->unitSystem();
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (us == US_Metric) {
|
|
|
|
return QString("%1kg").arg(kg, 0, 'f', 2);
|
2019-05-01 16:05:01 +00:00
|
|
|
} else if (us == US_English) {
|
2014-04-17 05:58:57 +00:00
|
|
|
int oz = (kg * 1000.0) / (float)ounce_convert;
|
|
|
|
int lb = oz / 16.0;
|
2011-12-21 05:47:33 +00:00
|
|
|
oz = oz % 16;
|
2014-04-17 05:58:57 +00:00
|
|
|
return QString("%1lb %2oz").arg(lb, 0, 10).arg(oz);
|
2011-12-21 05:47:33 +00:00
|
|
|
}
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
return ("Bad UnitSystem");
|
2011-12-21 05:47:33 +00:00
|
|
|
}
|
2012-01-05 04:37:22 +00:00
|
|
|
|
2019-05-11 00:53:09 +00:00
|
|
|
// Format perssure relief
|
|
|
|
QString formatRelief (QString relief)
|
|
|
|
{
|
|
|
|
int icm = 0;
|
|
|
|
QString newRelief = relief;
|
|
|
|
if (relief == nullptr )
|
|
|
|
return relief;
|
|
|
|
icm = relief.indexOf("cmH2O");
|
|
|
|
if (icm >= 1) {
|
|
|
|
QChar t = relief.mid(icm-1,1)[0];
|
|
|
|
if (t.isDigit())
|
|
|
|
newRelief = relief.insert(icm, " ");
|
|
|
|
}
|
|
|
|
// qDebug() << "Relief input" << relief << "returning" << newRelief;
|
|
|
|
return newRelief;
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
bool operator <(const ValueCount &a, const ValueCount &b)
|
2012-01-05 04:37:22 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
return a.value < b.value;
|
2012-01-05 04:37:22 +00:00
|
|
|
}
|
2012-01-11 11:25:36 +00:00
|
|
|
|
2019-07-05 01:14:41 +00:00
|
|
|
static QStringList installedFontFamilies;
|
|
|
|
|
|
|
|
// Validate all fonts
|
|
|
|
void validateAllFonts () {
|
2019-07-10 22:13:27 +00:00
|
|
|
validateFont("Application", 10, false, false);
|
|
|
|
validateFont("Graph", 10, false, false);
|
|
|
|
validateFont("Title", 12, true, false);
|
|
|
|
validateFont("Big", 35, false, false);
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate font from preference settings, and substitute system font if font in preferences cannot be found on this system
|
2019-07-10 22:13:27 +00:00
|
|
|
void validateFont (QString which, int size, bool bold, bool italic) {
|
2019-07-05 01:14:41 +00:00
|
|
|
|
|
|
|
// Get list of installed font families, including system font
|
|
|
|
// Do this just once so we don't have to call font functions repeatedly
|
2019-07-10 22:13:27 +00:00
|
|
|
// (This list includes private fonts)
|
|
|
|
QFontDatabase fontdatabase;
|
|
|
|
if (installedFontFamilies.isEmpty()) {
|
|
|
|
installedFontFamilies = fontdatabase.families();
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
2021-01-16 01:20:36 +00:00
|
|
|
qDebug() << "validateFont found" << installedFontFamilies.count() << "installed font families";
|
2019-07-05 01:14:41 +00:00
|
|
|
|
|
|
|
QString prefPrefix = "Fonts_" + which + "_";
|
|
|
|
|
2019-07-10 22:13:27 +00:00
|
|
|
// start off assuming we don't have a font specified, and system font is desired font
|
|
|
|
QString desiredFont = QFontDatabase::systemFont(QFontDatabase::GeneralFont).family();
|
|
|
|
bool forceFont = true;
|
|
|
|
|
2019-07-05 01:14:41 +00:00
|
|
|
// If a font is specified, make sure it is a valid font on this platform
|
|
|
|
if (p_pref->contains(prefPrefix + "Name")) {
|
2019-07-10 22:13:27 +00:00
|
|
|
// We already have a font, so it becomes desired font (if valid)
|
|
|
|
QString testFont = (*p_pref)[prefPrefix + "Name"].toString();
|
2021-01-16 01:20:36 +00:00
|
|
|
int prefSize = (*p_pref)[prefPrefix+"Size"].toInt();
|
2019-07-10 22:13:27 +00:00
|
|
|
// Is this a good font?
|
2021-01-16 01:20:36 +00:00
|
|
|
if (testFont.length() > 0 ) {
|
|
|
|
qDebug() << which << "Preferences font is" << testFont;
|
|
|
|
if ( installedFontFamilies.indexOf(testFont) >= 0) {
|
|
|
|
desiredFont = testFont;
|
|
|
|
forceFont = false;
|
|
|
|
} else {
|
|
|
|
qDebug() << testFont << prefSize << "not found, substituting" << desiredFont << size;
|
|
|
|
for (int i = 0; i< installedFontFamilies.size(); i++)
|
|
|
|
qDebug() << installedFontFamilies.at(i);
|
|
|
|
}
|
|
|
|
}
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-10 22:13:27 +00:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
// Don't allow private font to be set for anything other than Application font (Mac restricts use to UI)
|
|
|
|
if (which != "Application" && fontdatabase.isPrivateFamily(desiredFont)) {
|
2019-07-11 04:35:14 +00:00
|
|
|
desiredFont = "Helvetica"; // We assume "Helvetica" is universally available on Mac
|
2019-07-10 22:13:27 +00:00
|
|
|
forceFont = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Font not valid or not specified. Set a default font in its place
|
|
|
|
if (forceFont) {
|
|
|
|
(*p_pref)[prefPrefix + "Name"] = desiredFont;
|
|
|
|
(*p_pref)[prefPrefix + "Size"] = size;
|
|
|
|
(*p_pref)[prefPrefix + "Bold"] = bold;
|
|
|
|
(*p_pref)[prefPrefix + "Italic"] = italic;
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
2021-01-16 01:20:36 +00:00
|
|
|
qDebug() << which << "font set to" << desiredFont << "at size" << (*p_pref)[prefPrefix + "Size"];
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setApplicationFont () {
|
2021-01-16 01:20:36 +00:00
|
|
|
qDebug() << "Application font starts out as" << QApplication::font();
|
2019-07-05 01:14:41 +00:00
|
|
|
QFont font = QFont(((*p_pref)["Fonts_Application_Name"]).toString());
|
|
|
|
font.setPointSize(((*p_pref)["Fonts_Application_Size"]).toInt());
|
|
|
|
font.setWeight(((*p_pref)["Fonts_Application_Bold"]).toBool() ? QFont::Bold : QFont::Normal);
|
|
|
|
font.setItalic(((*p_pref)["Fonts_Application_Italic"]).toBool());
|
|
|
|
QApplication::setFont(font);
|
|
|
|
mainwin->menuBar()->setFont(font);
|
2021-01-14 22:20:53 +00:00
|
|
|
qDebug() << "Application font set to" << font;
|
2021-01-15 18:30:34 +00:00
|
|
|
qDebug() << "Application font reads back as" << QApplication::font();
|
|
|
|
qDebug() << "system font is" << QFontDatabase::systemFont(QFontDatabase::GeneralFont).family();
|
2019-07-05 01:14:41 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
bool removeDir(const QString &path)
|
2012-01-11 11:25:36 +00:00
|
|
|
{
|
|
|
|
bool result = true;
|
|
|
|
QDir dir(path);
|
|
|
|
|
|
|
|
if (dir.exists(path)) {
|
2014-04-17 05:58:57 +00:00
|
|
|
Q_FOREACH(QFileInfo info, dir.entryInfoList(QDir::NoDotAndDotDot | QDir::System | QDir::Hidden |
|
|
|
|
QDir::AllDirs | QDir::Files, QDir::DirsFirst)) {
|
2012-01-11 11:25:36 +00:00
|
|
|
if (info.isDir()) { // Recurse to remove this child directory
|
|
|
|
result = removeDir(info.absoluteFilePath());
|
|
|
|
} else { // File
|
|
|
|
result = QFile::remove(info.absoluteFilePath());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = dir.rmdir(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-10-20 12:13:06 +00:00
|
|
|
|
2021-07-08 17:32:50 +00:00
|
|
|
void copyPath(QString src, QString dst, bool overwrite)
|
2014-07-28 13:56:29 +00:00
|
|
|
{
|
|
|
|
QDir dir(src);
|
|
|
|
if (!dir.exists())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Recursively handle directories
|
|
|
|
foreach (QString d, dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot)) {
|
|
|
|
QString dst_path = dst + QDir::separator() + d;
|
|
|
|
dir.mkpath(dst_path);
|
2021-07-08 17:32:50 +00:00
|
|
|
copyPath(src + QDir::separator() + d, dst_path, overwrite);
|
2014-07-28 13:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Files
|
|
|
|
foreach (QString f, dir.entryList(QDir::Files)) {
|
|
|
|
QString srcFile = src + QDir::separator() + f;
|
|
|
|
QString destFile = dst + QDir::separator() + f;
|
|
|
|
|
2021-07-08 17:32:50 +00:00
|
|
|
if (overwrite && QFile::exists(destFile)) {
|
|
|
|
QFile::remove(destFile);
|
|
|
|
}
|
2014-07-28 13:56:29 +00:00
|
|
|
if (!QFile::exists(destFile)) {
|
2020-08-09 17:33:04 +00:00
|
|
|
if (!QFile::copy(srcFile, destFile)) {
|
2020-08-13 00:25:15 +00:00
|
|
|
qWarning() << "copyPath: could not copy" << srcFile << "to" << destFile;
|
2020-08-09 17:33:04 +00:00
|
|
|
}
|
2020-03-09 16:47:54 +00:00
|
|
|
// TODO: Since copyPath is only used by loaders, it should
|
|
|
|
// build the list of files first, and then update the progress bar
|
|
|
|
// while copying.
|
|
|
|
// TODO: copyPath should also either hide the abort button
|
|
|
|
// or respond to it.
|
|
|
|
QCoreApplication::processEvents();
|
2014-07-28 13:56:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-13 04:13:47 +00:00
|
|
|
QString GFXEngineNames[MaxGFXEngine+1]; // Set by initializeStrings()
|
2014-07-28 13:56:29 +00:00
|
|
|
|
2018-04-25 19:50:54 +00:00
|
|
|
QString STR_UNIT_M;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_UNIT_CM;
|
|
|
|
QString STR_UNIT_INCH;
|
|
|
|
QString STR_UNIT_FOOT;
|
|
|
|
QString STR_UNIT_POUND;
|
|
|
|
QString STR_UNIT_OUNCE;
|
|
|
|
QString STR_UNIT_KG;
|
|
|
|
QString STR_UNIT_CMH2O;
|
|
|
|
QString STR_UNIT_Hours;
|
2014-05-17 05:04:40 +00:00
|
|
|
QString STR_UNIT_Minutes;
|
|
|
|
QString STR_UNIT_Seconds;
|
2016-03-17 03:38:50 +00:00
|
|
|
QString STR_UNIT_h;
|
|
|
|
QString STR_UNIT_m;
|
|
|
|
QString STR_UNIT_s;
|
|
|
|
QString STR_UNIT_ms;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_UNIT_BPM; // Beats per Minute
|
|
|
|
QString STR_UNIT_LPM; // Litres per Minute
|
2014-07-02 03:22:09 +00:00
|
|
|
QString STR_UNIT_ml; // MilliLitres
|
|
|
|
QString STR_UNIT_Litres;
|
2014-05-17 05:04:40 +00:00
|
|
|
QString STR_UNIT_Hz;
|
|
|
|
QString STR_UNIT_EventsPerHour;
|
|
|
|
QString STR_UNIT_BreathsPerMinute;
|
|
|
|
QString STR_UNIT_Percentage;
|
|
|
|
QString STR_UNIT_Unknown;
|
|
|
|
QString STR_UNIT_Ratio;
|
2014-07-21 16:14:07 +00:00
|
|
|
QString STR_UNIT_Severity;
|
2014-05-17 05:04:40 +00:00
|
|
|
QString STR_UNIT_Degrees;
|
|
|
|
|
|
|
|
QString STR_MessageBox_Question;
|
|
|
|
QString STR_MessageBox_Error;
|
|
|
|
QString STR_MessageBox_Warning;
|
|
|
|
QString STR_MessageBox_Information;
|
|
|
|
QString STR_MessageBox_Busy;
|
|
|
|
QString STR_MessageBox_PleaseNote;
|
|
|
|
QString STR_MessageBox_Yes;
|
|
|
|
QString STR_MessageBox_No;
|
|
|
|
QString STR_MessageBox_Cancel;
|
|
|
|
QString STR_MessageBox_Destroy;
|
|
|
|
QString STR_MessageBox_Save;
|
2013-10-20 12:13:06 +00:00
|
|
|
|
2014-08-21 08:04:25 +00:00
|
|
|
QString STR_Empty_NoData;
|
|
|
|
QString STR_Empty_Brick;
|
|
|
|
QString STR_Empty_NoGraphs;
|
|
|
|
QString STR_Empty_SummaryOnly;
|
|
|
|
QString STR_Empty_NoSessions;
|
|
|
|
|
2013-10-20 12:13:06 +00:00
|
|
|
|
|
|
|
QString STR_TR_BMI; // Short form of Body Mass Index
|
|
|
|
QString STR_TR_Weight;
|
|
|
|
QString STR_TR_Zombie;
|
|
|
|
QString STR_TR_PulseRate; // Pulse / Heart rate
|
|
|
|
QString STR_TR_SpO2;
|
|
|
|
QString STR_TR_Plethy; // Plethysomogram
|
|
|
|
QString STR_TR_Pressure;
|
|
|
|
|
|
|
|
QString STR_TR_Daily;
|
2018-04-22 12:06:48 +00:00
|
|
|
QString STR_TR_Profile;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_Overview;
|
|
|
|
QString STR_TR_Oximetry;
|
|
|
|
|
|
|
|
QString STR_TR_Oximeter;
|
|
|
|
QString STR_TR_EventFlags;
|
|
|
|
|
2014-04-15 13:59:24 +00:00
|
|
|
QString STR_TR_Inclination;
|
|
|
|
QString STR_TR_Orientation;
|
2020-01-23 17:51:58 +00:00
|
|
|
QString STR_TR_Motion;
|
2014-04-15 13:59:24 +00:00
|
|
|
|
|
|
|
|
2013-10-20 12:13:06 +00:00
|
|
|
// Machine type names.
|
|
|
|
QString STR_TR_CPAP; // Constant Positive Airway Pressure
|
|
|
|
QString STR_TR_BIPAP; // Bi-Level Positive Airway Pressure
|
|
|
|
QString STR_TR_BiLevel; // Another name for BiPAP
|
|
|
|
QString STR_TR_EPAP; // Expiratory Positive Airway Pressure
|
2013-11-19 04:42:10 +00:00
|
|
|
QString STR_TR_EPAPLo; // Expiratory Positive Airway Pressure, Low
|
|
|
|
QString STR_TR_EPAPHi; // Expiratory Positive Airway Pressure, High
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_IPAP; // Inspiratory Positive Airway Pressure
|
|
|
|
QString STR_TR_IPAPLo; // Inspiratory Positive Airway Pressure, Low
|
|
|
|
QString STR_TR_IPAPHi; // Inspiratory Positive Airway Pressure, High
|
|
|
|
QString STR_TR_APAP; // Automatic Positive Airway Pressure
|
|
|
|
QString STR_TR_ASV; // Assisted Servo Ventilator
|
2016-02-28 15:44:59 +00:00
|
|
|
QString STR_TR_AVAPS; // Average Volume Assured Pressure Support
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_STASV;
|
|
|
|
|
|
|
|
QString STR_TR_Humidifier;
|
|
|
|
|
|
|
|
QString STR_TR_H; // Short form of Hypopnea
|
|
|
|
QString STR_TR_OA; // Short form of Obstructive Apnea
|
2021-07-25 04:12:15 +00:00
|
|
|
QString STR_TR_A; // Short form of Apnea
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_UA; // Short form of Unspecified Apnea
|
|
|
|
QString STR_TR_CA; // Short form of Clear Airway Apnea
|
|
|
|
QString STR_TR_FL; // Short form of Flow Limitation
|
2014-05-15 03:51:32 +00:00
|
|
|
QString STR_TR_SA; // Short form of SensAwake
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_LE; // Short form of Leak Event
|
|
|
|
QString STR_TR_EP; // Short form of Expiratory Puff
|
|
|
|
QString STR_TR_VS; // Short form of Vibratory Snore
|
|
|
|
QString STR_TR_VS2; // Short form of Secondary Vibratory Snore (Some Philips Respironics Machines have two sources)
|
|
|
|
QString STR_TR_RERA; // Acronym for Respiratory Effort Related Arousal
|
|
|
|
QString STR_TR_PP; // Short form for Pressure Pulse
|
|
|
|
QString STR_TR_P; // Short form for Pressure Event
|
|
|
|
QString STR_TR_RE; // Short form of Respiratory Effort Related Arousal
|
|
|
|
QString STR_TR_NR; // Short form of Non Responding event? (forgot sorry)
|
|
|
|
QString STR_TR_NRI; // Sorry I Forgot.. it's a flag on Intellipap machines
|
|
|
|
QString STR_TR_O2; // SpO2 Desaturation
|
|
|
|
QString STR_TR_PC; // Short form for Pulse Change
|
|
|
|
QString STR_TR_UF1; // Short form for User Flag 1
|
|
|
|
QString STR_TR_UF2; // Short form for User Flag 2
|
|
|
|
QString STR_TR_UF3; // Short form for User Flag 3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QString STR_TR_PS; // Short form of Pressure Support
|
|
|
|
QString STR_TR_AHI; // Short form of Apnea Hypopnea Index
|
|
|
|
QString STR_TR_RDI; // Short form of Respiratory Distress Index
|
|
|
|
QString STR_TR_AI; // Short form of Apnea Index
|
|
|
|
QString STR_TR_HI; // Short form of Hypopnea Index
|
|
|
|
QString STR_TR_UAI; // Short form of Uncatagorized Apnea Index
|
|
|
|
QString STR_TR_CAI; // Short form of Clear Airway Index
|
|
|
|
QString STR_TR_FLI; // Short form of Flow Limitation Index
|
2014-05-15 03:51:32 +00:00
|
|
|
//QString STR_TR_SAI; // Short form of SensAwake Index
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_REI; // Short form of RERA Index
|
|
|
|
QString STR_TR_EPI; // Short form of Expiratory Puff Index
|
|
|
|
QString STR_TR_CSR; // Short form of Cheyne Stokes Respiration
|
|
|
|
QString STR_TR_PB; // Short form of Periodic Breathing
|
|
|
|
|
|
|
|
|
|
|
|
// Graph Titles
|
|
|
|
QString STR_TR_IE; // Inspiratory Expiratory Ratio
|
|
|
|
QString STR_TR_InspTime; // Inspiratory Time
|
|
|
|
QString STR_TR_ExpTime; // Expiratory Time
|
|
|
|
QString STR_TR_RespEvent; // Respiratory Event
|
|
|
|
QString STR_TR_FlowLimitation;
|
|
|
|
QString STR_TR_FlowLimit;
|
2014-05-15 03:51:32 +00:00
|
|
|
//QString STR_TR_FlowLimitation;
|
|
|
|
QString STR_TR_SensAwake;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_PatTrigBreath; // Patient Triggered Breath
|
|
|
|
QString STR_TR_TgtMinVent; // Target Minute Ventilation
|
|
|
|
QString STR_TR_TargetVent; // Target Ventilation
|
|
|
|
QString STR_TR_MinuteVent; // Minute Ventilation
|
|
|
|
QString STR_TR_TidalVolume;
|
|
|
|
QString STR_TR_RespRate; // Respiratory Rate
|
|
|
|
QString STR_TR_Snore;
|
|
|
|
QString STR_TR_Leak;
|
|
|
|
QString STR_TR_Leaks;
|
2014-05-03 08:28:05 +00:00
|
|
|
QString STR_TR_LargeLeak;
|
|
|
|
QString STR_TR_LL;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_TotalLeaks;
|
|
|
|
QString STR_TR_UnintentionalLeaks;
|
|
|
|
QString STR_TR_MaskPressure;
|
|
|
|
QString STR_TR_FlowRate;
|
|
|
|
QString STR_TR_SleepStage;
|
|
|
|
QString STR_TR_Usage;
|
|
|
|
QString STR_TR_Sessions;
|
|
|
|
QString STR_TR_PrRelief; // Pressure Relief
|
|
|
|
|
|
|
|
QString STR_TR_Bookmarks;
|
2019-02-24 00:58:25 +00:00
|
|
|
QString STR_TR_OSCAR;
|
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
|
|
|
//QString STR_TR_AppVersion;
|
2013-10-20 12:13:06 +00:00
|
|
|
|
2016-03-03 04:48:08 +00:00
|
|
|
QString STR_TR_Default;
|
|
|
|
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_Mode;
|
|
|
|
QString STR_TR_Model;
|
|
|
|
QString STR_TR_Brand;
|
|
|
|
QString STR_TR_Serial;
|
2014-07-30 17:14:28 +00:00
|
|
|
QString STR_TR_Series;
|
2013-10-20 12:13:06 +00:00
|
|
|
QString STR_TR_Machine;
|
|
|
|
QString STR_TR_Channel;
|
|
|
|
QString STR_TR_Settings;
|
|
|
|
|
|
|
|
QString STR_TR_Name;
|
|
|
|
QString STR_TR_DOB; // Date of Birth
|
|
|
|
QString STR_TR_Phone;
|
|
|
|
QString STR_TR_Address;
|
|
|
|
QString STR_TR_Email;
|
|
|
|
QString STR_TR_PatientID;
|
|
|
|
QString STR_TR_Date;
|
|
|
|
|
|
|
|
QString STR_TR_BedTime;
|
|
|
|
QString STR_TR_WakeUp;
|
|
|
|
QString STR_TR_MaskTime;
|
|
|
|
QString STR_TR_Unknown;
|
|
|
|
QString STR_TR_None;
|
|
|
|
QString STR_TR_Ready;
|
|
|
|
|
|
|
|
QString STR_TR_First;
|
|
|
|
QString STR_TR_Last;
|
|
|
|
QString STR_TR_Start;
|
|
|
|
QString STR_TR_End;
|
|
|
|
QString STR_TR_On;
|
|
|
|
QString STR_TR_Off;
|
2014-08-04 16:12:49 +00:00
|
|
|
QString STR_TR_Yes;
|
|
|
|
QString STR_TR_No;
|
2013-10-20 12:13:06 +00:00
|
|
|
|
|
|
|
QString STR_TR_Min; // Minimum
|
|
|
|
QString STR_TR_Max; // Maximum
|
2014-05-14 13:35:55 +00:00
|
|
|
QString STR_TR_Med; // Median
|
2013-10-20 12:13:06 +00:00
|
|
|
|
|
|
|
QString STR_TR_Average;
|
|
|
|
QString STR_TR_Median;
|
|
|
|
QString STR_TR_Avg; // Short form of Average
|
|
|
|
QString STR_TR_WAvg; // Short form of Weighted Average
|
|
|
|
|
|
|
|
void initializeStrings()
|
|
|
|
{
|
2018-06-13 04:13:47 +00:00
|
|
|
GFXEngineNames[GFX_Software] = QObject::tr("Software Engine");
|
|
|
|
GFXEngineNames[GFX_ANGLE] = QObject::tr("ANGLE / OpenGLES");
|
|
|
|
GFXEngineNames[GFX_OpenGL] = QObject::tr("Desktop OpenGL");
|
2018-06-12 12:55:44 +00:00
|
|
|
|
2018-04-25 19:50:54 +00:00
|
|
|
STR_UNIT_M = QObject::tr(" m");
|
|
|
|
STR_UNIT_CM = QObject::tr(" cm");
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_UNIT_INCH = QObject::tr("\"");
|
|
|
|
STR_UNIT_FOOT = QObject::tr("ft");
|
|
|
|
STR_UNIT_POUND = QObject::tr("lb");
|
|
|
|
STR_UNIT_OUNCE = QObject::tr("oz");
|
|
|
|
STR_UNIT_KG = QObject::tr("Kg");
|
|
|
|
STR_UNIT_CMH2O = QObject::tr("cmH2O");
|
|
|
|
STR_UNIT_Hours = QObject::tr("Hours");
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_Minutes = QObject::tr("Minutes");
|
|
|
|
STR_UNIT_Seconds = QObject::tr("Seconds");
|
2016-03-17 03:38:50 +00:00
|
|
|
STR_UNIT_h = QObject::tr("h"); // hours shortform
|
|
|
|
STR_UNIT_m = QObject::tr("m"); // minutes shortform
|
|
|
|
STR_UNIT_s = QObject::tr("s"); // seconds shortform
|
|
|
|
STR_UNIT_ms = QObject::tr("ms"); // milliseconds
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_EventsPerHour = QObject::tr("Events/hr"); // Events per hour
|
|
|
|
STR_UNIT_Percentage = QObject::tr("%");
|
|
|
|
STR_UNIT_Hz = QObject::tr("Hz"); // Hertz
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_UNIT_BPM = QObject::tr("bpm"); // Beats per Minute
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_LPM = QObject::tr("L/min"); // Litres per Minute
|
2014-07-02 03:22:09 +00:00
|
|
|
STR_UNIT_Litres = QObject::tr("Litres");
|
|
|
|
STR_UNIT_ml = QObject::tr("ml"); // millilitres
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_BreathsPerMinute = QObject::tr("Breaths/min"); // Breaths per minute
|
2014-07-21 16:14:07 +00:00
|
|
|
STR_UNIT_Unknown = QObject::tr("?");
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_Ratio = QObject::tr("ratio");
|
2014-07-21 16:14:07 +00:00
|
|
|
STR_UNIT_Severity = QObject::tr("Severity (0-1)");
|
2014-05-17 05:04:40 +00:00
|
|
|
STR_UNIT_Degrees = QObject::tr("Degrees");
|
|
|
|
|
|
|
|
STR_MessageBox_Question = QObject::tr("Question");
|
|
|
|
STR_MessageBox_Error = QObject::tr("Error");
|
|
|
|
STR_MessageBox_Warning = QObject::tr("Warning");
|
|
|
|
STR_MessageBox_Information = QObject::tr("Information");
|
|
|
|
STR_MessageBox_Busy = QObject::tr("Busy");
|
|
|
|
STR_MessageBox_PleaseNote = QObject::tr("Please Note");
|
|
|
|
|
2014-08-21 14:16:23 +00:00
|
|
|
STR_Empty_NoData = QObject::tr("No Data Available");
|
2014-08-21 08:04:25 +00:00
|
|
|
STR_Empty_Brick = QObject::tr("Compliance Only :(");
|
2014-08-21 14:16:23 +00:00
|
|
|
STR_Empty_NoGraphs = QObject::tr("Graphs Switched Off");
|
2014-08-21 08:04:25 +00:00
|
|
|
STR_Empty_SummaryOnly = QObject::tr("Summary Only :(");
|
2014-08-21 14:16:23 +00:00
|
|
|
STR_Empty_NoSessions = QObject::tr("Sessions Switched Off");
|
2014-08-21 08:04:25 +00:00
|
|
|
|
|
|
|
|
2014-05-17 05:04:40 +00:00
|
|
|
// Dialog box options
|
|
|
|
STR_MessageBox_Yes = QObject::tr("&Yes");
|
|
|
|
STR_MessageBox_No = QObject::tr("&No");
|
|
|
|
STR_MessageBox_Cancel = QObject::tr("&Cancel");
|
|
|
|
STR_MessageBox_Destroy = QObject::tr("&Destroy");;
|
|
|
|
STR_MessageBox_Save = QObject::tr("&Save");
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
STR_TR_BMI = QObject::tr("BMI"); // Short form of Body Mass Index
|
|
|
|
STR_TR_Weight = QObject::tr("Weight");
|
|
|
|
STR_TR_Zombie = QObject::tr("Zombie");
|
|
|
|
STR_TR_PulseRate = QObject::tr("Pulse Rate"); // Pulse / Heart rate
|
|
|
|
STR_TR_SpO2 = QObject::tr("SpO2");
|
|
|
|
STR_TR_Plethy = QObject::tr("Plethy"); // Plethysomogram
|
|
|
|
STR_TR_Pressure = QObject::tr("Pressure");
|
|
|
|
|
|
|
|
STR_TR_Daily = QObject::tr("Daily");
|
2018-04-22 12:06:48 +00:00
|
|
|
STR_TR_Profile = QObject::tr("Profile");
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_Overview = QObject::tr("Overview");
|
|
|
|
STR_TR_Oximetry = QObject::tr("Oximetry");
|
|
|
|
|
|
|
|
STR_TR_Oximeter = QObject::tr("Oximeter");
|
|
|
|
STR_TR_EventFlags = QObject::tr("Event Flags");
|
2013-10-20 12:13:06 +00:00
|
|
|
|
2016-03-03 04:48:08 +00:00
|
|
|
|
|
|
|
STR_TR_Default = QObject::tr("Default");
|
|
|
|
|
2013-10-20 12:13:06 +00:00
|
|
|
// Machine type names.
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_CPAP = QObject::tr("CPAP"); // Constant Positive Airway Pressure
|
|
|
|
STR_TR_BIPAP = QObject::tr("BiPAP"); // Bi-Level Positive Airway Pressure
|
|
|
|
STR_TR_BiLevel = QObject::tr("Bi-Level"); // Another name for BiPAP
|
|
|
|
STR_TR_EPAP = QObject::tr("EPAP"); // Expiratory Positive Airway Pressure
|
|
|
|
STR_TR_EPAPLo = QObject::tr("Min EPAP"); // Lower Expiratory Positive Airway Pressure
|
|
|
|
STR_TR_EPAPHi = QObject::tr("Max EPAP"); // Higher Expiratory Positive Airway Pressure
|
|
|
|
STR_TR_IPAP = QObject::tr("IPAP"); // Inspiratory Positive Airway Pressure
|
|
|
|
STR_TR_IPAPLo = QObject::tr("Min IPAP"); // Lower Inspiratory Positive Airway Pressure
|
|
|
|
STR_TR_IPAPHi = QObject::tr("Max IPAP"); // Higher Inspiratory Positive Airway Pressure
|
|
|
|
STR_TR_APAP = QObject::tr("APAP"); // Automatic Positive Airway Pressure
|
|
|
|
STR_TR_ASV = QObject::tr("ASV"); // Assisted Servo Ventilator
|
2016-02-28 15:44:59 +00:00
|
|
|
STR_TR_AVAPS = QObject::tr("AVAPS"); // Average Volume Assured Pressure Support
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_STASV = QObject::tr("ST/ASV");
|
|
|
|
|
|
|
|
STR_TR_Humidifier = QObject::tr("Humidifier");
|
|
|
|
|
|
|
|
STR_TR_H = QObject::tr("H"); // Short form of Hypopnea
|
|
|
|
STR_TR_OA = QObject::tr("OA"); // Short form of Obstructive Apnea
|
2021-07-25 04:12:15 +00:00
|
|
|
STR_TR_A = QObject::tr("A"); // Short form of All Apnea
|
|
|
|
STR_TR_UA = QObject::tr("UA"); // Short form of Unspecified Apnea
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_CA = QObject::tr("CA"); // Short form of Clear Airway Apnea
|
|
|
|
STR_TR_FL = QObject::tr("FL"); // Short form of Flow Limitation
|
2014-05-15 03:51:32 +00:00
|
|
|
STR_TR_SA = QObject::tr("SA"); // Short form of Flow Limitation
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_LE = QObject::tr("LE"); // Short form of Leak Event
|
|
|
|
STR_TR_EP = QObject::tr("EP"); // Short form of Expiratory Puff
|
|
|
|
STR_TR_VS = QObject::tr("VS"); // Short form of Vibratory Snore
|
|
|
|
STR_TR_VS2 =
|
|
|
|
QObject::tr("VS2"); // Short form of Secondary Vibratory Snore (Some Philips Respironics Machines have two sources)
|
|
|
|
STR_TR_RERA = QObject::tr("RERA"); // Acronym for Respiratory Effort Related Arousal
|
|
|
|
STR_TR_PP = QObject::tr("PP"); // Short form for Pressure Pulse
|
|
|
|
STR_TR_P = QObject::tr("P"); // Short form for Pressure Event
|
|
|
|
STR_TR_RE = QObject::tr("RE"); // Short form of Respiratory Effort Related Arousal
|
|
|
|
STR_TR_NR = QObject::tr("NR"); // Short form of Non Responding event? (forgot sorry)
|
|
|
|
STR_TR_NRI = QObject::tr("NRI"); // Sorry I Forgot.. it's a flag on Intellipap machines
|
|
|
|
STR_TR_O2 = QObject::tr("O2"); // SpO2 Desaturation
|
|
|
|
STR_TR_PC = QObject::tr("PC"); // Short form for Pulse Change
|
|
|
|
STR_TR_UF1 = QObject::tr("UF1"); // Short form for User Flag 1
|
|
|
|
STR_TR_UF2 = QObject::tr("UF2"); // Short form for User Flag 2
|
|
|
|
STR_TR_UF3 = QObject::tr("UF3"); // Short form for User Flag 3
|
|
|
|
|
|
|
|
STR_TR_PS = QObject::tr("PS"); // Short form of Pressure Support
|
|
|
|
STR_TR_AHI = QObject::tr("AHI"); // Short form of Apnea Hypopnea Index
|
|
|
|
STR_TR_RDI = QObject::tr("RDI"); // Short form of Respiratory Distress Index
|
|
|
|
STR_TR_AI = QObject::tr("AI"); // Short form of Apnea Index
|
|
|
|
STR_TR_HI = QObject::tr("HI"); // Short form of Hypopnea Index
|
|
|
|
STR_TR_UAI = QObject::tr("UAI"); // Short form of Uncatagorized Apnea Index
|
|
|
|
STR_TR_CAI = QObject::tr("CAI"); // Short form of Clear Airway Index
|
|
|
|
STR_TR_FLI = QObject::tr("FLI"); // Short form of Flow Limitation Index
|
2014-05-15 03:51:32 +00:00
|
|
|
// STR_TR_SAI = QObject::tr("SAI"); // Short form of SleepAwake Index
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_REI = QObject::tr("REI"); // Short form of RERA Index
|
|
|
|
STR_TR_EPI = QObject::tr("EPI"); // Short form of Expiratory Puff Index
|
2020-03-10 01:15:02 +00:00
|
|
|
STR_TR_CSR = QObject::tr("CSR"); // Short form of Cheyne Stokes Respiration
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_PB = QObject::tr("PB"); // Short form of Periodic Breathing
|
2013-10-20 12:13:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Graph Titles
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_IE = QObject::tr("IE"); // Inspiratory Expiratory Ratio
|
|
|
|
STR_TR_InspTime = QObject::tr("Insp. Time"); // Inspiratory Time
|
|
|
|
STR_TR_ExpTime = QObject::tr("Exp. Time"); // Expiratory Time
|
|
|
|
STR_TR_RespEvent = QObject::tr("Resp. Event"); // Respiratory Event
|
|
|
|
STR_TR_FlowLimitation = QObject::tr("Flow Limitation");
|
|
|
|
STR_TR_FlowLimit = QObject::tr("Flow Limit");
|
2014-05-15 03:51:32 +00:00
|
|
|
STR_TR_SensAwake = QObject::tr("SensAwake");
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_PatTrigBreath = QObject::tr("Pat. Trig. Breath"); // Patient Triggered Breath
|
|
|
|
STR_TR_TgtMinVent = QObject::tr("Tgt. Min. Vent"); // Target Minute Ventilation
|
|
|
|
STR_TR_TargetVent = QObject::tr("Target Vent."); // Target Ventilation
|
|
|
|
STR_TR_MinuteVent = QObject::tr("Minute Vent."); // Minute Ventilation
|
|
|
|
STR_TR_TidalVolume = QObject::tr("Tidal Volume");
|
|
|
|
STR_TR_RespRate = QObject::tr("Resp. Rate"); // Respiratory Rate
|
|
|
|
STR_TR_Snore = QObject::tr("Snore");
|
|
|
|
STR_TR_Leak = QObject::tr("Leak");
|
|
|
|
STR_TR_Leaks = QObject::tr("Leaks");
|
2014-05-03 08:28:05 +00:00
|
|
|
STR_TR_LargeLeak = QObject::tr("Large Leak");
|
|
|
|
STR_TR_LL = QObject::tr("LL"); // Large Leak
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_TotalLeaks = QObject::tr("Total Leaks");
|
|
|
|
STR_TR_UnintentionalLeaks = QObject::tr("Unintentional Leaks");
|
|
|
|
STR_TR_MaskPressure = QObject::tr("MaskPressure");
|
|
|
|
STR_TR_FlowRate = QObject::tr("Flow Rate");
|
|
|
|
STR_TR_SleepStage = QObject::tr("Sleep Stage");
|
|
|
|
STR_TR_Usage = QObject::tr("Usage");
|
|
|
|
STR_TR_Sessions = QObject::tr("Sessions");
|
|
|
|
STR_TR_PrRelief = QObject::tr("Pr. Relief"); // Pressure Relief
|
|
|
|
|
|
|
|
STR_TR_Bookmarks = QObject::tr("Bookmarks");
|
2019-02-24 00:58:25 +00:00
|
|
|
STR_TR_OSCAR = QObject::tr("OSCAR");
|
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
|
|
|
//STR_TR_AppVersion = QObject::tr("v%1").arg(getVersion());
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
STR_TR_Mode = QObject::tr("Mode");
|
|
|
|
STR_TR_Model = QObject::tr("Model");
|
|
|
|
STR_TR_Brand = QObject::tr("Brand");
|
|
|
|
STR_TR_Serial = QObject::tr("Serial");
|
2014-07-30 17:14:28 +00:00
|
|
|
STR_TR_Series = QObject::tr("Series");
|
2014-04-17 05:58:57 +00:00
|
|
|
STR_TR_Machine = QObject::tr("Machine");
|
|
|
|
STR_TR_Channel = QObject::tr("Channel");
|
|
|
|
STR_TR_Settings = QObject::tr("Settings");
|
|
|
|
|
|
|
|
STR_TR_Inclination = QObject::tr("Inclination");
|
|
|
|
STR_TR_Orientation = QObject::tr("Orientation");
|
2020-01-23 17:51:58 +00:00
|
|
|
STR_TR_Motion = QObject::tr("Motion");
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
STR_TR_Name = QObject::tr("Name");
|
|
|
|
STR_TR_DOB = QObject::tr("DOB"); // Date of Birth
|
|
|
|
STR_TR_Phone = QObject::tr("Phone");
|
|
|
|
STR_TR_Address = QObject::tr("Address");
|
|
|
|
STR_TR_Email = QObject::tr("Email");
|
|
|
|
STR_TR_PatientID = QObject::tr("Patient ID");
|
|
|
|
STR_TR_Date = QObject::tr("Date");
|
|
|
|
|
|
|
|
STR_TR_BedTime = QObject::tr("Bedtime");
|
|
|
|
STR_TR_WakeUp = QObject::tr("Wake-up");
|
|
|
|
STR_TR_MaskTime = QObject::tr("Mask Time");
|
|
|
|
STR_TR_Unknown = QObject::tr("Unknown");
|
|
|
|
STR_TR_None = QObject::tr("None");
|
|
|
|
STR_TR_Ready = QObject::tr("Ready");
|
|
|
|
|
|
|
|
STR_TR_First = QObject::tr("First");
|
|
|
|
STR_TR_Last = QObject::tr("Last");
|
|
|
|
STR_TR_Start = QObject::tr("Start");
|
|
|
|
STR_TR_End = QObject::tr("End");
|
|
|
|
STR_TR_On = QObject::tr("On");
|
|
|
|
STR_TR_Off = QObject::tr("Off");
|
2014-08-04 16:12:49 +00:00
|
|
|
STR_TR_Yes = QObject::tr("Yes");
|
|
|
|
STR_TR_No = QObject::tr("No");
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
STR_TR_Min = QObject::tr("Min"); // Minimum
|
|
|
|
STR_TR_Max = QObject::tr("Max"); // Maximum
|
2014-05-17 08:34:16 +00:00
|
|
|
STR_TR_Med = QObject::tr("Med"); // Median
|
2014-04-17 05:58:57 +00:00
|
|
|
|
|
|
|
STR_TR_Average = QObject::tr("Average");
|
|
|
|
STR_TR_Median = QObject::tr("Median");
|
|
|
|
STR_TR_Avg = QObject::tr("Avg"); // Average
|
|
|
|
STR_TR_WAvg = QObject::tr("W-Avg"); // Weighted Average
|
2013-10-20 12:13:06 +00:00
|
|
|
}
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
quint32 CRC32(const char * data, quint32 length)
|
|
|
|
{
|
|
|
|
quint32 crc32 = 0xffffffff;
|
|
|
|
|
|
|
|
for (quint32 idx=0; idx<length; idx++) {
|
|
|
|
|
|
|
|
quint32 i = (data[idx]) ^ ((crc32) & 0x000000ff);
|
|
|
|
|
|
|
|
for(int j=8; j > 0; j--) {
|
|
|
|
if (i & 1) {
|
|
|
|
i = (i >> 1) ^ 0xedb88320;
|
|
|
|
} else {
|
|
|
|
i >>= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
crc32 = ((crc32) >> 8) ^ i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ~crc32;
|
|
|
|
}
|
|
|
|
|
|
|
|
quint32 crc32buf(const QByteArray& data)
|
|
|
|
{
|
|
|
|
return CRC32(data.constData(), data.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gzip function
|
|
|
|
QByteArray gCompress(const QByteArray& data)
|
|
|
|
{
|
|
|
|
QByteArray compressedData = qCompress(data);
|
|
|
|
// Strip the first six bytes (a 4-byte length put on by qCompress and a 2-byte zlib header)
|
|
|
|
// and the last four bytes (a zlib integrity check).
|
|
|
|
compressedData.remove(0, 6);
|
|
|
|
compressedData.chop(4);
|
|
|
|
|
|
|
|
QByteArray header;
|
|
|
|
QDataStream ds1(&header, QIODevice::WriteOnly);
|
|
|
|
// Prepend a generic 10-byte gzip header (see RFC 1952),
|
|
|
|
ds1 << quint16(0x1f8b)
|
|
|
|
<< quint16(0x0800)
|
|
|
|
<< quint16(0x0000)
|
|
|
|
<< quint16(0x0000)
|
|
|
|
<< quint16(0x000b);
|
|
|
|
|
|
|
|
// Append a four-byte CRC-32 of the uncompressed data
|
|
|
|
// Append 4 bytes uncompressed input size modulo 2^32
|
|
|
|
QByteArray footer;
|
|
|
|
QDataStream ds2(&footer, QIODevice::WriteOnly);
|
|
|
|
ds2.setByteOrder(QDataStream::LittleEndian);
|
|
|
|
ds2 << crc32buf(data)
|
|
|
|
<< quint32(data.size());
|
|
|
|
|
|
|
|
return header + compressedData + footer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Pinched from http://stackoverflow.com/questions/2690328/qt-quncompress-gzip-data
|
2018-05-06 16:59:50 +00:00
|
|
|
QByteArray gUncompress(const QByteArray & data)
|
2014-09-29 14:41:31 +00:00
|
|
|
{
|
|
|
|
if (data.size() <= 4) {
|
|
|
|
qWarning("gUncompress: Input data is truncated");
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray result;
|
|
|
|
|
|
|
|
int ret;
|
|
|
|
z_stream strm;
|
2018-05-06 16:59:50 +00:00
|
|
|
static const int CHUNK_SIZE = 1048576;
|
2018-06-07 00:09:06 +00:00
|
|
|
char *out = new char [CHUNK_SIZE];
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
|
|
/* allocate inflate state */
|
|
|
|
strm.zalloc = Z_NULL;
|
|
|
|
strm.zfree = Z_NULL;
|
|
|
|
strm.opaque = Z_NULL;
|
|
|
|
strm.avail_in = data.size();
|
|
|
|
strm.next_in = (Bytef*)(data.data());
|
|
|
|
|
|
|
|
ret = inflateInit2(&strm, 15 + 32); // gzip decoding
|
2018-06-07 00:09:06 +00:00
|
|
|
if (ret != Z_OK) {
|
|
|
|
delete [] out;
|
2014-09-29 14:41:31 +00:00
|
|
|
return QByteArray();
|
2018-06-07 00:09:06 +00:00
|
|
|
}
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
|
|
// run inflate()
|
|
|
|
do {
|
|
|
|
strm.avail_out = CHUNK_SIZE;
|
|
|
|
strm.next_out = (Bytef*)(out);
|
|
|
|
|
|
|
|
ret = inflate(&strm, Z_NO_FLUSH);
|
2018-04-25 10:34:23 +00:00
|
|
|
if (ret == Z_STREAM_ERROR) {
|
|
|
|
qWarning() << "ret == Z_STREAM_ERROR in gzUncompress in common.cpp";
|
2018-06-07 00:09:06 +00:00
|
|
|
delete [] out;
|
2018-04-25 10:34:23 +00:00
|
|
|
return QByteArray();
|
|
|
|
}
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case Z_NEED_DICT:
|
2019-05-08 21:06:17 +00:00
|
|
|
ret = Z_DATA_ERROR;
|
|
|
|
// fall through
|
2014-09-29 14:41:31 +00:00
|
|
|
case Z_DATA_ERROR:
|
|
|
|
case Z_MEM_ERROR:
|
2018-03-28 06:22:42 +00:00
|
|
|
Q_UNUSED(ret)
|
2014-09-29 14:41:31 +00:00
|
|
|
(void)inflateEnd(&strm);
|
2018-06-07 00:09:06 +00:00
|
|
|
delete [] out;
|
2014-09-29 14:41:31 +00:00
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
result.append(out, CHUNK_SIZE - strm.avail_out);
|
|
|
|
} while (strm.avail_out == 0);
|
|
|
|
|
|
|
|
// clean up and return
|
|
|
|
inflateEnd(&strm);
|
2018-06-07 00:09:06 +00:00
|
|
|
delete [] out;
|
2014-09-29 14:41:31 +00:00
|
|
|
return result;
|
|
|
|
}
|