mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Clean up common_gui.{cpp,h}.
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
214d693201
commit
80defa6186
@ -10,59 +10,36 @@
|
||||
* distribution for more details. */
|
||||
|
||||
#include "common_gui.h"
|
||||
#include "qglobal.h"
|
||||
|
||||
#ifndef BUILD_WITH_MSVC
|
||||
#include <unistd.h>
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
#include "windows.h"
|
||||
void sh_delay(int ms)
|
||||
{
|
||||
Sleep(ms);
|
||||
}
|
||||
#else
|
||||
void sh_delay(int ms)
|
||||
{
|
||||
sleep(ms/1000);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))
|
||||
// Qt 4.8 makes this a whole lot easier
|
||||
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
||||
{
|
||||
return QLocale::system().firstDayOfWeek();
|
||||
}
|
||||
|
||||
#else
|
||||
/*#if defined(Q_OS_MAC)
|
||||
#include <Cocoa/Cocoa.h>
|
||||
#endif */
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#include "windows.h"
|
||||
#endif
|
||||
|
||||
#ifdef __GLIBC__
|
||||
#include <langinfo.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
#include <dos.h>
|
||||
#endif
|
||||
|
||||
|
||||
// This function has been "borrowed".. Ahem..
|
||||
#elif defined(__GLIBC__)
|
||||
# include <langinfo.h>
|
||||
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
||||
{
|
||||
Qt::DayOfWeek firstDay = Qt::Monday; // Fallback, acknowledging the awesome concept of Week End.
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
const unsigned char *const s = nl_langinfo(_NL_TIME_FIRST_WEEKDAY);
|
||||
if (s && *s >= 1 && *s <= 7) {
|
||||
// Map between nl_langinfo and Qt:
|
||||
// Sun Mon Tue Wed Thu Fri Sat
|
||||
// nl_langinfo: 1 2 3 4 5 6 7
|
||||
// DayOfWeek: 7 1 2 3 4 5 6
|
||||
return (Qt::DayOfWeek)((*s + 5) % 7 + 1);
|
||||
}
|
||||
return Qt::Monday;
|
||||
}
|
||||
#elif defined(Q_OS_WIN)
|
||||
# include "windows.h"
|
||||
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
||||
{
|
||||
Qt::DayOfWeek firstDay = Qt::Monday; // Fallback, acknowledging the awesome concept of weekends.
|
||||
WCHAR wsDay[4];
|
||||
# if defined(_WIN32_WINNT_VISTA) && WINVER >= _WIN32_WINNT_VISTA && defined(LOCALE_NAME_USER_DEFAULT)
|
||||
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_IFIRSTDAYOFWEEK, wsDay, 4)) {
|
||||
@ -71,69 +48,54 @@ Qt::DayOfWeek firstDayOfWeekFromLocale()
|
||||
# endif
|
||||
bool ok;
|
||||
int wfd = QString::fromWCharArray(wsDay).toInt(&ok) + 1;
|
||||
if (ok) {
|
||||
firstDay = (Qt::DayOfWeek)(unsigned char)wfd;
|
||||
}
|
||||
if (ok)
|
||||
return (Qt::DayOfWeek)(unsigned char)wfd;
|
||||
}
|
||||
#elif defined(__GLIBC__)
|
||||
firstDay = (Qt::DayOfWeek)(unsigned char)((*nl_langinfo(_NL_TIME_FIRST_WEEKDAY) + 5) % 7 + 1);
|
||||
/*#elif defined(Q_OS_MAC)
|
||||
// Unsure if this will work.. Most Mac users use 4.8 anyway, so won't see this code..
|
||||
NSCalendar *cal = [NSCalendar currentCalendar];
|
||||
int day = ([cal firstWeekday] + 5) % 7 + 1;
|
||||
|
||||
firstDay = (Qt::DayOfWeek)(unsigned char)day; */
|
||||
#endif
|
||||
return firstDay;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // QT_VERSION
|
||||
|
||||
// Flag Colors
|
||||
QColor COLOR_Hypopnea=Qt::blue;
|
||||
QColor COLOR_Obstructive=COLOR_Aqua;
|
||||
QColor COLOR_Apnea=Qt::darkGreen;
|
||||
QColor COLOR_CSR=COLOR_LightGreen;
|
||||
QColor COLOR_ClearAirway=QColor("#b254cd");
|
||||
QColor COLOR_RERA=COLOR_Gold;
|
||||
QColor COLOR_VibratorySnore=QColor("#ff4040");
|
||||
QColor COLOR_FlowLimit=QColor("#404040");
|
||||
QColor COLOR_LeakFlag=QColor("#40c0c0"); //Qt::darkBlue;
|
||||
QColor COLOR_NRI=Qt::darkMagenta;
|
||||
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");
|
||||
QColor COLOR_Hypopnea = Qt::blue;
|
||||
QColor COLOR_Obstructive = COLOR_Aqua;
|
||||
QColor COLOR_Apnea = Qt::darkGreen;
|
||||
QColor COLOR_CSR = COLOR_LightGreen;
|
||||
QColor COLOR_ClearAirway = QColor("#b254cd");
|
||||
QColor COLOR_RERA = COLOR_Gold;
|
||||
QColor COLOR_VibratorySnore = QColor("#ff4040");
|
||||
QColor COLOR_FlowLimit = QColor("#404040");
|
||||
QColor COLOR_LeakFlag = QColor("#40c0c0"); // Qt::darkBlue;
|
||||
QColor COLOR_NRI = Qt::darkMagenta;
|
||||
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");
|
||||
|
||||
// Chart Colors
|
||||
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;
|
||||
|
||||
|
||||
|
||||
|
||||
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;
|
||||
|
@ -18,10 +18,6 @@
|
||||
//! \brief Gets the first day of week from the system locale, to show in the calendars.
|
||||
Qt::DayOfWeek firstDayOfWeekFromLocale();
|
||||
|
||||
//! \brief Delay of ms milliseconds
|
||||
void sh_delay(int ms);
|
||||
|
||||
|
||||
// Flag Colors
|
||||
extern QColor COLOR_Hypopnea;
|
||||
extern QColor COLOR_Obstructive;
|
||||
@ -57,7 +53,7 @@ extern QColor COLOR_MaxLeak;
|
||||
extern QColor COLOR_Snore;
|
||||
extern QColor COLOR_RespRate;
|
||||
extern QColor COLOR_MaskPressure;
|
||||
extern QColor COLOR_PTB; //Patient Triggered Breathing
|
||||
extern QColor COLOR_PTB; // Patient Triggered Breathing
|
||||
extern QColor COLOR_MinuteVent;
|
||||
extern QColor COLOR_TgMV;
|
||||
extern QColor COLOR_TidalVolume;
|
||||
@ -67,5 +63,4 @@ extern QColor COLOR_Te;
|
||||
extern QColor COLOR_Ti;
|
||||
extern QColor COLOR_SleepStage;
|
||||
|
||||
|
||||
#endif
|
||||
#endif // COMMON_GUI_H
|
||||
|
Loading…
Reference in New Issue
Block a user