2018-04-22 12:06:48 +00:00
|
|
|
|
/* Common GUI Functions Implementation
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +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
|
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
|
* distribution for more details. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
#include <QGLWidget>
|
|
|
|
|
#include <QOpenGLFunctions>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
#include "SleepLib/common.h"
|
2011-11-15 21:22:08 +00:00
|
|
|
|
#include "common_gui.h"
|
2013-01-17 22:10:15 +00:00
|
|
|
|
|
|
|
|
|
#ifndef BUILD_WITH_MSVC
|
2014-04-17 03:38:26 +00:00
|
|
|
|
# include <unistd.h>
|
2013-01-17 22:10:15 +00:00
|
|
|
|
#endif
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
QString getOpenGLVersionString()
|
|
|
|
|
{
|
|
|
|
|
static QString glversion;
|
|
|
|
|
|
|
|
|
|
if (glversion.isEmpty()) {
|
|
|
|
|
QGLWidget w;
|
|
|
|
|
w.makeCurrent();
|
|
|
|
|
|
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,4,0)
|
|
|
|
|
glversion = QString(QLatin1String(reinterpret_cast<const char*>(glGetString(GL_VERSION))));
|
|
|
|
|
#else
|
|
|
|
|
QOpenGLFunctions f;
|
|
|
|
|
f.initializeOpenGLFunctions();
|
|
|
|
|
glversion = QString(QLatin1String(reinterpret_cast<const char*>(f.glGetString(GL_VERSION))));
|
|
|
|
|
#endif
|
|
|
|
|
qDebug() << "OpenGL Version:" << glversion;
|
|
|
|
|
}
|
|
|
|
|
return glversion;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float getOpenGLVersion()
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString getGraphicsEngine()
|
|
|
|
|
{
|
|
|
|
|
QString gfxEngine = QString();
|
|
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
|
gfxEngine = CSTR_GFX_BrokenGL;
|
|
|
|
|
#else
|
|
|
|
|
QString glversion = getOpenGLVersionString();
|
|
|
|
|
if (glversion.contains(CSTR_GFX_ANGLE)) {
|
|
|
|
|
gfxEngine = CSTR_GFX_ANGLE;
|
|
|
|
|
} else {
|
|
|
|
|
gfxEngine = CSTR_GFX_OpenGL;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return gfxEngine;
|
|
|
|
|
}
|
|
|
|
|
QString getBranchVersion()
|
|
|
|
|
{
|
|
|
|
|
QString version = STR_TR_AppVersion;
|
|
|
|
|
version += " [";
|
|
|
|
|
#ifdef GIT_REVISION
|
|
|
|
|
if (QString(GIT_BRANCH) != "master") {
|
|
|
|
|
version += QString(GIT_BRANCH)+"-";
|
|
|
|
|
}
|
|
|
|
|
version += QString(GIT_REVISION) +" ";
|
|
|
|
|
#endif
|
|
|
|
|
version += getGraphicsEngine()+"]";
|
|
|
|
|
|
|
|
|
|
return version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-11-15 22:08:48 +00:00
|
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
|
|
|
|
{
|
|
|
|
|
return QLocale::system().firstDayOfWeek();
|
|
|
|
|
}
|
2013-09-10 15:09:09 +00:00
|
|
|
|
|
|
|
|
|
// Flag Colors
|
2014-04-17 03:38:26 +00:00
|
|
|
|
QColor COLOR_Hypopnea = Qt::blue;
|
|
|
|
|
QColor COLOR_Obstructive = COLOR_Aqua;
|
|
|
|
|
QColor COLOR_Apnea = Qt::darkGreen;
|
|
|
|
|
QColor COLOR_CSR = COLOR_LightGreen;
|
2014-05-03 08:28:05 +00:00
|
|
|
|
QColor COLOR_LargeLeak = COLOR_LightGray;
|
2014-07-28 13:56:29 +00:00
|
|
|
|
QColor COLOR_Ramp = COLOR_LightBlue;
|
2014-04-17 03:38:26 +00:00
|
|
|
|
QColor COLOR_ClearAirway = QColor("#b254cd");
|
|
|
|
|
QColor COLOR_RERA = COLOR_Gold;
|
|
|
|
|
QColor COLOR_VibratorySnore = QColor("#ff4040");
|
|
|
|
|
QColor COLOR_FlowLimit = QColor("#404040");
|
2014-05-15 06:20:54 +00:00
|
|
|
|
QColor COLOR_SensAwake = COLOR_Gold;
|
2014-04-17 03:38:26 +00:00
|
|
|
|
QColor COLOR_LeakFlag = QColor("#40c0c0"); // Qt::darkBlue;
|
2014-05-19 03:46:02 +00:00
|
|
|
|
QColor COLOR_NRI = QColor("orange"); //COLOR_ClearAirway;
|
2014-04-17 03:38:26 +00:00
|
|
|
|
QColor COLOR_ExP = Qt::darkCyan;
|
|
|
|
|
QColor COLOR_PressurePulse = Qt::red;
|
|
|
|
|
QColor COLOR_PulseChange = COLOR_LightGray;
|
|
|
|
|
QColor COLOR_SPO2Drop = COLOR_LightBlue;
|
|
|
|
|
QColor COLOR_UserFlag1 = QColor("#e0e0e0");
|
2014-07-20 06:08:38 +00:00
|
|
|
|
QColor COLOR_UserFlag2 = QColor("#c0c0e0");
|
2013-09-10 15:09:09 +00:00
|
|
|
|
|
|
|
|
|
// Chart Colors
|
2014-04-17 03:38:26 +00:00
|
|
|
|
QColor COLOR_EPAP = Qt::blue;
|
|
|
|
|
QColor COLOR_IPAP = Qt::red;
|
|
|
|
|
QColor COLOR_IPAPLo = Qt::darkRed;
|
|
|
|
|
QColor COLOR_IPAPHi = Qt::darkRed;
|
|
|
|
|
QColor COLOR_Plethy = Qt::darkBlue;
|
|
|
|
|
QColor COLOR_Pulse = Qt::red;
|
|
|
|
|
QColor COLOR_SPO2 = Qt::blue;
|
|
|
|
|
QColor COLOR_FlowRate = Qt::black;
|
|
|
|
|
QColor COLOR_Pressure = Qt::darkGreen;
|
|
|
|
|
QColor COLOR_RDI = COLOR_LightGreen;
|
|
|
|
|
QColor COLOR_AHI = COLOR_LightGreen;
|
|
|
|
|
QColor COLOR_Leak = COLOR_DarkMagenta;
|
|
|
|
|
QColor COLOR_LeakTotal = COLOR_DarkYellow;
|
|
|
|
|
QColor COLOR_MaxLeak = COLOR_DarkRed;
|
|
|
|
|
QColor COLOR_Snore = COLOR_DarkGray;
|
|
|
|
|
QColor COLOR_RespRate = COLOR_DarkBlue;
|
|
|
|
|
QColor COLOR_MaskPressure = COLOR_Blue;
|
|
|
|
|
QColor COLOR_PTB = COLOR_Gray; // Patient-Triggered Breathing
|
|
|
|
|
QColor COLOR_MinuteVent = COLOR_Cyan;
|
|
|
|
|
QColor COLOR_TgMV = COLOR_DarkCyan;
|
|
|
|
|
QColor COLOR_TidalVolume = COLOR_Magenta;
|
|
|
|
|
QColor COLOR_FLG = COLOR_DarkBlue; // Flow Limitation Graph
|
|
|
|
|
QColor COLOR_IE = COLOR_DarkRed; // Inspiratory Expiratory Ratio
|
|
|
|
|
QColor COLOR_Te = COLOR_DarkGreen;
|
|
|
|
|
QColor COLOR_Ti = COLOR_DarkBlue;
|
|
|
|
|
QColor COLOR_SleepStage = COLOR_Gray;
|
2014-06-02 17:35:45 +00:00
|
|
|
|
|
|
|
|
|
//#include <windows.h>
|
|
|
|
|
//#include <tchar.h>
|
|
|
|
|
|
|
|
|
|
//typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL);
|
|
|
|
|
|
|
|
|
|
//LPFN_ISWOW64PROCESS fnIsWow64Process;
|
|
|
|
|
|
|
|
|
|
//BOOL IsWow64()
|
|
|
|
|
//{
|
|
|
|
|
// BOOL bIsWow64 = FALSE;
|
|
|
|
|
|
|
|
|
|
// //IsWow64Process is not available on all supported versions of Windows.
|
|
|
|
|
// //Use GetModuleHandle to get a handle to the DLL that contains the function
|
|
|
|
|
// //and GetProcAddress to get a pointer to the function if available.
|
|
|
|
|
|
|
|
|
|
// fnIsWow64Process = (LPFN_ISWOW64PROCESS) GetProcAddress(
|
|
|
|
|
// GetModuleHandle(TEXT("kernel32")),"IsWow64Process");
|
|
|
|
|
|
|
|
|
|
// if(NULL != fnIsWow64Process)
|
|
|
|
|
// {
|
|
|
|
|
// if (!fnIsWow64Process(GetCurrentProcess(),&bIsWow64))
|
|
|
|
|
// {
|
|
|
|
|
// //handle error
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// return bIsWow64;
|
|
|
|
|
//}
|
|
|
|
|
|