2011-06-28 15:25:20 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
Overview GUI Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-06-28 15:25:20 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#include <QCalendarWidget>
|
|
|
|
#include <QTextCharFormat>
|
2011-07-19 14:04:54 +00:00
|
|
|
#include <QSystemLocale>
|
|
|
|
#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-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"
|
|
|
|
extern MainWindow * mainwin;
|
2011-12-01 15:40:32 +00:00
|
|
|
//extern QProgressBar * qprogress;
|
|
|
|
|
2011-10-05 07:41:56 +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
|
|
|
|
QLocale locale=QLocale::system();
|
|
|
|
QString shortformat=locale.dateFormat(QLocale::ShortFormat);
|
|
|
|
if (!shortformat.toLower().contains("yyyy")) {
|
|
|
|
shortformat.replace("yy","yyyy");
|
|
|
|
}
|
|
|
|
ui->dateStart->setDisplayFormat(shortformat);
|
|
|
|
ui->dateEnd->setDisplayFormat(shortformat);
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
|
|
Qt::DayOfWeek dow=firstDayOfWeekFromLocale();
|
|
|
|
|
|
|
|
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);
|
|
|
|
format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
|
|
|
|
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
|
|
|
|
connect(ui->dateStart->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(dateStart_currentPageChanged(int,int)));
|
|
|
|
connect(ui->dateEnd->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(dateEnd_currentPageChanged(int,int)));
|
|
|
|
|
|
|
|
// Create the horizontal layout to hold the GraphView object and it's scrollbar
|
2011-09-07 08:35:55 +00:00
|
|
|
layout=new QHBoxLayout(ui->graphArea);
|
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);
|
|
|
|
layout->setContentsMargins(0,0,0,0);
|
|
|
|
ui->graphArea->setLayout(layout);
|
|
|
|
ui->graphArea->setAutoFillBackground(false);
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
// Create the GraphView Object
|
2011-09-07 08:35:55 +00:00
|
|
|
GraphView=new gGraphView(ui->graphArea,m_shared);
|
|
|
|
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
|
|
|
|
2011-12-20 17:22:02 +00:00
|
|
|
GraphView->setEmptyText("Import some data!");
|
|
|
|
GraphView->setCubeImage(images["nodata"]);
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
// Create the custom scrollbar and attach to GraphView
|
2011-09-07 08:35:55 +00:00
|
|
|
scrollbar=new MyScrollBar(ui->graphArea);
|
|
|
|
scrollbar->setOrientation(Qt::Vertical);
|
|
|
|
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
|
|
|
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.
|
2011-09-07 08:35:55 +00:00
|
|
|
layout->addWidget(GraphView,1);
|
|
|
|
layout->addWidget(scrollbar,0);
|
|
|
|
layout->layout();
|
|
|
|
|
2011-10-31 11:55:25 +00:00
|
|
|
// TODO: Automate graph creation process
|
|
|
|
|
|
|
|
// The following code (to the closing marker) is crap --->
|
2011-12-24 05:55:44 +00:00
|
|
|
if (PROFILE.general->calculateRDI())
|
|
|
|
AHI=createGraph(tr("RDI"),"Respiratory\nDisturbance\nIndex");
|
|
|
|
else
|
|
|
|
AHI=createGraph(tr("AHI"),tr("Apnea\nHypopnea\nIndex"));
|
|
|
|
UC=createGraph(tr("Usage"),tr("Usage\n(hours)"));
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
|
|
|
2011-12-21 04:25:01 +00:00
|
|
|
US=createGraph(tr("Session Times"),tr("Session Times\n(hours)"),YT_Time);
|
2011-12-18 16:39:36 +00:00
|
|
|
PR=createGraph(tr("Pressure"),tr("Pressure\n(cmH2O)"));
|
|
|
|
SET=createGraph(tr("Settings"),("Settings"));
|
|
|
|
LK=createGraph(tr("Leaks"),tr("Leak Rate\n(L/min)"));
|
|
|
|
NPB=createGraph(tr("% in PB"),tr("Periodic\nBreathing\n(% of night)"));
|
|
|
|
AHIHR=createGraph(tr("AHI/Hour"),tr("AHI Events/Hour\n(ahi/hr)"));
|
|
|
|
RR=createGraph(tr("Resp. Rate"),tr("Respiratory\nRate\n(breaths/min)"));
|
|
|
|
TV=createGraph(tr("Tidal Volume"),tr("Tidal\nVolume\n(ml)"));
|
|
|
|
MV=createGraph(tr("Minute Vent."),tr("Minute\nVentilation\n(L/min)"));
|
|
|
|
PTB=createGraph(tr("Pat. Trig. Br."),tr("Patient\nTriggered\nBreaths\n(%)"));
|
|
|
|
SES=createGraph(tr("Sessions"),tr("Sessions\n(count)"));
|
|
|
|
PULSE=createGraph(tr("Pulse Rate"),tr("Pulse Rate\n(bpm)"));
|
2011-12-25 05:05:12 +00:00
|
|
|
SPO2=createGraph(STR_TR_SpO2,tr("Oxygen Saturation\n(%)"));
|
2011-12-21 05:47:33 +00:00
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
WEIGHT=createGraph(STR_TR_Weight,STR_TR_Weight,YT_Weight);
|
|
|
|
BMI=createGraph(STR_TR_BMI,tr("Body\nMass\nIndex"));
|
2011-12-18 16:39:36 +00:00
|
|
|
ZOMBIE=createGraph(tr("Zombie"),tr("How you felt\n(0-10)"));
|
|
|
|
|
|
|
|
ahihr=new SummaryChart(tr("AHI/Hr"),GT_LINE);
|
2011-12-11 09:45:28 +00:00
|
|
|
ahihr->addSlice(CPAP_AHI,QColor("blue"),ST_MAX,false);
|
|
|
|
ahihr->addSlice(CPAP_AHI,QColor("orange"),ST_WAVG,false);
|
2011-12-06 14:39:14 +00:00
|
|
|
AHIHR->AddLayer(ahihr);
|
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
weight=new SummaryChart(STR_TR_Weight,GT_LINE);
|
2011-12-02 12:05:57 +00:00
|
|
|
weight->setMachineType(MT_JOURNAL);
|
2011-12-21 05:47:33 +00:00
|
|
|
weight->addSlice(Journal_Weight,QColor("black"),ST_SETAVG,true);
|
2011-12-02 12:05:57 +00:00
|
|
|
WEIGHT->AddLayer(weight);
|
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
bmi=new SummaryChart(STR_TR_BMI,GT_LINE);
|
2011-12-03 19:13:55 +00:00
|
|
|
bmi->setMachineType(MT_JOURNAL);
|
2011-12-21 05:47:33 +00:00
|
|
|
bmi->addSlice(Journal_BMI,QColor("dark blue"),ST_SETAVG,true);
|
2011-12-03 19:13:55 +00:00
|
|
|
BMI->AddLayer(bmi);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
zombie=new SummaryChart(tr("Zombie Meter"),GT_LINE);
|
2011-12-02 12:05:57 +00:00
|
|
|
zombie->setMachineType(MT_JOURNAL);
|
2011-12-21 05:47:33 +00:00
|
|
|
zombie->addSlice(Journal_ZombieMeter,QColor("dark red"),ST_SETAVG,true);
|
2011-12-02 12:05:57 +00:00
|
|
|
ZOMBIE->AddLayer(zombie);
|
2011-12-01 00:18:59 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
pulse=new SummaryChart(tr("Pulse Rate"),GT_LINE);
|
2011-12-01 00:18:59 +00:00
|
|
|
pulse->setMachineType(MT_OXIMETER);
|
2011-12-04 14:26:32 +00:00
|
|
|
pulse->addSlice(OXI_Pulse,QColor("red"),ST_WAVG,true);
|
|
|
|
pulse->addSlice(OXI_Pulse,QColor("pink"),ST_MIN,true);
|
|
|
|
pulse->addSlice(OXI_Pulse,QColor("orange"),ST_MAX,true);
|
2011-12-01 00:18:59 +00:00
|
|
|
PULSE->AddLayer(pulse);
|
|
|
|
|
2011-12-25 05:05:12 +00:00
|
|
|
spo2=new SummaryChart(STR_TR_SpO2,GT_LINE);
|
2011-12-01 00:18:59 +00:00
|
|
|
spo2->setMachineType(MT_OXIMETER);
|
2011-12-04 14:26:32 +00:00
|
|
|
spo2->addSlice(OXI_SPO2,QColor("cyan"),ST_WAVG,true);
|
|
|
|
spo2->addSlice(OXI_SPO2,QColor("light blue"),ST_90P,true);
|
|
|
|
spo2->addSlice(OXI_SPO2,QColor("blue"),ST_MIN,true);
|
2011-12-01 00:18:59 +00:00
|
|
|
SPO2->AddLayer(spo2);
|
2011-09-08 18:38:07 +00:00
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
uc=new SummaryChart(STR_UNIT_Hours,GT_BAR);
|
2011-12-21 17:00:19 +00:00
|
|
|
uc->addSlice(NoChannel,QColor("green"),ST_HOURS,true);
|
2011-09-07 08:35:55 +00:00
|
|
|
UC->AddLayer(uc);
|
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
us=new SummaryChart(STR_UNIT_Hours,GT_SESSIONS);
|
2011-12-21 17:00:19 +00:00
|
|
|
us->addSlice(NoChannel,QColor("dark blue"),ST_HOURS,true);
|
|
|
|
us->addSlice(NoChannel,QColor("blue"),ST_SESSIONS,true);
|
2011-11-30 06:01:38 +00:00
|
|
|
US->AddLayer(us);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
ses=new SummaryChart(tr("Sessions"),GT_LINE);
|
2011-12-21 17:00:19 +00:00
|
|
|
ses->addSlice(NoChannel,QColor("blue"),ST_SESSIONS,true);
|
2011-10-30 15:25:53 +00:00
|
|
|
SES->AddLayer(ses);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
2011-12-24 05:55:44 +00:00
|
|
|
if (PROFILE.general->calculateRDI())
|
|
|
|
bc=new SummaryChart(tr("RDI"),GT_BAR);
|
|
|
|
else
|
|
|
|
bc=new SummaryChart(tr("AHI"),GT_BAR);
|
2011-12-04 14:26:32 +00:00
|
|
|
bc->addSlice(CPAP_Hypopnea,QColor("blue"),ST_CPH,false);
|
|
|
|
bc->addSlice(CPAP_Apnea,QColor("dark green"),ST_CPH,false);
|
|
|
|
bc->addSlice(CPAP_Obstructive,QColor("#40c0ff"),ST_CPH,false);
|
|
|
|
bc->addSlice(CPAP_ClearAirway,QColor("purple"),ST_CPH,false);
|
2011-12-24 05:55:44 +00:00
|
|
|
if (PROFILE.general->calculateRDI()) {
|
|
|
|
bc->addSlice(CPAP_RERA,QColor("gold"),ST_CPH,false);
|
|
|
|
}
|
2011-09-07 08:35:55 +00:00
|
|
|
AHI->AddLayer(bc);
|
|
|
|
|
2011-10-05 07:41:56 +00:00
|
|
|
set=new SummaryChart("",GT_LINE);
|
2011-12-21 17:00:19 +00:00
|
|
|
//set->addSlice(PRS1_SysOneResistSet,QColor("grey"),ST_SETAVG);
|
2011-12-17 17:56:16 +00:00
|
|
|
set->addSlice(PRS1_HumidSetting,QColor("blue"),ST_SETWAVG,true);
|
|
|
|
set->addSlice(PRS1_FlexSet,QColor("red"),ST_SETWAVG,true);
|
2011-12-21 17:00:19 +00:00
|
|
|
set->addSlice(RMS9_EPR,QColor("green"),ST_SETWAVG,true);
|
|
|
|
set->addSlice(INTP_SmartFlex,QColor("purple"),ST_SETWAVG,true);
|
2011-11-27 16:07:28 +00:00
|
|
|
SET->setRecMinY(0);
|
|
|
|
SET->setRecMaxY(5);
|
2011-09-18 15:43:14 +00:00
|
|
|
SET->AddLayer(set);
|
2011-09-08 18:38:07 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
rr=new SummaryChart(tr("breaths/min"),GT_LINE);
|
2011-12-04 14:26:32 +00:00
|
|
|
rr->addSlice(CPAP_RespRate,QColor("light blue"),ST_MIN,true);
|
|
|
|
rr->addSlice(CPAP_RespRate,QColor("light green"),ST_90P,true);
|
|
|
|
rr->addSlice(CPAP_RespRate,QColor("blue"),ST_WAVG,true);
|
2011-11-28 04:05:09 +00:00
|
|
|
RR->AddLayer(rr);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
tv=new SummaryChart(tr("L/b"),GT_LINE);
|
2011-12-04 14:26:32 +00:00
|
|
|
tv->addSlice(CPAP_TidalVolume,QColor("light blue"),ST_MIN,true);
|
|
|
|
tv->addSlice(CPAP_TidalVolume,QColor("light green"),ST_90P,true);
|
|
|
|
tv->addSlice(CPAP_TidalVolume,QColor("blue"),ST_WAVG,true);
|
2011-11-30 15:19:31 +00:00
|
|
|
TV->AddLayer(tv);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
mv=new SummaryChart(tr("L/m"),GT_LINE);
|
2011-12-04 14:26:32 +00:00
|
|
|
mv->addSlice(CPAP_MinuteVent,QColor("light blue"),ST_MIN,true);
|
|
|
|
mv->addSlice(CPAP_MinuteVent,QColor("light green"),ST_90P,true);
|
|
|
|
mv->addSlice(CPAP_MinuteVent,QColor("blue"),ST_WAVG,true);
|
2011-11-30 15:19:31 +00:00
|
|
|
MV->AddLayer(mv);
|
|
|
|
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
ptb=new SummaryChart(tr("%PTB"),GT_LINE);
|
2011-12-04 14:26:32 +00:00
|
|
|
ptb->addSlice(CPAP_PTB,QColor("yellow"),ST_MIN,true);
|
|
|
|
ptb->addSlice(CPAP_PTB,QColor("light gray"),ST_90P,true);
|
|
|
|
ptb->addSlice(CPAP_PTB,QColor("orange"),ST_WAVG,true);
|
2011-11-30 15:19:31 +00:00
|
|
|
PTB->AddLayer(ptb);
|
|
|
|
|
2011-12-21 14:24:09 +00:00
|
|
|
pr=new SummaryChart(STR_UNIT_CMH2O,GT_LINE);
|
2011-11-27 16:07:28 +00:00
|
|
|
//PR->setRecMinY(4.0);
|
|
|
|
//PR->setRecMaxY(12.0);
|
2011-12-24 05:55:44 +00:00
|
|
|
|
2011-12-25 05:05:12 +00:00
|
|
|
CPAPMode mode=(CPAPMode)(int)PROFILE.calcSettingsMax(CPAP_Mode,MT_CPAP,PROFILE.FirstDay(MT_CPAP),PROFILE.LastDay(MT_CPAP));
|
|
|
|
|
|
|
|
if (mode>=MODE_BIPAP) {
|
|
|
|
pr->addSlice(CPAP_EPAP,QColor("green"),ST_MIN,true);
|
|
|
|
pr->addSlice(CPAP_EPAP,QColor("light green"),ST_90P,true);
|
|
|
|
|
|
|
|
pr->addSlice(CPAP_IPAP,QColor("blue"),ST_MAX,true);
|
|
|
|
pr->addSlice(CPAP_IPAP,QColor("light blue"),ST_90P,true);
|
|
|
|
} else if (mode>MODE_CPAP) {
|
|
|
|
pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG,true);
|
|
|
|
pr->addSlice(CPAP_Pressure,QColor("orange"),ST_MIN,true);
|
|
|
|
pr->addSlice(CPAP_Pressure,QColor("red"),ST_MAX,true);
|
|
|
|
//pr->addSlice(CPAP_Pressure,QColor("grey"),ST_90P,true);
|
|
|
|
pr->addSlice(CPAP_Pressure,QColor("grey"),ST_PERC,true,0.95);
|
|
|
|
} else {
|
|
|
|
pr->addSlice(CPAP_PressureMin,QColor("grey"),ST_SETWAVG,true);
|
|
|
|
}
|
2011-09-08 18:38:07 +00:00
|
|
|
PR->AddLayer(pr);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
lk=new SummaryChart(tr("Avg Leak"),GT_LINE);
|
2011-12-24 06:20:07 +00:00
|
|
|
lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_PERC,false,0.8);
|
2011-12-04 14:26:32 +00:00
|
|
|
lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG,false);
|
2011-09-08 18:38:07 +00:00
|
|
|
//lk->addSlice(CPAP_Leak,QColor("dark yellow"));
|
|
|
|
//pr->addSlice(CPAP_IPAP,QColor("red"));
|
|
|
|
LK->AddLayer(lk);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
NPB->AddLayer(npb=new SummaryChart(tr("% PB"),GT_BAR));
|
2011-12-04 14:26:32 +00:00
|
|
|
npb->addSlice(CPAP_CSR,QColor("light green"),ST_SPH,false);
|
2011-10-31 11:55:25 +00:00
|
|
|
// <--- The code to the previous marker is crap
|
2011-09-11 06:16:45 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
GraphView->LoadSettings("Overview"); //no trans
|
2011-09-07 08:44:04 +00:00
|
|
|
}
|
|
|
|
Overview::~Overview()
|
|
|
|
{
|
2011-12-18 16:39:36 +00:00
|
|
|
GraphView->SaveSettings("Overview");//no trans
|
2011-10-05 08:09:57 +00:00
|
|
|
disconnect(this,SLOT(dateStart_currentPageChanged(int,int)));
|
|
|
|
disconnect(this,SLOT(dateEnd_currentPageChanged(int,int)));
|
2011-09-07 08:44:04 +00:00
|
|
|
delete ui;
|
|
|
|
}
|
2011-12-21 04:25:01 +00:00
|
|
|
gGraph * Overview::createGraph(QString name,QString units, YTickerType yttype)
|
2011-10-31 11:55:25 +00:00
|
|
|
{
|
2011-12-21 12:47:47 +00:00
|
|
|
int default_height=PROFILE.appearance->graphHeight();
|
2011-12-05 08:32:46 +00:00
|
|
|
gGraph *g=new gGraph(GraphView,name,units,default_height,0);
|
2011-12-21 04:25:01 +00:00
|
|
|
|
|
|
|
gYAxis *yt;
|
|
|
|
switch (yttype) {
|
|
|
|
case YT_Time:
|
|
|
|
yt=new gYAxisTime(true); // Time scale
|
|
|
|
break;
|
|
|
|
case YT_Weight:
|
2011-12-21 12:47:47 +00:00
|
|
|
yt=new gYAxisWeight(PROFILE.general->unitSystem());
|
2011-12-21 04:25:01 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
yt=new gYAxis(); // Plain numeric scale
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g->AddLayer(yt,LayerLeft,gYAxis::Margin);
|
2011-10-31 11:55:25 +00:00
|
|
|
gXAxis *x=new gXAxis();
|
|
|
|
x->setUtcFix(true);
|
|
|
|
g->AddLayer(x,LayerBottom,0,gXAxis::Margin);
|
|
|
|
g->AddLayer(new gXGrid());
|
|
|
|
return g;
|
|
|
|
}
|
|
|
|
|
2011-09-07 08:44:04 +00:00
|
|
|
void Overview::ReloadGraphs()
|
|
|
|
{
|
2011-10-05 07:41:56 +00:00
|
|
|
ui->dateStart->setDate(p_profile->FirstDay());
|
|
|
|
ui->dateEnd->setDate(p_profile->LastDay());
|
2011-09-08 18:38:07 +00:00
|
|
|
GraphView->setDay(NULL);
|
2011-12-21 12:47:47 +00:00
|
|
|
if (PROFILE.general->rebuildCache()) {
|
|
|
|
PROFILE.general->setRebuildCache(false);
|
2011-12-18 16:39:36 +00:00
|
|
|
mainwin->Notify(tr("Cache rebuild complete"));
|
2011-12-11 09:45:28 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +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
|
|
|
}
|
|
|
|
|
2011-09-12 03:07:57 +00:00
|
|
|
void Overview::UpdateCalendarDay(QDateEdit * dateedit,QDate date)
|
|
|
|
{
|
|
|
|
QCalendarWidget *calendar=dateedit->calendarWidget();
|
|
|
|
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);
|
2011-10-31 11:55:25 +00:00
|
|
|
bool hascpap=p_profile->GetDay(date,MT_CPAP)!=NULL;
|
|
|
|
bool hasoxi=p_profile->GetDay(date,MT_OXIMETER)!=NULL;
|
|
|
|
//bool hasjournal=p_profile->GetDay(date,MT_JOURNAL)!=NULL;
|
2011-09-12 03:07:57 +00:00
|
|
|
|
|
|
|
if (hascpap) {
|
|
|
|
if (hasoxi) {
|
|
|
|
calendar->setDateTextFormat(date,oxiday);
|
|
|
|
} else {
|
|
|
|
calendar->setDateTextFormat(date,cpapcol);
|
|
|
|
}
|
2011-10-05 07:41:56 +00:00
|
|
|
} else if (p_profile->GetDay(date)) {
|
2011-09-12 03:07:57 +00:00
|
|
|
calendar->setDateTextFormat(date,bold);
|
|
|
|
} else {
|
|
|
|
calendar->setDateTextFormat(date,normal);
|
|
|
|
}
|
|
|
|
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
|
|
|
{
|
|
|
|
QDate d(year,month,1);
|
|
|
|
int dom=d.daysInMonth();
|
|
|
|
|
|
|
|
for (int i=1;i<=dom;i++) {
|
|
|
|
d=QDate(year,month,i);
|
|
|
|
UpdateCalendarDay(ui->dateStart,d);
|
|
|
|
}
|
|
|
|
}
|
2011-10-05 08:09:57 +00:00
|
|
|
void Overview::dateEnd_currentPageChanged(int year, int month)
|
2011-09-12 03:07:57 +00:00
|
|
|
{
|
|
|
|
QDate d(year,month,1);
|
|
|
|
int dom=d.daysInMonth();
|
|
|
|
|
|
|
|
for (int i=1;i<=dom;i++) {
|
|
|
|
d=QDate(year,month,i);
|
|
|
|
UpdateCalendarDay(ui->dateEnd,d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-09-11 06:16:45 +00:00
|
|
|
qint64 d1=qint64(QDateTime(ui->dateStart->date(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
|
|
|
|
qint64 d2=qint64(QDateTime(date,QTime(23,59,59),Qt::UTC).toTime_t())*1000L;
|
|
|
|
GraphView->SetXBounds(d1,d2);
|
2011-07-17 07:03:26 +00:00
|
|
|
|
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
|
|
|
{
|
2011-09-11 06:16:45 +00:00
|
|
|
qint64 d1=qint64(QDateTime(date,QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
|
|
|
|
qint64 d2=qint64(QDateTime(ui->dateEnd->date(),QTime(23,59,59),Qt::UTC).toTime_t())*1000L;
|
|
|
|
GraphView->SetXBounds(d1,d2);
|
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
|
|
|
{
|
2011-09-11 06:16:45 +00:00
|
|
|
qint64 d1=qint64(QDateTime(ui->dateStart->date(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
|
|
|
|
qint64 d2=qint64(QDateTime(ui->dateEnd->date(),QTime(23,59,59),Qt::UTC).toTime_t())*1000L;
|
|
|
|
GraphView->SetXBounds(d1,d2);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 16:10:18 +00:00
|
|
|
void Overview::on_printButton_clicked()
|
|
|
|
{
|
2011-12-21 14:24:09 +00:00
|
|
|
mainwin->PrintReport(GraphView,STR_TR_Overview); // Must be translated the same as PrintReport checks.
|
2011-09-12 16:10:18 +00:00
|
|
|
}
|
|
|
|
|
2011-09-12 17:47:37 +00:00
|
|
|
void Overview::ResetGraphLayout()
|
|
|
|
{
|
|
|
|
GraphView->resetLayout();
|
|
|
|
}
|
2011-12-01 15:40:32 +00:00
|
|
|
|