2018-04-22 12:06:48 +00:00
|
|
|
|
/* Common GUI Functions Header
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
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-11-26 04:00:31 +00:00
|
|
|
|
|
2011-11-15 21:22:08 +00:00
|
|
|
|
#ifndef COMMON_GUI_H
|
|
|
|
|
#define COMMON_GUI_H
|
|
|
|
|
|
2018-06-07 05:30:31 +00:00
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QColor>
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
2019-09-01 00:56:53 +00:00
|
|
|
|
// Internal graph identifiers -- must NOT be translated
|
2014-07-16 17:12:52 +00:00
|
|
|
|
const QString STR_GRAPH_EventBreakdown = "EventBreakdown";
|
2019-09-01 00:56:53 +00:00
|
|
|
|
const QString STR_GRAPH_SleepFlags = "SF"; // aka Event Flags
|
|
|
|
|
const QString STR_GRAPH_FlowRate = "FlowRate";
|
|
|
|
|
const QString STR_GRAPH_Pressure = "Pressure";
|
|
|
|
|
const QString STR_GRAPH_LeakRate = "Leak";
|
|
|
|
|
const QString STR_GRAPH_FlowLimitation = "FLG";
|
|
|
|
|
const QString STR_GRAPH_Snore = "Snore";
|
|
|
|
|
const QString STR_GRAPH_TidalVolume = "TidalVolume";
|
|
|
|
|
const QString STR_GRAPH_MaskPressure = "MaskPressure";
|
|
|
|
|
const QString STR_GRAPH_RespRate = "RespRate";
|
|
|
|
|
const QString STR_GRAPH_MinuteVent = "MinuteVent";
|
|
|
|
|
const QString STR_GRAPH_PTB = "PTB";
|
|
|
|
|
const QString STR_GRAPH_RespEvent = "RespEvent";
|
|
|
|
|
const QString STR_GRAPH_Ti = "Ti";
|
|
|
|
|
const QString STR_GRAPH_Te = "Te";
|
2022-11-19 09:39:20 +00:00
|
|
|
|
const QString STR_GRAPH_IE = "I/E";
|
2019-09-01 00:56:53 +00:00
|
|
|
|
const QString STR_GRAPH_SleepStage = "SleepStage";
|
|
|
|
|
const QString STR_GRAPH_Inclination = "Inclination";
|
|
|
|
|
const QString STR_GRAPH_Orientation = "Orientation";
|
2020-01-23 17:51:58 +00:00
|
|
|
|
const QString STR_GRAPH_Motion = "Motion";
|
2019-09-01 00:56:53 +00:00
|
|
|
|
const QString STR_GRAPH_TestChan1 = "TestChan1";
|
|
|
|
|
const QString STR_GRAPH_TestChan2 = "TestChan2";
|
|
|
|
|
const QString STR_GRAPH_AHI = "AHI";
|
2014-07-16 17:12:52 +00:00
|
|
|
|
const QString STR_GRAPH_Weight = "Weight";
|
|
|
|
|
const QString STR_GRAPH_BMI = "BMI";
|
2023-09-20 02:35:24 +00:00
|
|
|
|
const QString STR_GRAPH_Zombie = "Feeling";
|
2014-07-16 17:12:52 +00:00
|
|
|
|
const QString STR_GRAPH_Sessions = "Sessions";
|
|
|
|
|
const QString STR_GRAPH_SessionTimes = "SessionTimes";
|
|
|
|
|
const QString STR_GRAPH_Usage = "Usage";
|
|
|
|
|
const QString STR_GRAPH_PeakAHI = "PeakAHI";
|
2019-09-01 00:56:53 +00:00
|
|
|
|
const QString STR_GRAPH_TAP = "TimeAtPressure";
|
|
|
|
|
const QString STR_GRAPH_Oxi_Pulse = "Pulse";
|
|
|
|
|
const QString STR_GRAPH_Oxi_SPO2 = "SPO2";
|
|
|
|
|
const QString STR_GRAPH_Oxi_Plethy = "Plethy";
|
|
|
|
|
const QString STR_GRAPH_Oxi_Perf = "Perf. Index";
|
|
|
|
|
const QString STR_GRAPH_Oxi_PulseChange = "PulseChange";
|
|
|
|
|
const QString STR_GRAPH_Oxi_SPO2Drop = "SPO2Drop";
|
2021-12-07 20:01:01 +00:00
|
|
|
|
const QString STR_GRAPH_ObstructLevel = "ObstructLevel";
|
|
|
|
|
const QString STR_GRAPH_PressureMeasured = "PressureMeasured";
|
|
|
|
|
const QString STR_GRAPH_rRMV = "rRMV";
|
|
|
|
|
const QString STR_GRAPH_rMVFluctuation = "rMVFluctuation";
|
|
|
|
|
const QString STR_GRAPH_FlowFull = "FlowFull";
|
|
|
|
|
|
2014-06-02 17:35:45 +00:00
|
|
|
|
|
2019-09-01 00:56:53 +00:00
|
|
|
|
//OXI_Pulse, OXI_SPO2, OXI_Perf, OXI_Plethy
|
2014-06-02 10:28:05 +00:00
|
|
|
|
|
2013-09-10 15:09:09 +00:00
|
|
|
|
// Flag Colors
|
|
|
|
|
extern QColor COLOR_Hypopnea;
|
|
|
|
|
extern QColor COLOR_Obstructive;
|
|
|
|
|
extern QColor COLOR_Apnea;
|
|
|
|
|
extern QColor COLOR_CSR;
|
2014-05-03 08:28:05 +00:00
|
|
|
|
extern QColor COLOR_LargeLeak;
|
2014-07-28 13:56:29 +00:00
|
|
|
|
extern QColor COLOR_Ramp;
|
2013-09-10 15:09:09 +00:00
|
|
|
|
extern QColor COLOR_ClearAirway;
|
|
|
|
|
extern QColor COLOR_RERA;
|
|
|
|
|
extern QColor COLOR_VibratorySnore;
|
|
|
|
|
extern QColor COLOR_FlowLimit;
|
2014-05-15 03:51:32 +00:00
|
|
|
|
extern QColor COLOR_SensAwake;
|
2013-09-10 15:09:09 +00:00
|
|
|
|
extern QColor COLOR_LeakFlag;
|
|
|
|
|
extern QColor COLOR_NRI;
|
|
|
|
|
extern QColor COLOR_ExP;
|
|
|
|
|
extern QColor COLOR_PressurePulse;
|
|
|
|
|
extern QColor COLOR_PulseChange;
|
|
|
|
|
extern QColor COLOR_SPO2Drop;
|
|
|
|
|
extern QColor COLOR_UserFlag1;
|
2014-07-20 06:08:38 +00:00
|
|
|
|
extern QColor COLOR_UserFlag2;
|
2013-09-10 15:09:09 +00:00
|
|
|
|
|
|
|
|
|
// Chart Colors
|
|
|
|
|
extern QColor COLOR_EPAP;
|
|
|
|
|
extern QColor COLOR_IPAP;
|
|
|
|
|
extern QColor COLOR_IPAPLo;
|
|
|
|
|
extern QColor COLOR_IPAPHi;
|
|
|
|
|
extern QColor COLOR_Plethy;
|
|
|
|
|
extern QColor COLOR_Pulse;
|
|
|
|
|
extern QColor COLOR_SPO2;
|
|
|
|
|
extern QColor COLOR_FlowRate;
|
|
|
|
|
extern QColor COLOR_Pressure;
|
|
|
|
|
extern QColor COLOR_RDI;
|
|
|
|
|
extern QColor COLOR_AHI;
|
|
|
|
|
extern QColor COLOR_Leak;
|
|
|
|
|
extern QColor COLOR_LeakTotal;
|
|
|
|
|
extern QColor COLOR_MaxLeak;
|
|
|
|
|
extern QColor COLOR_Snore;
|
|
|
|
|
extern QColor COLOR_RespRate;
|
|
|
|
|
extern QColor COLOR_MaskPressure;
|
2014-04-17 03:38:26 +00:00
|
|
|
|
extern QColor COLOR_PTB; // Patient Triggered Breathing
|
2013-09-10 15:09:09 +00:00
|
|
|
|
extern QColor COLOR_MinuteVent;
|
|
|
|
|
extern QColor COLOR_TgMV;
|
|
|
|
|
extern QColor COLOR_TidalVolume;
|
|
|
|
|
extern QColor COLOR_FLG; // Flow Limitation Graph
|
|
|
|
|
extern QColor COLOR_IE; // Inspiratory Expiratory Ratio
|
|
|
|
|
extern QColor COLOR_Te;
|
|
|
|
|
extern QColor COLOR_Ti;
|
|
|
|
|
extern QColor COLOR_SleepStage;
|
|
|
|
|
|
2014-04-17 03:38:26 +00:00
|
|
|
|
#endif // COMMON_GUI_H
|