2014-08-17 12:56:05 +00:00
|
|
|
/* gSessionTimesChart Header
|
2014-05-31 21:25:07 +00:00
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-05-31 21:25:07 +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. */
|
|
|
|
|
|
|
|
#ifndef GSESSIONTIMESCHART_H
|
|
|
|
#define GSESSIONTIMESCHART_H
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
#include "SleepLib/day.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
2014-05-31 21:25:07 +00:00
|
|
|
#include "gGraphView.h"
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
struct TimeSpan
|
|
|
|
{
|
|
|
|
public:
|
2014-09-11 14:23:08 +00:00
|
|
|
TimeSpan():begin(0), end(0) {}
|
2014-05-31 21:25:07 +00:00
|
|
|
TimeSpan(float b, float e) : begin(b), end(e) {}
|
|
|
|
TimeSpan(const TimeSpan & copy) {
|
|
|
|
begin = copy.begin;
|
|
|
|
end = copy.end;
|
|
|
|
}
|
|
|
|
~TimeSpan() {}
|
|
|
|
float begin;
|
|
|
|
float end;
|
|
|
|
};
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
struct SummaryCalcItem {
|
|
|
|
SummaryCalcItem() {
|
|
|
|
code = 0;
|
|
|
|
type = ST_CNT;
|
2014-09-13 11:34:18 +00:00
|
|
|
color = Qt::black;
|
2014-09-14 15:29:07 +00:00
|
|
|
wavg_sum = 0;
|
|
|
|
avg_sum = 0;
|
|
|
|
cnt = 0;
|
|
|
|
divisor = 0;
|
|
|
|
min = 0;
|
|
|
|
max = 0;
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
|
|
|
SummaryCalcItem(const SummaryCalcItem & copy) {
|
|
|
|
code = copy.code;
|
|
|
|
type = copy.type;
|
2014-09-13 11:34:18 +00:00
|
|
|
color = copy.color;
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
wavg_sum = 0;
|
|
|
|
avg_sum = 0;
|
|
|
|
cnt = 0;
|
|
|
|
divisor = 0;
|
|
|
|
min = 0;
|
|
|
|
max = 0;
|
2014-09-16 02:15:19 +00:00
|
|
|
midcalc = p_profile->general->prefCalcMiddle();
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
2014-09-14 15:29:07 +00:00
|
|
|
|
2014-09-13 11:34:18 +00:00
|
|
|
SummaryCalcItem(ChannelID code, SummaryType type, QColor color)
|
2014-09-14 15:29:07 +00:00
|
|
|
:code(code), type(type), color(color) {
|
|
|
|
}
|
2014-09-29 14:41:31 +00:00
|
|
|
float mid()
|
|
|
|
{
|
|
|
|
float val = 0;
|
2014-09-16 02:15:19 +00:00
|
|
|
switch (midcalc) {
|
|
|
|
case 0:
|
2014-09-29 14:41:31 +00:00
|
|
|
if (median_data.size() > 0)
|
|
|
|
val = median(median_data.begin(), median_data.end());
|
2014-09-16 02:15:19 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2014-09-29 14:41:31 +00:00
|
|
|
if (divisor > 0)
|
|
|
|
val = wavg_sum / divisor;
|
2014-09-16 02:15:19 +00:00
|
|
|
break;
|
2014-09-29 14:41:31 +00:00
|
|
|
case 2:
|
|
|
|
if (cnt > 0)
|
|
|
|
val = avg_sum / cnt;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline void update(float value, float weight) {
|
|
|
|
if (midcalc == 0) {
|
|
|
|
median_data.append(value);
|
2014-09-16 02:15:19 +00:00
|
|
|
}
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
|
|
avg_sum += value;
|
|
|
|
cnt++;
|
|
|
|
wavg_sum += value * weight;
|
|
|
|
divisor += weight;
|
2014-09-14 15:29:07 +00:00
|
|
|
min = qMin(min, value);
|
|
|
|
max = qMax(max, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset(int reserve) {
|
2014-09-16 02:15:19 +00:00
|
|
|
midcalc = p_profile->general->prefCalcMiddle();
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
wavg_sum = 0;
|
|
|
|
avg_sum = 0;
|
|
|
|
divisor = 0;
|
|
|
|
cnt = 0;
|
|
|
|
min = 99999;
|
|
|
|
max = -99999;
|
|
|
|
median_data.clear();
|
2014-09-16 02:15:19 +00:00
|
|
|
if (midcalc == 0) {
|
|
|
|
median_data.reserve(reserve);
|
|
|
|
}
|
2014-09-14 15:29:07 +00:00
|
|
|
}
|
2014-09-11 14:23:08 +00:00
|
|
|
ChannelID code;
|
|
|
|
SummaryType type;
|
2014-09-13 11:34:18 +00:00
|
|
|
QColor color;
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
double wavg_sum;
|
2014-09-13 11:34:18 +00:00
|
|
|
double divisor;
|
2014-09-14 15:29:07 +00:00
|
|
|
double avg_sum;
|
|
|
|
int cnt;
|
2014-09-13 11:34:18 +00:00
|
|
|
EventDataType min;
|
|
|
|
EventDataType max;
|
2014-09-16 02:15:19 +00:00
|
|
|
static short midcalc;
|
2014-09-14 15:29:07 +00:00
|
|
|
|
|
|
|
QList<float> median_data;
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SummaryChartSlice {
|
|
|
|
SummaryChartSlice() {
|
2014-09-13 11:34:18 +00:00
|
|
|
calc = nullptr;
|
2014-09-11 14:23:08 +00:00
|
|
|
height = 0;
|
|
|
|
value = 0;
|
|
|
|
name = ST_CNT;
|
2014-09-13 11:34:18 +00:00
|
|
|
color = Qt::black;
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
|
|
|
SummaryChartSlice(const SummaryChartSlice & copy) {
|
2014-09-13 11:34:18 +00:00
|
|
|
calc = copy.calc;
|
2014-09-11 14:23:08 +00:00
|
|
|
value = copy.value;
|
|
|
|
height = copy.height;
|
|
|
|
name = copy.name;
|
|
|
|
color = copy.color;
|
2014-09-16 02:15:19 +00:00
|
|
|
// brush = copy.brush;
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
2014-09-13 11:34:18 +00:00
|
|
|
|
|
|
|
SummaryChartSlice(SummaryCalcItem * calc, EventDataType value, EventDataType height, QString name, QColor color)
|
2014-09-16 02:15:19 +00:00
|
|
|
:calc(calc), value(value), height(height), name(name), color(color) {
|
|
|
|
// QLinearGradient gradient(0, 0, 1, 0);
|
|
|
|
// gradient.setCoordinateMode(QGradient::ObjectBoundingMode);
|
|
|
|
// gradient.setColorAt(0,color);
|
|
|
|
// gradient.setColorAt(1,brighten(color));
|
|
|
|
// brush = QBrush(gradient);
|
|
|
|
}
|
2014-09-13 11:34:18 +00:00
|
|
|
SummaryCalcItem * calc;
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType value;
|
|
|
|
EventDataType height;
|
|
|
|
QString name;
|
|
|
|
QColor color;
|
2014-09-16 02:15:19 +00:00
|
|
|
// QBrush brush;
|
2014-09-11 14:23:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class gSummaryChart : public Layer
|
2014-05-31 21:25:07 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-11 14:23:08 +00:00
|
|
|
gSummaryChart(QString label, MachineType machtype);
|
|
|
|
gSummaryChart(ChannelID code, MachineType machtype);
|
|
|
|
virtual ~gSummaryChart();
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
//! \brief Renders the graph to the QPainter object
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void paint(QPainter &, gGraph &, const QRegion &);
|
2014-05-31 21:25:07 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
//! \brief Called whenever data model changes underneath. Day object is not needed here, it's just here for Layer compatability.
|
2014-05-31 21:25:07 +00:00
|
|
|
virtual void SetDay(Day *day = nullptr);
|
|
|
|
|
|
|
|
//! \brief Returns true if no data was found for this day during SetDay
|
|
|
|
virtual bool isEmpty() { return m_empty; }
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void populate(Day *, int idx);
|
|
|
|
|
|
|
|
//! \brief Override to setup custom stuff before main loop
|
2014-09-13 11:34:18 +00:00
|
|
|
virtual void preCalc();
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
//! \brief Override to call stuff in main loop
|
2014-09-29 14:41:31 +00:00
|
|
|
virtual void customCalc(Day *, QVector<SummaryChartSlice> &);
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
//! \brief Override to call stuff after draw is complete
|
2014-09-13 11:34:18 +00:00
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
//! \brief Return any extra data to show beneath the date in the hover over tooltip
|
|
|
|
virtual QString tooltipData(Day *, int);
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
virtual void dataChanged() {
|
|
|
|
cache.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-13 11:34:18 +00:00
|
|
|
void addCalc(ChannelID code, SummaryType type, QColor color) {
|
|
|
|
calcitems.append(SummaryCalcItem(code, type, color));
|
|
|
|
}
|
|
|
|
void addCalc(ChannelID code, SummaryType type) {
|
|
|
|
calcitems.append(SummaryCalcItem(code, type, schema::channel[code].defaultColor()));
|
|
|
|
}
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
gSummaryChart * sc = new gSummaryChart(m_label, m_machtype);
|
|
|
|
Layer::CloneInto(sc);
|
|
|
|
CloneInto(sc);
|
2014-09-17 17:20:01 +00:00
|
|
|
|
|
|
|
// copy this here, because only base summary charts need it
|
|
|
|
sc->calcitems = calcitems;
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
return sc;
|
2014-05-31 21:25:07 +00:00
|
|
|
}
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
void CloneInto(gSummaryChart * layer) {
|
|
|
|
layer->m_empty = m_empty;
|
|
|
|
layer->firstday = firstday;
|
|
|
|
layer->lastday = lastday;
|
|
|
|
layer->expected_slices = expected_slices;
|
|
|
|
layer->nousedays = nousedays;
|
|
|
|
layer->totaldays = totaldays;
|
|
|
|
layer->peak_value = peak_value;
|
2014-09-14 15:29:07 +00:00
|
|
|
layer->idx_start = idx_start;
|
|
|
|
layer->idx_end = idx_end;
|
|
|
|
layer->cache.clear();
|
2014-09-17 02:34:50 +00:00
|
|
|
layer->dayindex = dayindex;
|
|
|
|
layer->daylist = daylist;
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
//! \brief Key was pressed that effects this layer
|
|
|
|
virtual bool keyPressEvent(QKeyEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)
|
|
|
|
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
//! \brief Mouse Button was pressed over this area
|
|
|
|
virtual bool mousePressEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
//! \brief Mouse Button was released over this area. (jumps to daily view here)
|
|
|
|
virtual bool mouseReleaseEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
QString m_label;
|
|
|
|
MachineType m_machtype;
|
|
|
|
bool m_empty;
|
|
|
|
int hl_day;
|
|
|
|
int tz_offset;
|
|
|
|
float tz_hours;
|
2014-09-04 02:17:59 +00:00
|
|
|
QDate firstday;
|
|
|
|
QDate lastday;
|
2014-09-11 14:23:08 +00:00
|
|
|
|
2014-09-17 02:34:50 +00:00
|
|
|
QMap<QDate, int> dayindex;
|
|
|
|
QList<Day *> daylist;
|
2014-09-11 14:23:08 +00:00
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
QHash<int, QVector<SummaryChartSlice> > cache;
|
|
|
|
QVector<SummaryCalcItem> calcitems;
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
int expected_slices;
|
|
|
|
|
|
|
|
int nousedays;
|
|
|
|
int totaldays;
|
|
|
|
|
|
|
|
EventDataType peak_value;
|
|
|
|
EventDataType min_value;
|
2014-09-13 11:34:18 +00:00
|
|
|
|
|
|
|
int idx_start;
|
|
|
|
int idx_end;
|
2014-09-16 02:15:19 +00:00
|
|
|
|
|
|
|
short midcalc;
|
2014-09-11 14:23:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*! \class gSessionTimesChart
|
|
|
|
\brief Displays a summary of session times
|
|
|
|
*/
|
|
|
|
class gSessionTimesChart : public gSummaryChart
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gSessionTimesChart()
|
2014-09-13 11:34:18 +00:00
|
|
|
:gSummaryChart("SessionTimes", MT_CPAP) {
|
|
|
|
addCalc(NoChannel, ST_SESSIONS, QColor(64,128,255));
|
2014-09-14 15:29:07 +00:00
|
|
|
addCalc(NoChannel, ST_SESSIONS, QColor(64,128,255));
|
|
|
|
addCalc(NoChannel, ST_SESSIONS, QColor(64,128,255));
|
2014-09-13 11:34:18 +00:00
|
|
|
}
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual ~gSessionTimesChart() {}
|
|
|
|
|
|
|
|
virtual void SetDay(Day * day = nullptr) {
|
|
|
|
gSummaryChart::SetDay(day);
|
|
|
|
split = p_profile->session->daySplitTime();
|
|
|
|
|
|
|
|
m_miny = 0;
|
|
|
|
m_maxy = 28;
|
|
|
|
}
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
virtual void preCalc();
|
2014-09-29 14:41:31 +00:00
|
|
|
virtual void customCalc(Day *, QVector<SummaryChartSlice> & slices);
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
|
|
|
|
|
|
|
//! \brief Renders the graph to the QPainter object
|
|
|
|
virtual void paint(QPainter &painter, gGraph &graph, const QRegion ®ion);
|
2014-09-16 02:15:19 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual Layer * Clone() {
|
|
|
|
gSessionTimesChart * sc = new gSessionTimesChart();
|
|
|
|
gSummaryChart::CloneInto(sc);
|
|
|
|
CloneInto(sc);
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloneInto(gSessionTimesChart * layer) {
|
|
|
|
layer->split = split;
|
|
|
|
}
|
|
|
|
QTime split;
|
|
|
|
int num_slices;
|
|
|
|
int num_days;
|
|
|
|
int total_slices;
|
|
|
|
double total_length;
|
2014-09-13 11:34:18 +00:00
|
|
|
QList<float> session_data;
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class gUsageChart : public gSummaryChart
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gUsageChart()
|
|
|
|
:gSummaryChart("Usage", MT_CPAP) {
|
2014-09-13 11:34:18 +00:00
|
|
|
addCalc(NoChannel, ST_HOURS, QColor(64,128,255));
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
|
|
|
virtual ~gUsageChart() {}
|
|
|
|
|
|
|
|
virtual void preCalc();
|
2014-09-29 14:41:31 +00:00
|
|
|
virtual void customCalc(Day *, QVector<SummaryChartSlice> &);
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
|
|
|
virtual void populate(Day *day, int idx);
|
|
|
|
|
|
|
|
virtual QString tooltipData(Day * day, int);
|
|
|
|
|
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
gUsageChart * sc = new gUsageChart();
|
|
|
|
gSummaryChart::CloneInto(sc);
|
|
|
|
CloneInto(sc);
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloneInto(gUsageChart * layer) {
|
|
|
|
layer->incompdays = incompdays;
|
|
|
|
layer->compliance_threshold = compliance_threshold;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int incompdays;
|
|
|
|
EventDataType compliance_threshold;
|
|
|
|
};
|
|
|
|
|
2014-09-18 17:58:00 +00:00
|
|
|
class gTTIAChart : public gSummaryChart
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gTTIAChart()
|
|
|
|
:gSummaryChart("TTIA", MT_CPAP) {
|
|
|
|
addCalc(NoChannel, ST_CNT, QColor(255,147,150));
|
|
|
|
}
|
|
|
|
virtual ~gTTIAChart() {}
|
|
|
|
|
|
|
|
virtual void preCalc();
|
2014-09-29 14:41:31 +00:00
|
|
|
virtual void customCalc(Day *, QVector<SummaryChartSlice> &);
|
2014-09-18 17:58:00 +00:00
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
|
|
|
virtual void populate(Day *day, int idx);
|
|
|
|
virtual QString tooltipData(Day * day, int);
|
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
gTTIAChart * sc = new gTTIAChart();
|
|
|
|
gSummaryChart::CloneInto(sc);
|
|
|
|
CloneInto(sc);
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloneInto(gTTIAChart * /* layer*/) {
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
class gAHIChart : public gSummaryChart
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gAHIChart()
|
|
|
|
:gSummaryChart("AHIChart", MT_CPAP) {
|
2014-09-13 11:34:18 +00:00
|
|
|
addCalc(CPAP_ClearAirway, ST_CPH);
|
|
|
|
addCalc(CPAP_Obstructive, ST_CPH);
|
|
|
|
addCalc(CPAP_Apnea, ST_CPH);
|
|
|
|
addCalc(CPAP_Hypopnea, ST_CPH);
|
2014-09-11 14:23:08 +00:00
|
|
|
if (p_profile->general->calculateRDI())
|
2014-09-13 11:34:18 +00:00
|
|
|
addCalc(CPAP_RERA, ST_CPH);
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
|
|
|
virtual ~gAHIChart() {}
|
|
|
|
|
|
|
|
virtual void preCalc();
|
2014-09-29 14:41:31 +00:00
|
|
|
virtual void customCalc(Day *, QVector<SummaryChartSlice> &);
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
|
|
|
|
|
|
|
virtual void populate(Day *, int idx);
|
|
|
|
|
|
|
|
virtual QString tooltipData(Day * day, int);
|
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
gAHIChart * sc = new gAHIChart();
|
|
|
|
gSummaryChart::CloneInto(sc);
|
|
|
|
CloneInto(sc);
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
2014-09-16 02:15:19 +00:00
|
|
|
void CloneInto(gAHIChart * /* layer */) {
|
2014-09-14 15:29:07 +00:00
|
|
|
// layer->ahicalc = ahicalc;
|
|
|
|
// layer->ahi_wavg = ahi_wavg;
|
|
|
|
// layer->ahi_avg = ahi_avg;
|
|
|
|
// layer->total_hours = total_hours;
|
|
|
|
// layer->max_ahi = max_ahi;
|
|
|
|
// layer->min_ahi = min_ahi;
|
2017-09-21 14:50:18 +00:00
|
|
|
// layer->total_days = total_days;
|
2014-09-14 15:29:07 +00:00
|
|
|
// layer->ahi_data = ahi_data;
|
2014-09-11 14:23:08 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 15:29:07 +00:00
|
|
|
// SummaryCalcItem ahicalc;
|
|
|
|
double ahi_wavg;
|
|
|
|
double ahi_avg;
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
double total_hours;
|
2014-09-13 11:34:18 +00:00
|
|
|
float max_ahi;
|
|
|
|
float min_ahi;
|
|
|
|
|
2017-09-21 14:50:18 +00:00
|
|
|
int total_days;
|
2014-09-13 11:34:18 +00:00
|
|
|
QList<float> ahi_data;
|
2014-09-11 14:23:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class gPressureChart : public gSummaryChart
|
|
|
|
{
|
|
|
|
public:
|
2014-09-13 11:34:18 +00:00
|
|
|
gPressureChart();
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual ~gPressureChart() {}
|
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
gPressureChart * sc = new gPressureChart();
|
|
|
|
gSummaryChart::CloneInto(sc);
|
|
|
|
return sc;
|
|
|
|
}
|
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
// virtual void preCalc();
|
|
|
|
virtual void customCalc(Day *day, QVector<SummaryChartSlice> &slices) {
|
|
|
|
int size = slices.size();
|
|
|
|
float hour = day->hours(m_machtype);
|
|
|
|
for (int i=0; i < size; ++i) {
|
|
|
|
SummaryChartSlice & slice = slices[i];
|
|
|
|
SummaryCalcItem * calc = slices[i].calc;
|
|
|
|
|
|
|
|
calc->update(slice.value, hour);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
virtual void afterDraw(QPainter &, gGraph &, QRect);
|
2014-09-13 11:34:18 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual void populate(Day * day, int idx);
|
2014-09-13 11:34:18 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
virtual QString tooltipData(Day * day, int idx) {
|
|
|
|
return day->getCPAPMode() + "\n" + day->getPressureSettings() + gSummaryChart::tooltipData(day, idx);
|
|
|
|
}
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GSESSIONTIMESCHART_H
|