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-06-26 08:30:44 +00:00
|
|
|
#include "overview.h"
|
|
|
|
#include "ui_overview.h"
|
|
|
|
#include "Graphs/gXAxis.h"
|
|
|
|
#include "Graphs/gLineChart.h"
|
|
|
|
#include "Graphs/gYAxis.h"
|
|
|
|
|
2011-09-12 02:24:58 +00:00
|
|
|
const int default_height=180;
|
2011-09-11 14:36:51 +00:00
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
|
2011-06-26 08:30:44 +00:00
|
|
|
QWidget(parent),
|
2011-09-11 06:16:45 +00:00
|
|
|
ui(new Ui::Overview),
|
|
|
|
profile(_profile),
|
|
|
|
m_shared(shared)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-09-07 08:35:55 +00:00
|
|
|
ui->setupUi(this);
|
2011-09-11 06:16:45 +00:00
|
|
|
Q_ASSERT(profile!=NULL);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Create dummy day & session for holding eventlists.
|
|
|
|
//day=new Day(mach);
|
|
|
|
|
|
|
|
layout=new QHBoxLayout(ui->graphArea);
|
|
|
|
layout->setSpacing(0);
|
|
|
|
layout->setMargin(0);
|
|
|
|
layout->setContentsMargins(0,0,0,0);
|
|
|
|
ui->graphArea->setLayout(layout);
|
|
|
|
ui->graphArea->setAutoFillBackground(false);
|
|
|
|
|
|
|
|
GraphView=new gGraphView(ui->graphArea,m_shared);
|
|
|
|
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
|
|
|
|
|
|
|
scrollbar=new MyScrollBar(ui->graphArea);
|
|
|
|
scrollbar->setOrientation(Qt::Vertical);
|
|
|
|
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
|
|
|
scrollbar->setMaximumWidth(20);
|
|
|
|
|
|
|
|
GraphView->setScrollBar(scrollbar);
|
|
|
|
layout->addWidget(GraphView,1);
|
|
|
|
layout->addWidget(scrollbar,0);
|
|
|
|
|
|
|
|
layout->layout();
|
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
AHI=new gGraph(GraphView,"AHI",default_height,0);
|
|
|
|
UC=new gGraph(GraphView,"Usage",default_height,0);
|
|
|
|
PR=new gGraph(GraphView,"Pressure",default_height,0);
|
|
|
|
LK=new gGraph(GraphView,"Leaks",default_height,0);
|
|
|
|
|
2011-09-10 04:20:45 +00:00
|
|
|
uc=new SummaryChart(profile,"Hours",GT_BAR);
|
|
|
|
uc->addSlice(EmptyChannel,QColor("green"),ST_HOURS);
|
2011-09-07 08:35:55 +00:00
|
|
|
UC->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
|
|
|
gXAxis *gx=new gXAxis();
|
|
|
|
gx->setUtcFix(true);
|
|
|
|
UC->AddLayer(gx,LayerBottom,0,gXAxis::Margin);
|
|
|
|
UC->AddLayer(uc);
|
|
|
|
UC->AddLayer(new gXGrid());
|
|
|
|
|
|
|
|
|
2011-09-10 07:27:24 +00:00
|
|
|
bc=new SummaryChart(profile,"AHI",GT_BAR);
|
2011-09-10 04:20:45 +00:00
|
|
|
bc->addSlice(CPAP_Hypopnea,QColor("blue"),ST_CPH);
|
|
|
|
bc->addSlice(CPAP_Apnea,QColor("dark green"),ST_CPH);
|
|
|
|
bc->addSlice(CPAP_Obstructive,QColor("#40c0ff"),ST_CPH);
|
|
|
|
bc->addSlice(CPAP_ClearAirway,QColor("purple"),ST_CPH);
|
2011-09-07 08:35:55 +00:00
|
|
|
AHI->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
|
|
|
gx=new gXAxis();
|
|
|
|
gx->setUtcFix(true);
|
|
|
|
AHI->AddLayer(gx,LayerBottom,0,gXAxis::Margin);
|
|
|
|
AHI->AddLayer(bc);
|
|
|
|
AHI->AddLayer(new gXGrid());
|
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
|
2011-09-10 04:20:45 +00:00
|
|
|
pr=new SummaryChart(profile,"cmH2O",GT_LINE);
|
|
|
|
|
2011-09-10 08:26:21 +00:00
|
|
|
pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG);
|
2011-09-10 14:17:45 +00:00
|
|
|
pr->addSlice(CPAP_Pressure,QColor("orange"),ST_MIN);
|
2011-09-10 06:29:58 +00:00
|
|
|
pr->addSlice(CPAP_Pressure,QColor("red"),ST_MAX);
|
2011-09-10 08:26:21 +00:00
|
|
|
pr->addSlice(CPAP_EPAP,QColor("light green"),ST_MIN);
|
2011-09-10 07:27:24 +00:00
|
|
|
pr->addSlice(CPAP_IPAP,QColor("light blue"),ST_MAX);
|
2011-09-10 04:20:45 +00:00
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
PR->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
|
|
|
gx=new gXAxis();
|
|
|
|
gx->setUtcFix(true);
|
|
|
|
PR->AddLayer(gx,LayerBottom,0,gXAxis::Margin);
|
|
|
|
PR->AddLayer(pr);
|
|
|
|
PR->AddLayer(new gXGrid());
|
|
|
|
|
2011-09-10 04:20:45 +00:00
|
|
|
lk=new SummaryChart(profile,"Avg Leak",GT_LINE);
|
2011-09-10 06:59:09 +00:00
|
|
|
lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_90P);
|
2011-09-10 14:17:45 +00:00
|
|
|
lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG);
|
2011-09-08 18:38:07 +00:00
|
|
|
//lk->addSlice(CPAP_Leak,QColor("dark yellow"));
|
|
|
|
//pr->addSlice(CPAP_IPAP,QColor("red"));
|
|
|
|
LK->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
|
|
|
gx=new gXAxis();
|
|
|
|
gx->setUtcFix(true);
|
|
|
|
LK->AddLayer(gx,LayerBottom,0,gXAxis::Margin);
|
|
|
|
LK->AddLayer(lk);
|
|
|
|
LK->AddLayer(new gXGrid());
|
|
|
|
|
2011-09-10 15:43:40 +00:00
|
|
|
NPB=new gGraph(GraphView,"% in PB",default_height,0);
|
|
|
|
NPB->AddLayer(npb=new SummaryChart(profile,"% PB",GT_BAR));
|
|
|
|
npb->addSlice(CPAP_CSR,QColor("light green"),ST_SPH);
|
|
|
|
NPB->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
|
|
|
gx=new gXAxis();
|
|
|
|
gx->setUtcFix(true);
|
|
|
|
NPB->AddLayer(gx,LayerBottom,0,gXAxis::Margin);
|
|
|
|
NPB->AddLayer(new gXGrid());
|
2011-09-08 18:38:07 +00:00
|
|
|
|
2011-09-07 08:35:55 +00:00
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
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-09-12 03:07:57 +00:00
|
|
|
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(ui->dateStart->calendarWidget(),SIGNAL(currentPageChanged(int,int)),this,SLOT(on_dateStart_currentPageChanged(int,int)));
|
|
|
|
connect(ui->dateEnd->calendarWidget(),SIGNAL(currentPageChanged(int,int)),this,SLOT(on_dateEnd_currentPageChanged(int,int)));
|
2011-09-11 06:16:45 +00:00
|
|
|
report=NULL;
|
2011-09-07 08:44:04 +00:00
|
|
|
}
|
|
|
|
Overview::~Overview()
|
|
|
|
{
|
2011-09-12 03:07:57 +00:00
|
|
|
disconnect(this,SLOT(on_dateStart_currentPageChanged(int,int)));
|
|
|
|
disconnect(this,SLOT(on_dateEnd_currentPageChanged(int,int)));
|
2011-09-11 07:57:29 +00:00
|
|
|
if (report) {
|
2011-09-11 06:16:45 +00:00
|
|
|
report->close();
|
|
|
|
delete report;
|
|
|
|
}
|
2011-09-07 08:44:04 +00:00
|
|
|
//delete day;
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
void Overview::ReloadGraphs()
|
|
|
|
{
|
2011-09-11 06:16:45 +00:00
|
|
|
ui->dateStart->setDate(profile->FirstDay());
|
|
|
|
ui->dateEnd->setDate(profile->LastDay());
|
2011-09-08 18:38:07 +00:00
|
|
|
GraphView->setDay(NULL);
|
2011-09-07 08:35:55 +00:00
|
|
|
|
2011-06-26 08:30:44 +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);
|
|
|
|
bool hascpap=profile->GetDay(date,MT_CPAP)!=NULL;
|
|
|
|
bool hasoxi=profile->GetDay(date,MT_OXIMETER)!=NULL;
|
|
|
|
|
|
|
|
if (hascpap) {
|
|
|
|
if (hasoxi) {
|
|
|
|
calendar->setDateTextFormat(date,oxiday);
|
|
|
|
} else {
|
|
|
|
calendar->setDateTextFormat(date,cpapcol);
|
|
|
|
}
|
|
|
|
} else if (profile->GetDay(date)) {
|
|
|
|
calendar->setDateTextFormat(date,bold);
|
|
|
|
} else {
|
|
|
|
calendar->setDateTextFormat(date,normal);
|
|
|
|
}
|
|
|
|
calendar->setHorizontalHeaderFormat(QCalendarWidget::ShortDayNames);
|
|
|
|
}
|
|
|
|
void Overview::on_dateStart_currentPageChanged(int year, int month)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void Overview::on_dateEnd_currentPageChanged(int year, int month)
|
|
|
|
{
|
|
|
|
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-11 06:16:45 +00:00
|
|
|
void Overview::on_printButton_clicked()
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-07-01 10:10:44 +00:00
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
if (!report) {
|
2011-09-11 13:58:26 +00:00
|
|
|
report=new Report(this,profile,m_shared,this);
|
2011-09-12 02:24:58 +00:00
|
|
|
report->hide();
|
2011-09-11 06:16:45 +00:00
|
|
|
}
|
2011-07-01 10:10:44 +00:00
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
if (report) {
|
2011-09-11 07:10:39 +00:00
|
|
|
bc->deselect();
|
|
|
|
uc->deselect();
|
|
|
|
pr->deselect();
|
|
|
|
lk->deselect();
|
|
|
|
npb->deselect();
|
2011-09-11 06:16:45 +00:00
|
|
|
|
|
|
|
report->ReloadGraphs();
|
|
|
|
report->GenerateReport(ui->dateStart->date(),ui->dateEnd->date());
|
2011-09-12 02:49:56 +00:00
|
|
|
report->Print();
|
2011-09-11 06:16:45 +00:00
|
|
|
}
|
2011-07-01 10:10:44 +00:00
|
|
|
}
|
|
|
|
|
2011-09-11 06:16:45 +00:00
|
|
|
void Overview::readyToPrint(bool)
|
2011-07-01 10:10:44 +00:00
|
|
|
{
|
|
|
|
}
|