mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
80 lines
2.3 KiB
C
80 lines
2.3 KiB
C
/* Common GUI Functions Header
|
|
*
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
|
*
|
|
* 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 source code
|
|
* for more details. */
|
|
|
|
#ifndef COMMON_GUI_H
|
|
#define COMMON_GUI_H
|
|
|
|
#include <QString>
|
|
#include <QColor>
|
|
|
|
|
|
const QString STR_GRAPH_EventBreakdown = "EventBreakdown";
|
|
const QString STR_GRAPH_SleepFlags = "SF";
|
|
const QString STR_GRAPH_Weight = "Weight";
|
|
const QString STR_GRAPH_BMI = "BMI";
|
|
const QString STR_GRAPH_Zombie = "Zombie";
|
|
const QString STR_GRAPH_Sessions = "Sessions";
|
|
const QString STR_GRAPH_SessionTimes = "SessionTimes";
|
|
const QString STR_GRAPH_Usage = "Usage";
|
|
const QString STR_GRAPH_AHI = "AHI";
|
|
const QString STR_GRAPH_PeakAHI = "PeakAHI";
|
|
|
|
//! \brief Returns a text string naming the current graphics engine
|
|
|
|
|
|
// Flag Colors
|
|
extern QColor COLOR_Hypopnea;
|
|
extern QColor COLOR_Obstructive;
|
|
extern QColor COLOR_Apnea;
|
|
extern QColor COLOR_CSR;
|
|
extern QColor COLOR_LargeLeak;
|
|
extern QColor COLOR_Ramp;
|
|
extern QColor COLOR_ClearAirway;
|
|
extern QColor COLOR_RERA;
|
|
extern QColor COLOR_VibratorySnore;
|
|
extern QColor COLOR_FlowLimit;
|
|
extern QColor COLOR_SensAwake;
|
|
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;
|
|
extern QColor COLOR_UserFlag2;
|
|
|
|
// 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;
|
|
extern QColor COLOR_PTB; // Patient Triggered Breathing
|
|
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;
|
|
|
|
#endif // COMMON_GUI_H
|