2018-06-06 00:48:31 +00:00
|
|
|
|
/* Overview GUI Implementation
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
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-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#include <QCalendarWidget>
|
|
|
|
|
#include <QTextCharFormat>
|
2013-01-20 16:31:51 +00:00
|
|
|
|
//#include <QSystemLocale>
|
2011-07-19 14:04:54 +00:00
|
|
|
|
#include <QDebug>
|
2011-09-12 03:07:57 +00:00
|
|
|
|
#include <QDateTimeEdit>
|
|
|
|
|
#include <QCalendarWidget>
|
2011-09-12 16:10:18 +00:00
|
|
|
|
#include <QFileDialog>
|
2011-12-25 06:24:40 +00:00
|
|
|
|
#include <QMessageBox>
|
2011-12-01 15:40:32 +00:00
|
|
|
|
//#include <QProgressBar>
|
|
|
|
|
|
2011-10-05 07:41:56 +00:00
|
|
|
|
#include "SleepLib/profiles.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include "overview.h"
|
|
|
|
|
#include "ui_overview.h"
|
2011-11-15 21:22:08 +00:00
|
|
|
|
#include "common_gui.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include "Graphs/gXAxis.h"
|
|
|
|
|
#include "Graphs/gLineChart.h"
|
|
|
|
|
#include "Graphs/gYAxis.h"
|
|
|
|
|
|
2011-12-02 14:36:40 +00:00
|
|
|
|
#include "mainwindow.h"
|
2014-04-17 05:52:25 +00:00
|
|
|
|
extern MainWindow *mainwin;
|
2011-12-01 15:40:32 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
Overview::Overview(QWidget *parent, gGraphView *shared) :
|
2011-06-26 08:30:44 +00:00
|
|
|
|
QWidget(parent),
|
2011-09-11 06:16:45 +00:00
|
|
|
|
ui(new Ui::Overview),
|
|
|
|
|
m_shared(shared)
|
2011-06-26 08:30:44 +00:00
|
|
|
|
{
|
2011-09-07 08:35:55 +00:00
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Set Date controls locale to 4 digit years
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QLocale locale = QLocale::system();
|
|
|
|
|
QString shortformat = locale.dateFormat(QLocale::ShortFormat);
|
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
if (!shortformat.toLower().contains("yyyy")) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
shortformat.replace("yy", "yyyy");
|
2011-10-31 11:55:25 +00:00
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
ui->dateStart->setDisplayFormat(shortformat);
|
|
|
|
|
ui->dateEnd->setDisplayFormat(shortformat);
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
Qt::DayOfWeek dow = firstDayOfWeekFromLocale();
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
|
|
|
|
ui->dateStart->calendarWidget()->setFirstDayOfWeek(dow);
|
|
|
|
|
ui->dateEnd->calendarWidget()->setFirstDayOfWeek(dow);
|
2011-11-15 05:49:41 +00:00
|
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Stop both calendar drop downs highlighting weekends in red
|
|
|
|
|
QTextCharFormat format = ui->dateStart->calendarWidget()->weekdayTextFormat(Qt::Saturday);
|
2013-09-10 15:09:09 +00:00
|
|
|
|
format.setForeground(QBrush(COLOR_Black, Qt::SolidPattern));
|
2011-10-31 11:55:25 +00:00
|
|
|
|
ui->dateStart->calendarWidget()->setWeekdayTextFormat(Qt::Saturday, format);
|
|
|
|
|
ui->dateStart->calendarWidget()->setWeekdayTextFormat(Qt::Sunday, format);
|
|
|
|
|
ui->dateEnd->calendarWidget()->setWeekdayTextFormat(Qt::Saturday, format);
|
|
|
|
|
ui->dateEnd->calendarWidget()->setWeekdayTextFormat(Qt::Sunday, format);
|
|
|
|
|
|
|
|
|
|
// Connect the signals to update which days have CPAP data when the month is changed
|
2018-06-07 21:53:09 +00:00
|
|
|
|
connect(ui->dateStart->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateStart_currentPageChanged(int, int)));
|
|
|
|
|
connect(ui->dateEnd->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateEnd_currentPageChanged(int, int)));
|
2011-10-31 11:55:25 +00:00
|
|
|
|
|
2014-06-22 15:40:52 +00:00
|
|
|
|
QVBoxLayout *framelayout = new QVBoxLayout;
|
2014-05-17 11:33:33 +00:00
|
|
|
|
ui->graphArea->setLayout(framelayout);
|
|
|
|
|
|
|
|
|
|
QFrame *border = new QFrame(ui->graphArea);
|
|
|
|
|
|
|
|
|
|
framelayout->setMargin(1);
|
|
|
|
|
border->setFrameShape(QFrame::StyledPanel);
|
|
|
|
|
framelayout->addWidget(border,1);
|
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Create the horizontal layout to hold the GraphView object and it's scrollbar
|
2014-05-17 11:33:33 +00:00
|
|
|
|
layout = new QHBoxLayout(border);
|
2011-10-31 11:55:25 +00:00
|
|
|
|
layout->setSpacing(0); // remove the ugly margins/spacing
|
2011-09-07 08:35:55 +00:00
|
|
|
|
layout->setMargin(0);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
2014-05-17 11:33:33 +00:00
|
|
|
|
border->setLayout(layout);
|
|
|
|
|
border->setAutoFillBackground(false);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Create the GraphView Object
|
2014-04-17 05:52:25 +00:00
|
|
|
|
GraphView = new gGraphView(ui->graphArea, m_shared);
|
|
|
|
|
GraphView->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
|
2014-08-21 08:04:25 +00:00
|
|
|
|
GraphView->setEmptyText(STR_Empty_NoData);
|
2011-12-20 17:22:02 +00:00
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Create the custom scrollbar and attach to GraphView
|
2014-04-17 05:52:25 +00:00
|
|
|
|
scrollbar = new MyScrollBar(ui->graphArea);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
scrollbar->setOrientation(Qt::Vertical);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
scrollbar->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Expanding);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
scrollbar->setMaximumWidth(20);
|
|
|
|
|
GraphView->setScrollBar(scrollbar);
|
2011-10-31 11:55:25 +00:00
|
|
|
|
|
2011-12-20 17:22:02 +00:00
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
|
// Add the graphView and scrollbar to the layout.
|
2014-04-17 05:52:25 +00:00
|
|
|
|
layout->addWidget(GraphView, 1);
|
|
|
|
|
layout->addWidget(scrollbar, 0);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
layout->layout();
|
|
|
|
|
|
2014-08-28 15:45:46 +00:00
|
|
|
|
dateLabel = new MyLabel(this);
|
|
|
|
|
dateLabel->setAlignment(Qt::AlignVCenter);
|
|
|
|
|
dateLabel->setText("[Date Widget]");
|
|
|
|
|
QFont font = dateLabel->font();
|
|
|
|
|
font.setPointSizeF(font.pointSizeF()*1.3F);
|
|
|
|
|
dateLabel->setFont(font);
|
|
|
|
|
QPalette palette = dateLabel->palette();
|
|
|
|
|
palette.setColor(QPalette::Base, Qt::blue);
|
|
|
|
|
dateLabel->setPalette(palette);
|
|
|
|
|
|
|
|
|
|
ui->dateLayout->addWidget(dateLabel,1);
|
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
|
RebuildGraphs(false);
|
|
|
|
|
|
|
|
|
|
ui->rangeCombo->setCurrentIndex(p_profile->general->lastOverviewRange());
|
|
|
|
|
|
|
|
|
|
icon_on = new QIcon(":/icons/session-on.png");
|
|
|
|
|
icon_off = new QIcon(":/icons/session-off.png");
|
|
|
|
|
|
2014-08-11 18:29:44 +00:00
|
|
|
|
GraphView->resetLayout();
|
|
|
|
|
GraphView->LoadSettings("Overview"); //no trans
|
2014-08-21 08:04:25 +00:00
|
|
|
|
|
2019-02-12 17:00:05 +00:00
|
|
|
|
GraphView->setEmptyImage(QPixmap(":/icons/logo.png"));
|
2014-08-21 08:04:25 +00:00
|
|
|
|
|
2014-08-28 15:45:46 +00:00
|
|
|
|
connect(GraphView, SIGNAL(updateCurrentTime(double)), this, SLOT(on_LineCursorUpdate(double)));
|
|
|
|
|
connect(GraphView, SIGNAL(updateRange(double,double)), this, SLOT(on_RangeUpdate(double,double)));
|
2014-08-29 11:34:21 +00:00
|
|
|
|
connect(GraphView, SIGNAL(GraphsChanged()), this, SLOT(updateGraphCombo()));
|
2011-09-07 08:44:04 +00:00
|
|
|
|
}
|
2018-06-07 21:53:09 +00:00
|
|
|
|
|
2011-09-07 08:44:04 +00:00
|
|
|
|
Overview::~Overview()
|
|
|
|
|
{
|
2018-06-07 21:53:09 +00:00
|
|
|
|
disconnect(GraphView, SIGNAL(GraphsChanged()), this, SLOT(updateGraphCombo()));
|
|
|
|
|
disconnect(GraphView, SIGNAL(updateRange(double,double)), this, SLOT(on_RangeUpdate(double,double)));
|
|
|
|
|
disconnect(GraphView, SIGNAL(updateCurrentTime(double)), this, SLOT(on_LineCursorUpdate(double)));
|
|
|
|
|
disconnect(ui->dateEnd->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateEnd_currentPageChanged(int, int)));
|
|
|
|
|
disconnect(ui->dateStart->calendarWidget(), SIGNAL(currentPageChanged(int, int)), this, SLOT(dateStart_currentPageChanged(int, int)));
|
|
|
|
|
|
|
|
|
|
// Save graph orders and pin status, etc...
|
|
|
|
|
GraphView->SaveSettings("Overview");//no trans
|
|
|
|
|
|
2011-09-07 08:44:04 +00:00
|
|
|
|
delete ui;
|
2014-09-11 14:23:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Overview::RebuildGraphs(bool reset)
|
|
|
|
|
{
|
|
|
|
|
qint64 minx, maxx;
|
|
|
|
|
if (reset) {
|
|
|
|
|
GraphView->GetXBounds(minx, maxx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GraphView->trashGraphs(true);
|
|
|
|
|
ChannelID ahicode = p_profile->general->calculateRDI() ? CPAP_RDI : CPAP_AHI;
|
|
|
|
|
|
|
|
|
|
if (ahicode == CPAP_RDI) {
|
|
|
|
|
AHI = createGraph("AHIBreakdown", STR_TR_RDI, tr("Respiratory\nDisturbance\nIndex"));
|
|
|
|
|
} else {
|
|
|
|
|
AHI = createGraph("AHIBreakdown", STR_TR_AHI, tr("Apnea\nHypopnea\nIndex"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ahi = new gAHIChart();
|
|
|
|
|
AHI->AddLayer(ahi);
|
|
|
|
|
|
|
|
|
|
UC = createGraph(STR_GRAPH_Usage, tr("Usage"), tr("Usage\n(hours)"));
|
|
|
|
|
UC->AddLayer(uc = new gUsageChart());
|
|
|
|
|
|
|
|
|
|
STG = createGraph("New Session", tr("Session Times"), tr("Session Times"), YT_Time);
|
|
|
|
|
stg = new gSessionTimesChart();
|
|
|
|
|
STG->AddLayer(stg);
|
|
|
|
|
|
|
|
|
|
PR = createGraph("Pressure Settings", STR_TR_Pressure, STR_TR_Pressure + "\n(" + STR_UNIT_CMH2O + ")");
|
|
|
|
|
pres = new gPressureChart();
|
|
|
|
|
PR->AddLayer(pres);
|
|
|
|
|
|
2014-09-18 17:58:00 +00:00
|
|
|
|
TTIA = createGraph("TTIA", tr("Total Time in Apnea"), tr("Total Time in Apnea\n(Minutes)"));
|
|
|
|
|
ttia = new gTTIAChart();
|
|
|
|
|
TTIA->AddLayer(ttia);
|
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
|
QHash<ChannelID, schema::Channel *>::iterator chit;
|
|
|
|
|
QHash<ChannelID, schema::Channel *>::iterator chit_end = schema::channel.channels.end();
|
|
|
|
|
for (chit = schema::channel.channels.begin(); chit != chit_end; ++chit) {
|
|
|
|
|
schema::Channel * chan = chit.value();
|
|
|
|
|
|
|
|
|
|
if (chan->showInOverview()) {
|
|
|
|
|
ChannelID code = chan->id();
|
|
|
|
|
QString name = chan->fullname();
|
|
|
|
|
if (name.length() > 16) name = chan->label();
|
|
|
|
|
gGraph *G = createGraph(chan->code(), name, chan->description());
|
|
|
|
|
if ((chan->type() == schema::FLAG) || (chan->type() == schema::MINOR_FLAG)) {
|
|
|
|
|
gSummaryChart * sc = new gSummaryChart(chan->code(), MT_CPAP);
|
2014-09-13 11:34:18 +00:00
|
|
|
|
sc->addCalc(code, ST_CPH, schema::channel[code].defaultColor());
|
2014-09-11 14:23:08 +00:00
|
|
|
|
G->AddLayer(sc);
|
|
|
|
|
} else if (chan->type() == schema::SPAN) {
|
|
|
|
|
gSummaryChart * sc = new gSummaryChart(chan->code(), MT_CPAP);
|
2014-09-13 11:34:18 +00:00
|
|
|
|
sc->addCalc(code, ST_SPH, schema::channel[code].defaultColor());
|
2014-09-11 14:23:08 +00:00
|
|
|
|
G->AddLayer(sc);
|
|
|
|
|
} else if (chan->type() == schema::WAVEFORM) {
|
|
|
|
|
G->AddLayer(new gSummaryChart(code, chan->machtype()));
|
2014-09-18 15:33:50 +00:00
|
|
|
|
} else if (chan->type() == schema::UNKNOWN) {
|
|
|
|
|
gSummaryChart * sc = new gSummaryChart(chan->code(), MT_CPAP);
|
|
|
|
|
sc->addCalc(code, ST_CPH, schema::channel[code].defaultColor());
|
|
|
|
|
G->AddLayer(sc);
|
2014-09-11 14:23:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WEIGHT = createGraph(STR_GRAPH_Weight, STR_TR_Weight, STR_TR_Weight, YT_Weight);
|
|
|
|
|
BMI = createGraph(STR_GRAPH_BMI, STR_TR_BMI, tr("Body\nMass\nIndex"));
|
|
|
|
|
ZOMBIE = createGraph(STR_GRAPH_Zombie, STR_TR_Zombie, tr("How you felt\n(0-10)"));
|
|
|
|
|
|
|
|
|
|
if (reset) {
|
|
|
|
|
GraphView->resetLayout();
|
|
|
|
|
GraphView->setDay(nullptr);
|
|
|
|
|
GraphView->SetXBounds(minx, maxx, 0, false);
|
|
|
|
|
GraphView->resetLayout();
|
|
|
|
|
updateGraphCombo();
|
|
|
|
|
}
|
2011-09-07 08:44:04 +00:00
|
|
|
|
}
|
2014-05-11 19:04:34 +00:00
|
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
|
gGraph *Overview::createGraph(QString code, QString name, QString units, YTickerType yttype)
|
2011-10-31 11:55:25 +00:00
|
|
|
|
{
|
2018-04-22 12:06:48 +00:00
|
|
|
|
int default_height = AppSetting->graphHeight();
|
2014-07-16 17:12:52 +00:00
|
|
|
|
gGraph *g = new gGraph(code, GraphView, name, units, default_height, 0);
|
2011-12-21 04:25:01 +00:00
|
|
|
|
|
|
|
|
|
gYAxis *yt;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-12-21 04:25:01 +00:00
|
|
|
|
switch (yttype) {
|
|
|
|
|
case YT_Time:
|
2014-04-17 05:52:25 +00:00
|
|
|
|
yt = new gYAxisTime(true); // Time scale
|
2011-12-21 04:25:01 +00:00
|
|
|
|
break;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-12-21 04:25:01 +00:00
|
|
|
|
case YT_Weight:
|
2014-07-11 12:09:38 +00:00
|
|
|
|
yt = new gYAxisWeight(p_profile->general->unitSystem());
|
2011-12-21 04:25:01 +00:00
|
|
|
|
break;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-12-21 04:25:01 +00:00
|
|
|
|
default:
|
2014-04-17 05:52:25 +00:00
|
|
|
|
yt = new gYAxis(); // Plain numeric scale
|
2011-12-21 04:25:01 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
g->AddLayer(yt, LayerLeft, gYAxis::Margin);
|
2014-09-11 14:23:08 +00:00
|
|
|
|
gXAxisDay *x = new gXAxisDay();
|
|
|
|
|
g->AddLayer(x, LayerBottom, 0, gXAxisDay::Margin);
|
2011-10-31 11:55:25 +00:00
|
|
|
|
g->AddLayer(new gXGrid());
|
|
|
|
|
return g;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-28 15:45:46 +00:00
|
|
|
|
void Overview::on_LineCursorUpdate(double time)
|
|
|
|
|
{
|
|
|
|
|
if (time > 1) {
|
2015-08-11 20:38:09 +00:00
|
|
|
|
// even though the generated string is displayed to the user
|
|
|
|
|
// no time zone conversion is neccessary, so pass UTC
|
|
|
|
|
// to prevent QT from automatically converting to local time
|
|
|
|
|
QDateTime dt = QDateTime::fromMSecsSinceEpoch(time, Qt::UTC);
|
2014-09-01 04:49:05 +00:00
|
|
|
|
QString txt = dt.toString("dd MMM yyyy (dddd)");
|
2014-08-28 15:45:46 +00:00
|
|
|
|
dateLabel->setText(txt);
|
|
|
|
|
} else dateLabel->setText(QString(GraphView->emptyText()));
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-18 15:33:50 +00:00
|
|
|
|
void Overview::on_RangeUpdate(double minx, double /* maxx */)
|
2014-08-28 15:45:46 +00:00
|
|
|
|
{
|
|
|
|
|
if (minx > 1) {
|
|
|
|
|
dateLabel->setText(GraphView->getRangeString());
|
|
|
|
|
} else {
|
|
|
|
|
dateLabel->setText(QString(GraphView->emptyText()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-07 08:44:04 +00:00
|
|
|
|
void Overview::ReloadGraphs()
|
|
|
|
|
{
|
2014-04-23 13:19:56 +00:00
|
|
|
|
GraphView->setDay(nullptr);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
updateCube();
|
2011-12-25 06:24:40 +00:00
|
|
|
|
|
|
|
|
|
on_rangeCombo_activated(ui->rangeCombo->currentIndex());
|
2011-06-26 08:30:44 +00:00
|
|
|
|
}
|
2011-09-23 03:54:48 +00:00
|
|
|
|
|
2012-01-03 11:12:13 +00:00
|
|
|
|
void Overview::updateGraphCombo()
|
|
|
|
|
{
|
|
|
|
|
ui->graphCombo->clear();
|
|
|
|
|
gGraph *g;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
// ui->graphCombo->addItem("Show All Graphs");
|
|
|
|
|
// ui->graphCombo->addItem("Hide All Graphs");
|
|
|
|
|
// ui->graphCombo->addItem("---------------");
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < GraphView->size(); i++) {
|
|
|
|
|
g = (*GraphView)[i];
|
2012-01-03 14:59:15 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
if (g->isEmpty()) { continue; }
|
2012-01-03 12:03:37 +00:00
|
|
|
|
|
2012-01-03 11:12:13 +00:00
|
|
|
|
if (g->visible()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
ui->graphCombo->addItem(*icon_on, g->title(), true);
|
2012-01-03 11:12:13 +00:00
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
ui->graphCombo->addItem(*icon_off, g->title(), false);
|
2012-01-03 11:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2012-01-03 14:59:15 +00:00
|
|
|
|
ui->graphCombo->setCurrentIndex(0);
|
|
|
|
|
updateCube();
|
2012-01-03 11:12:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
|
void Overview::ResetGraphs()
|
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QDate start = ui->dateStart->date();
|
|
|
|
|
QDate end = ui->dateEnd->date();
|
2014-04-23 13:19:56 +00:00
|
|
|
|
GraphView->setDay(nullptr);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
updateCube();
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
|
if (start.isValid() && end.isValid()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
setRange(start, end);
|
2011-12-25 13:27:47 +00:00
|
|
|
|
}
|
2012-01-05 15:17:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Overview::ResetGraph(QString name)
|
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
gGraph *g = GraphView->findGraph(name);
|
|
|
|
|
|
|
|
|
|
if (!g) { return; }
|
|
|
|
|
|
2014-04-23 13:19:56 +00:00
|
|
|
|
g->setDay(nullptr);
|
2012-01-05 15:17:50 +00:00
|
|
|
|
GraphView->redraw();
|
2011-12-25 13:27:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
|
void Overview::RedrawGraphs()
|
|
|
|
|
{
|
2011-12-20 11:12:52 +00:00
|
|
|
|
GraphView->redraw();
|
2011-09-23 03:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
void Overview::UpdateCalendarDay(QDateEdit *dateedit, QDate date)
|
2011-09-12 03:07:57 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QCalendarWidget *calendar = dateedit->calendarWidget();
|
2011-09-12 03:07:57 +00:00
|
|
|
|
QTextCharFormat bold;
|
|
|
|
|
QTextCharFormat cpapcol;
|
|
|
|
|
QTextCharFormat normal;
|
|
|
|
|
QTextCharFormat oxiday;
|
|
|
|
|
bold.setFontWeight(QFont::Bold);
|
|
|
|
|
cpapcol.setForeground(QBrush(Qt::blue, Qt::SolidPattern));
|
|
|
|
|
cpapcol.setFontWeight(QFont::Bold);
|
|
|
|
|
oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern));
|
|
|
|
|
oxiday.setFontWeight(QFont::Bold);
|
2014-09-11 14:23:08 +00:00
|
|
|
|
bool hascpap = p_profile->FindDay(date, MT_CPAP) != nullptr;
|
|
|
|
|
bool hasoxi = p_profile->FindDay(date, MT_OXIMETER) != nullptr;
|
2014-04-23 13:19:56 +00:00
|
|
|
|
//bool hasjournal=p_profile->GetDay(date,MT_JOURNAL)!=nullptr;
|
2011-09-12 03:07:57 +00:00
|
|
|
|
|
|
|
|
|
if (hascpap) {
|
|
|
|
|
if (hasoxi) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
calendar->setDateTextFormat(date, oxiday);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
calendar->setDateTextFormat(date, cpapcol);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
}
|
2011-10-05 07:41:56 +00:00
|
|
|
|
} else if (p_profile->GetDay(date)) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
calendar->setDateTextFormat(date, bold);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
calendar->setDateTextFormat(date, normal);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2011-09-12 03:07:57 +00:00
|
|
|
|
calendar->setHorizontalHeaderFormat(QCalendarWidget::ShortDayNames);
|
|
|
|
|
}
|
2011-10-05 08:09:57 +00:00
|
|
|
|
void Overview::dateStart_currentPageChanged(int year, int month)
|
2011-09-12 03:07:57 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QDate d(year, month, 1);
|
|
|
|
|
int dom = d.daysInMonth();
|
2011-09-12 03:07:57 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
for (int i = 1; i <= dom; i++) {
|
|
|
|
|
d = QDate(year, month, i);
|
|
|
|
|
UpdateCalendarDay(ui->dateStart, d);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-05 08:09:57 +00:00
|
|
|
|
void Overview::dateEnd_currentPageChanged(int year, int month)
|
2011-09-12 03:07:57 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QDate d(year, month, 1);
|
|
|
|
|
int dom = d.daysInMonth();
|
2011-09-12 03:07:57 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
for (int i = 1; i <= dom; i++) {
|
|
|
|
|
d = QDate(year, month, i);
|
|
|
|
|
UpdateCalendarDay(ui->dateEnd, d);
|
2011-09-12 03:07:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
|
void Overview::on_dateEnd_dateChanged(const QDate &date)
|
2011-07-02 09:49:53 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
qint64 d1 = qint64(QDateTime(ui->dateStart->date(), QTime(0, 10, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
qint64 d2 = qint64(QDateTime(date, QTime(23, 0, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
GraphView->SetXBounds(d1, d2);
|
2012-01-04 01:28:03 +00:00
|
|
|
|
ui->dateStart->setMaximumDate(date);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
|
void Overview::on_dateStart_dateChanged(const QDate &date)
|
2011-06-26 08:30:44 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
qint64 d1 = qint64(QDateTime(date, QTime(0, 10, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
qint64 d2 = qint64(QDateTime(ui->dateEnd->date(), QTime(23, 0, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
GraphView->SetXBounds(d1, d2);
|
2012-01-04 01:28:03 +00:00
|
|
|
|
ui->dateEnd->setMinimumDate(date);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
|
void Overview::on_toolButton_clicked()
|
2011-06-26 08:30:44 +00:00
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
qint64 d1 = qint64(QDateTime(ui->dateStart->date(), QTime(0, 10, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
qint64 d2 = qint64(QDateTime(ui->dateEnd->date(), QTime(23, 00, 0), Qt::UTC).toTime_t()) * 1000L;
|
|
|
|
|
GraphView->SetXBounds(d1, d2);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-12 17:47:37 +00:00
|
|
|
|
void Overview::ResetGraphLayout()
|
|
|
|
|
{
|
|
|
|
|
GraphView->resetLayout();
|
|
|
|
|
}
|
2011-12-01 15:40:32 +00:00
|
|
|
|
|
2011-12-25 06:24:40 +00:00
|
|
|
|
void Overview::on_rangeCombo_activated(int index)
|
|
|
|
|
{
|
2014-08-29 12:08:06 +00:00
|
|
|
|
p_profile->general->setLastOverviewRange(index);
|
2014-07-11 12:09:38 +00:00
|
|
|
|
ui->dateStart->setMinimumDate(p_profile->FirstDay());
|
|
|
|
|
ui->dateEnd->setMaximumDate(p_profile->LastDay());
|
2012-01-04 01:28:03 +00:00
|
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
|
QDate end = p_profile->LastDay();
|
2011-12-25 06:24:40 +00:00
|
|
|
|
QDate start;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
|
|
if (index == 8) { // Custom
|
2012-01-04 01:28:03 +00:00
|
|
|
|
ui->dateStartLabel->setEnabled(true);
|
|
|
|
|
ui->dateEndLabel->setEnabled(true);
|
|
|
|
|
ui->dateEnd->setEnabled(true);
|
|
|
|
|
ui->dateStart->setEnabled(true);
|
|
|
|
|
|
|
|
|
|
ui->dateStart->setMaximumDate(ui->dateEnd->date());
|
|
|
|
|
ui->dateEnd->setMinimumDate(ui->dateStart->date());
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2012-01-04 01:28:03 +00:00
|
|
|
|
ui->dateEnd->setEnabled(false);
|
|
|
|
|
ui->dateStart->setEnabled(false);
|
|
|
|
|
ui->dateStartLabel->setEnabled(false);
|
|
|
|
|
ui->dateEndLabel->setEnabled(false);
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
if (index == 0) {
|
|
|
|
|
start = end.addDays(-6);
|
|
|
|
|
} else if (index == 1) {
|
|
|
|
|
start = end.addDays(-13);
|
|
|
|
|
} else if (index == 2) {
|
|
|
|
|
start = end.addMonths(-1).addDays(1);
|
|
|
|
|
} else if (index == 3) {
|
|
|
|
|
start = end.addMonths(-2).addDays(1);
|
|
|
|
|
} else if (index == 4) {
|
|
|
|
|
start = end.addMonths(-3).addDays(1);
|
|
|
|
|
} else if (index == 5) {
|
|
|
|
|
start = end.addMonths(-6).addDays(1);
|
|
|
|
|
} else if (index == 6) {
|
|
|
|
|
start = end.addYears(-1).addDays(1);
|
|
|
|
|
} else if (index == 7) { // Everything
|
2014-07-11 12:09:38 +00:00
|
|
|
|
start = p_profile->FirstDay();
|
2011-12-25 06:24:40 +00:00
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
|
if (start < p_profile->FirstDay()) { start = p_profile->FirstDay(); }
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
|
|
setRange(start, end);
|
2011-12-25 13:27:47 +00:00
|
|
|
|
}
|
|
|
|
|
void Overview::setRange(QDate start, QDate end)
|
|
|
|
|
{
|
|
|
|
|
ui->dateEnd->blockSignals(true);
|
|
|
|
|
ui->dateStart->blockSignals(true);
|
2012-01-09 17:06:03 +00:00
|
|
|
|
ui->dateStart->setMaximumDate(end);
|
|
|
|
|
ui->dateEnd->setMinimumDate(start);
|
2011-12-25 06:24:40 +00:00
|
|
|
|
ui->dateStart->setDate(start);
|
2011-12-25 13:27:47 +00:00
|
|
|
|
ui->dateEnd->setDate(end);
|
|
|
|
|
ui->dateEnd->blockSignals(false);
|
|
|
|
|
ui->dateStart->blockSignals(false);
|
2011-12-25 06:24:40 +00:00
|
|
|
|
this->on_toolButton_clicked();
|
2012-01-03 11:12:13 +00:00
|
|
|
|
updateGraphCombo();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Overview::on_graphCombo_activated(int index)
|
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
if (index < 0) {
|
2012-01-03 11:12:13 +00:00
|
|
|
|
return;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
}
|
2012-01-03 11:12:13 +00:00
|
|
|
|
|
2012-01-03 14:59:15 +00:00
|
|
|
|
gGraph *g;
|
|
|
|
|
QString s;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
s = ui->graphCombo->currentText();
|
|
|
|
|
bool b = !ui->graphCombo->itemData(index, Qt::UserRole).toBool();
|
|
|
|
|
ui->graphCombo->setItemData(index, b, Qt::UserRole);
|
|
|
|
|
|
2012-01-03 11:12:13 +00:00
|
|
|
|
if (b) {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
ui->graphCombo->setItemIcon(index, *icon_on);
|
2012-01-03 11:12:13 +00:00
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
|
ui->graphCombo->setItemIcon(index, *icon_off);
|
2012-01-03 11:12:13 +00:00
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
|
g = GraphView->findGraphTitle(s);
|
2012-01-03 12:03:37 +00:00
|
|
|
|
g->setVisible(b);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
|
|
|
|
|
updateCube();
|
|
|
|
|
GraphView->updateScale();
|
|
|
|
|
GraphView->redraw();
|
|
|
|
|
}
|
|
|
|
|
void Overview::updateCube()
|
|
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
|
if ((GraphView->visibleGraphs() == 0)) {
|
2012-01-03 14:59:15 +00:00
|
|
|
|
ui->toggleVisibility->setArrowType(Qt::UpArrow);
|
|
|
|
|
ui->toggleVisibility->setToolTip(tr("Show all graphs"));
|
|
|
|
|
ui->toggleVisibility->blockSignals(true);
|
|
|
|
|
ui->toggleVisibility->setChecked(true);
|
|
|
|
|
ui->toggleVisibility->blockSignals(false);
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
if (ui->graphCombo->count() > 0) {
|
2014-08-21 08:04:25 +00:00
|
|
|
|
GraphView->setEmptyText(STR_Empty_NoGraphs);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
|
|
|
|
|
} else {
|
2014-08-21 08:04:25 +00:00
|
|
|
|
GraphView->setEmptyText(STR_Empty_NoData);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ui->toggleVisibility->setArrowType(Qt::DownArrow);
|
|
|
|
|
ui->toggleVisibility->setToolTip(tr("Hide all graphs"));
|
|
|
|
|
ui->toggleVisibility->blockSignals(true);
|
|
|
|
|
ui->toggleVisibility->setChecked(false);
|
|
|
|
|
ui->toggleVisibility->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Overview::on_toggleVisibility_clicked(bool checked)
|
|
|
|
|
{
|
|
|
|
|
gGraph *g;
|
|
|
|
|
QString s;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QIcon *icon = checked ? icon_off : icon_on;
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->graphCombo->count(); i++) {
|
|
|
|
|
s = ui->graphCombo->itemText(i);
|
|
|
|
|
ui->graphCombo->setItemIcon(i, *icon);
|
|
|
|
|
ui->graphCombo->setItemData(i, !checked, Qt::UserRole);
|
2014-07-16 17:12:52 +00:00
|
|
|
|
g = GraphView->findGraphTitle(s);
|
2012-01-03 14:59:15 +00:00
|
|
|
|
g->setVisible(!checked);
|
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
2012-01-03 14:59:15 +00:00
|
|
|
|
updateCube();
|
2012-01-03 12:03:37 +00:00
|
|
|
|
GraphView->updateScale();
|
2012-01-03 11:12:13 +00:00
|
|
|
|
GraphView->redraw();
|
2011-12-25 06:24:40 +00:00
|
|
|
|
}
|