2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* Common GUI Functions Header
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.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 Linux
|
|
|
|
* distribution 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
|
|
|
|
|
|
|
|
#include <QLocale>
|
2013-09-10 15:09:09 +00:00
|
|
|
#include "Graphs/glcommon.h"
|
2011-11-15 21:22:08 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Gets the first day of week from the system locale, to show in the calendars.
|
2011-11-15 21:22:08 +00:00
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2014-06-02 17:35:45 +00:00
|
|
|
const QString CSTR_GFX_ANGLE = "ANGLE";
|
|
|
|
const QString CSTR_GFX_OpenGL = "OpenGL";
|
|
|
|
const QString CSTR_GFX_BrokenGL = "BrokenGL";
|
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
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";
|
2014-06-02 17:35:45 +00:00
|
|
|
|
2014-06-02 10:28:05 +00:00
|
|
|
//! \brief Returns a text string naming the current graphics engine
|
|
|
|
QString getGraphicsEngine();
|
2014-06-02 17:35:45 +00:00
|
|
|
QString getOpenGLVersionString();
|
|
|
|
float getOpenGLVersion();
|
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;
|
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;
|
|
|
|
|
|
|
|
// 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
|