2019-08-18 21:27:21 +00:00
|
|
|
/* Reports/Printing Module
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2020-01-15 21:34:28 +00:00
|
|
|
* Copyright (c) 2019-2020 The OSCAR Team
|
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. */
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
#include <QMessageBox>
|
2014-09-24 01:42:14 +00:00
|
|
|
#include <QtPrintSupport/qprinter.h>
|
|
|
|
#include <QtPrintSupport/qprintdialog.h>
|
2013-09-14 23:32:14 +00:00
|
|
|
#include <QTextDocument>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include "reports.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "common_gui.h"
|
2018-06-06 00:48:31 +00:00
|
|
|
#include "SleepLib/progressdialog.h"
|
2020-01-15 21:34:28 +00:00
|
|
|
#include "version.h"
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
extern MainWindow *mainwin;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
Report::Report()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
void Report::PrintReport(gGraphView *gv, QString name, QDate date)
|
2013-09-14 23:32:14 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
if (!gv) { return; }
|
|
|
|
|
2014-04-23 13:19:56 +00:00
|
|
|
Session *journal = nullptr;
|
2013-09-14 23:32:14 +00:00
|
|
|
//QDate d=QDate::currentDate();
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
int visgraphs = gv->visibleGraphs();
|
|
|
|
|
|
|
|
if (visgraphs == 0) {
|
2013-09-14 23:32:14 +00:00
|
|
|
mainwin->Notify(QObject::tr("There are no graphs visible to print"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
bool print_bookmarks = false;
|
|
|
|
|
|
|
|
if (name == STR_TR_Daily) {
|
2013-09-14 23:32:14 +00:00
|
|
|
QVariantList book_start;
|
2014-04-17 05:52:25 +00:00
|
|
|
journal = mainwin->getDaily()->GetJournalSession(mainwin->getDaily()->getDate());
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (journal && journal->settings.contains(Bookmark_Start)) {
|
2014-04-17 05:52:25 +00:00
|
|
|
book_start = journal->settings[Bookmark_Start].toList();
|
|
|
|
|
|
|
|
if (book_start.size() > 0) {
|
|
|
|
if (QMessageBox::question(mainwin, STR_TR_Bookmarks,
|
2014-10-07 03:06:00 +00:00
|
|
|
QObject::tr("Would you like to show bookmarked areas in this report?"),
|
|
|
|
QMessageBox::Yes,
|
2014-04-17 05:52:25 +00:00
|
|
|
QMessageBox::No) == QMessageBox::Yes) {
|
|
|
|
print_bookmarks = true;
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QPrinter *printer;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
bool aa_setting = AppSetting->antiAliasing();
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
bool force_antialiasing = aa_setting;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
printer = new QPrinter(QPrinter::HighResolution);
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2019-06-21 15:02:35 +00:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
QString username = p_profile->Get(QString("_{") + QString(STR_UI_UserName) + "}_");
|
2013-09-14 23:32:14 +00:00
|
|
|
printer->setPrinterName("Print to File (PDF)");
|
|
|
|
printer->setOutputFormat(QPrinter::PdfFormat);
|
2019-03-25 23:36:41 +00:00
|
|
|
QString filename = p_pref->Get("{home}/") + name + username + date.toString(Qt::ISODate) + ".pdf";
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
printer->setOutputFileName(filename);
|
|
|
|
#endif
|
|
|
|
printer->setPrintRange(QPrinter::AllPages);
|
|
|
|
printer->setOrientation(QPrinter::Portrait);
|
|
|
|
printer->setFullPage(false); // This has nothing to do with scaling
|
|
|
|
printer->setNumCopies(1);
|
2014-04-17 05:52:25 +00:00
|
|
|
printer->setPageMargins(10, 10, 10, 10, QPrinter::Millimeter);
|
2013-09-14 23:32:14 +00:00
|
|
|
QPrintDialog dialog(printer);
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
// QTBUG-17913
|
|
|
|
QApplication::processEvents();
|
|
|
|
#endif
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (dialog.exec() != QDialog::Accepted) {
|
|
|
|
delete printer;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-06 00:48:31 +00:00
|
|
|
QPainter painter(printer);
|
|
|
|
|
|
|
|
ProgressDialog progress(mainwin);
|
|
|
|
progress.setMessage(QObject::tr("Printing %1 Report").arg(name));
|
2019-04-16 17:12:26 +00:00
|
|
|
QPixmap icon = QPixmap(":/icons/logo-md.png").scaled(64,64);
|
2018-06-06 00:48:31 +00:00
|
|
|
progress.setPixmap(icon);
|
|
|
|
progress.open();
|
2014-08-29 04:02:16 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
GLint gw;
|
2014-04-17 05:52:25 +00:00
|
|
|
gw = 2048; // Rough guess.. No GL_MAX_RENDERBUFFER_SIZE in mingw.. :(
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
//QSizeF pxres=printer->paperSize(QPrinter::DevicePixel);
|
2014-04-17 05:52:25 +00:00
|
|
|
QRect prect = printer->pageRect();
|
|
|
|
float ratio = float(prect.height()) / float(prect.width());
|
|
|
|
float virt_width = gw;
|
|
|
|
float virt_height = virt_width * ratio;
|
|
|
|
painter.setWindow(0, 0, virt_width, virt_height);
|
|
|
|
painter.setViewport(0, 0, prect.width(), prect.height());
|
2013-09-14 23:32:14 +00:00
|
|
|
painter.setViewTransformEnabled(true);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QFont report_font = *defaultfont;
|
|
|
|
QFont medium_font = *mediumfont;
|
|
|
|
QFont title_font = *bigfont;
|
|
|
|
float normal_height = 30; //fm2.ascent();
|
2013-09-14 23:32:14 +00:00
|
|
|
report_font.setPixelSize(normal_height);
|
|
|
|
medium_font.setPixelSize(40);
|
|
|
|
title_font.setPixelSize(90);
|
|
|
|
painter.setFont(report_font);
|
|
|
|
|
|
|
|
//QFontMetrics fm2(*defaultfont);
|
|
|
|
|
|
|
|
qDebug() << "Printer Resolution is" << virt_width << "x" << virt_height;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
const int graphs_per_page = 6;
|
2014-10-05 03:28:59 +00:00
|
|
|
float full_graph_height = (virt_height - (normal_height * graphs_per_page)) / float(graphs_per_page);
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QString title = QObject::tr("%1 Report").arg(name);
|
2013-09-14 23:32:14 +00:00
|
|
|
painter.setFont(title_font);
|
2014-04-17 05:52:25 +00:00
|
|
|
int top = 0;
|
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), title,
|
|
|
|
QTextOption(Qt::AlignHCenter | Qt::AlignTop));
|
|
|
|
painter.drawText(bounds, title, QTextOption(Qt::AlignHCenter | Qt::AlignTop));
|
2015-07-30 22:36:52 +00:00
|
|
|
top += bounds.height() + 90 / 2.0;
|
2013-09-14 23:32:14 +00:00
|
|
|
painter.setFont(report_font);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
int maxy = 0;
|
|
|
|
|
2020-06-05 04:25:23 +00:00
|
|
|
if (AppSetting->showPersonalData() && !p_profile->user->firstName().isEmpty()) {
|
2014-10-05 03:28:59 +00:00
|
|
|
QString userinfo = STR_TR_Name + QString(":\t %1, %2\n").
|
|
|
|
arg(p_profile->user->lastName()).
|
|
|
|
arg(p_profile->user->firstName());
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-10-05 03:28:59 +00:00
|
|
|
userinfo += STR_TR_DOB + QString(":\t%1\n").
|
|
|
|
arg(p_profile->user->DOB().toString(Qt::SystemLocaleShortDate));
|
|
|
|
|
|
|
|
if (!p_profile->doctor->patientID().isEmpty()) {
|
|
|
|
userinfo += STR_TR_PatientID + QString(":\t%1\n").arg(p_profile->doctor->patientID());
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
userinfo += STR_TR_Phone + QString(":\t%1\n").arg(p_profile->user->phone());
|
|
|
|
userinfo += STR_TR_Email + QString(":\t%1\n").arg(p_profile->user->email());
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-10-05 03:28:59 +00:00
|
|
|
if (!p_profile->user->address().isEmpty()) {
|
|
|
|
userinfo += "\n" + STR_TR_Address + QString(":\n%1").arg(p_profile->user->address());
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), userinfo,
|
|
|
|
QTextOption(Qt::AlignLeft | Qt::AlignTop));
|
|
|
|
painter.drawText(bounds, userinfo, QTextOption(Qt::AlignLeft | Qt::AlignTop));
|
|
|
|
|
2014-10-05 03:28:59 +00:00
|
|
|
if (bounds.height() > maxy) {
|
|
|
|
maxy = bounds.height();
|
|
|
|
}
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
Machine *cpap = nullptr, *oxi = nullptr;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
int graph_slots = 0;
|
2014-08-20 17:17:13 +00:00
|
|
|
Day * day = p_profile->GetGoodDay(mainwin->getDaily()->getDate(), MT_CPAP);
|
2014-10-05 03:28:59 +00:00
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
if (day) cpap = day->machine(MT_CPAP);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (name == STR_TR_Daily) {
|
2014-08-20 17:17:13 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QString cpapinfo = date.toString(Qt::SystemLocaleLongDate) + "\n\n";
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (cpap) {
|
2014-08-20 17:17:13 +00:00
|
|
|
time_t f = day->first(MT_CPAP) / 1000L;
|
|
|
|
time_t l = day->last(MT_CPAP) / 1000L;
|
|
|
|
int tt = qint64(day->total_time(MT_CPAP)) / 1000L;
|
2014-04-17 05:52:25 +00:00
|
|
|
int h = tt / 3600;
|
|
|
|
int m = (tt / 60) % 60;
|
|
|
|
int s = tt % 60;
|
|
|
|
|
2014-10-05 03:28:59 +00:00
|
|
|
cpapinfo += STR_TR_MaskTime + QObject::tr(": %1 hours, %2 minutes, %3 seconds\n").arg(h).arg(m).arg(s);
|
2014-04-17 05:52:25 +00:00
|
|
|
cpapinfo += STR_TR_BedTime + ": " + QDateTime::fromTime_t(f).time().toString("HH:mm:ss") + " ";
|
|
|
|
cpapinfo += STR_TR_WakeUp + ": " + QDateTime::fromTime_t(l).time().toString("HH:mm:ss") + "\n\n";
|
|
|
|
cpapinfo += STR_TR_Machine + ": ";
|
|
|
|
|
|
|
|
|
2019-08-18 21:30:52 +00:00
|
|
|
cpapinfo += cpap->brand() + " " + cpap->model();
|
|
|
|
QString mn = cpap->modelnumber();
|
|
|
|
if (!mn.isEmpty()) {
|
|
|
|
cpapinfo += " (" + mn + ")";
|
|
|
|
}
|
|
|
|
cpapinfo += "\n";
|
2014-10-05 03:28:59 +00:00
|
|
|
|
2019-09-02 05:14:36 +00:00
|
|
|
cpapinfo += STR_TR_Mode + ": " + day->getCPAPModeStr() + "\n";
|
2014-10-05 03:28:59 +00:00
|
|
|
cpapinfo += day->getPressureSettings() + "\n";
|
|
|
|
QString pressurerelief = day->getPressureRelief();
|
|
|
|
if (pressurerelief.compare(STR_TR_None)) {
|
|
|
|
cpapinfo += /*QObject::tr("Pressure Relief")+": "+ */day->getPressureRelief() + "\n";
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2021-07-25 04:12:15 +00:00
|
|
|
float ahi = day->count(AllAhiChannels);
|
2014-08-20 17:17:13 +00:00
|
|
|
|
|
|
|
if (p_profile->general->calculateRDI()) { ahi += day->count(CPAP_RERA); }
|
|
|
|
|
|
|
|
float hours = day->hours(MT_CPAP);
|
|
|
|
ahi /= hours;
|
|
|
|
float csr = (100.0 / hours) * (day->sum(CPAP_CSR) / 3600.0);
|
2016-04-26 06:11:39 +00:00
|
|
|
//float pb = (100.0 / hours) * (day->sum(CPAP_PB) / 3600.0);
|
2014-08-20 17:17:13 +00:00
|
|
|
float uai = day->count(CPAP_Apnea) / hours;
|
|
|
|
float oai = day->count(CPAP_Obstructive) / hours;
|
2021-07-25 04:12:15 +00:00
|
|
|
float ai = day->count(CPAP_AllApnea) / hours;
|
2014-08-20 17:17:13 +00:00
|
|
|
float hi = (day->count(CPAP_ExP) + day->count(CPAP_Hypopnea)) / hours;
|
|
|
|
float cai = day->count(CPAP_ClearAirway) / hours;
|
|
|
|
float rei = day->count(CPAP_RERA) / hours;
|
|
|
|
float vsi = day->count(CPAP_VSnore) / hours;
|
2020-05-07 21:36:31 +00:00
|
|
|
if (day->channelHasData(CPAP_VSnore2)) { // PRS1 puts its 2-minute VS count in a different channel rather than reporting each incident.
|
|
|
|
vsi = day->sum(CPAP_VSnore2) / hours;
|
|
|
|
}
|
2014-08-20 17:17:13 +00:00
|
|
|
float fli = day->count(CPAP_FlowLimit) / hours;
|
|
|
|
// float sai = day->count(CPAP_SensAwake) / hours;
|
|
|
|
float nri = day->count(CPAP_NRI) / hours;
|
|
|
|
float lki = day->count(CPAP_LeakFlag) / hours;
|
|
|
|
float exp = day->count(CPAP_ExP) / hours;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
int piesize = (2048.0 / 8.0) * 1.3; // 1.5" in size
|
2013-09-14 23:32:14 +00:00
|
|
|
//float fscale=font_scale;
|
|
|
|
//if (!highres)
|
2014-04-17 05:52:25 +00:00
|
|
|
// fscale=1;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
QString stats;
|
|
|
|
painter.setFont(medium_font);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
if (p_profile->general->calculateRDI()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
stats = QObject::tr("RDI\t%1\n").arg(ahi, 0, 'f', 2);
|
|
|
|
} else {
|
|
|
|
stats = QObject::tr("AHI\t%1\n").arg(ahi, 0, 'f', 2);
|
|
|
|
}
|
|
|
|
|
2014-10-07 03:06:00 +00:00
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, 0, virt_width, 0), stats, QTextOption(Qt::AlignRight));
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawText(bounds, stats, QTextOption(Qt::AlignRight));
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
mainwin->getDaily()->eventBreakdownPie()->setShowTitle(false);
|
2014-04-17 05:52:25 +00:00
|
|
|
mainwin->getDaily()->eventBreakdownPie()->setMargins(0, 0, 0, 0);
|
2013-09-14 23:32:14 +00:00
|
|
|
QPixmap ebp;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (ahi > 0) {
|
|
|
|
ebp = mainwin->getDaily()->eventBreakdownPie()->renderPixmap(piesize, piesize, true);
|
2013-09-14 23:32:14 +00:00
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
ebp = QPixmap(":/icons/smileyface.png");
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (!ebp.isNull()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawPixmap(virt_width - piesize, bounds.height(), piesize, piesize, ebp);
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
mainwin->getDaily()->eventBreakdownPie()->setShowTitle(true);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
cpapinfo += "\n\n";
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
painter.setFont(report_font);
|
|
|
|
//bounds=painter.boundingRect(QRectF((virt_width/2)-(virt_width/6),top,virt_width/2,0),cpapinfo,QTextOption(Qt::AlignLeft));
|
2014-04-17 05:52:25 +00:00
|
|
|
bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), cpapinfo,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, cpapinfo, QTextOption(Qt::AlignHCenter));
|
|
|
|
|
|
|
|
int ttop = bounds.height();
|
|
|
|
|
|
|
|
stats = QObject::tr("AI=%1 HI=%2 CAI=%3 ").arg(oai, 0, 'f', 2).arg(hi, 0, 'f', 2).arg(cai, 0, 'f',
|
|
|
|
2);
|
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
if (cpap->loaderName() == STR_MACH_PRS1) {
|
2016-02-27 03:37:56 +00:00
|
|
|
|
|
|
|
// FIXME: PB / CSR are now separate flags
|
2014-05-08 04:46:23 +00:00
|
|
|
stats += QObject::tr("REI=%1 VSI=%2 FLI=%3 PB/CSR=%4%%")
|
2014-04-17 05:52:25 +00:00
|
|
|
.arg(rei, 0, 'f', 2).arg(vsi, 0, 'f', 2)
|
|
|
|
.arg(fli, 0, 'f', 2).arg(csr, 0, 'f', 2);
|
2014-08-20 17:17:13 +00:00
|
|
|
} else if (cpap->loaderName() == STR_MACH_ResMed) {
|
2014-04-17 05:52:25 +00:00
|
|
|
stats += QObject::tr("UAI=%1 ").arg(uai, 0, 'f', 2);
|
2014-08-20 17:17:13 +00:00
|
|
|
} else if (cpap->loaderName() == STR_MACH_Intellipap) {
|
2014-10-07 03:06:00 +00:00
|
|
|
stats += QObject::tr("NRI=%1 LKI=%2 EPI=%3")
|
|
|
|
.arg(nri, 0, 'f', 2).arg(lki, 0, 'f', 2).arg(exp, 0,'f', 2);
|
2021-07-25 04:12:15 +00:00
|
|
|
} else if (cpap->loaderName() == STR_MACH_SleepStyle) {
|
|
|
|
stats += QObject::tr("AI=%1 ").arg(ai, 0, 'f', 2);
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
bounds = painter.boundingRect(QRectF(0, top + ttop, virt_width, 0), stats,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, stats, QTextOption(Qt::AlignHCenter));
|
|
|
|
ttop += bounds.height();
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
if (journal) {
|
2014-04-17 05:52:25 +00:00
|
|
|
stats = "";
|
|
|
|
|
|
|
|
if (journal->settings.contains(Journal_Weight)) {
|
2014-10-07 03:06:00 +00:00
|
|
|
stats += STR_TR_Weight + QString(" %1 ").
|
|
|
|
arg(weightString(journal->settings[Journal_Weight].toDouble()));
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (journal->settings.contains(Journal_BMI)) {
|
2014-10-07 03:06:00 +00:00
|
|
|
stats += STR_TR_BMI + QString(" %1 ").
|
|
|
|
arg(journal->settings[Journal_BMI].toDouble(), 0, 'f', 2);
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (journal->settings.contains(Journal_ZombieMeter)) {
|
2014-10-07 03:06:00 +00:00
|
|
|
stats += STR_TR_Zombie + QString(" %1/10 ").
|
|
|
|
arg(journal->settings[Journal_ZombieMeter].toDouble(), 0, 'f', 0);
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
if (!stats.isEmpty()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
bounds = painter.boundingRect(QRectF(0, top + ttop, virt_width, 0), stats,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawText(bounds, stats, QTextOption(Qt::AlignHCenter));
|
|
|
|
ttop += bounds.height();
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
ttop += normal_height;
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (journal->settings.contains(Journal_Notes)) {
|
|
|
|
QTextDocument doc;
|
|
|
|
doc.setHtml(journal->settings[Journal_Notes].toString());
|
2014-04-17 05:52:25 +00:00
|
|
|
stats = doc.toPlainText();
|
2013-09-14 23:32:14 +00:00
|
|
|
//doc.drawContents(&painter); // doesn't work as intended..
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
bounds = painter.boundingRect(QRectF(0, top + ttop, virt_width, 0), stats,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, stats, QTextOption(Qt::AlignHCenter));
|
|
|
|
bounds.setLeft(virt_width / 4);
|
|
|
|
bounds.setRight(virt_width - (virt_width / 4));
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
QPen pen(Qt::black);
|
|
|
|
pen.setWidth(4);
|
|
|
|
painter.setPen(pen);
|
|
|
|
painter.drawRect(bounds);
|
2014-04-17 05:52:25 +00:00
|
|
|
ttop += bounds.height() + normal_height;
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
if (ttop > maxy) { maxy = ttop; }
|
2013-09-14 23:32:14 +00:00
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
bounds = painter.boundingRect(QRectF(0, top + maxy, virt_width, 0), cpapinfo,
|
|
|
|
QTextOption(Qt::AlignCenter));
|
|
|
|
painter.drawText(bounds, cpapinfo, QTextOption(Qt::AlignCenter));
|
|
|
|
|
|
|
|
if (maxy + bounds.height() > maxy) { maxy = maxy + bounds.height(); }
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
} else if (name == STR_TR_Overview) {
|
|
|
|
QDateTime first = QDateTime::fromTime_t((*gv)[0]->min_x / 1000L);
|
|
|
|
QDateTime last = QDateTime::fromTime_t((*gv)[0]->max_x / 1000L);
|
2014-10-07 03:06:00 +00:00
|
|
|
QString ovinfo = QObject::tr("Reporting from %1 to %2").
|
|
|
|
arg(first.date().toString(Qt::SystemLocaleShortDate)).
|
|
|
|
arg(last.date().toString(Qt::SystemLocaleShortDate));
|
2014-04-17 05:52:25 +00:00
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), ovinfo,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, ovinfo, QTextOption(Qt::AlignHCenter));
|
|
|
|
|
|
|
|
if (bounds.height() > maxy) { maxy = bounds.height(); }
|
2014-08-28 13:01:16 +00:00
|
|
|
} /*else if (name == STR_TR_Oximetry) {
|
2014-04-17 05:52:25 +00:00
|
|
|
QString ovinfo = QObject::tr("Reporting data goes here");
|
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), ovinfo,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, ovinfo, QTextOption(Qt::AlignHCenter));
|
|
|
|
|
|
|
|
if (bounds.height() > maxy) { maxy = bounds.height(); }
|
2014-08-28 13:01:16 +00:00
|
|
|
}*/
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
top += maxy;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
graph_slots = graphs_per_page - ((virt_height - top) / (full_graph_height + normal_height));
|
|
|
|
|
|
|
|
bool first = true;
|
2013-09-14 23:32:14 +00:00
|
|
|
QStringList labels;
|
|
|
|
QVector<gGraph *> graphs;
|
2014-04-17 05:52:25 +00:00
|
|
|
QVector<qint64> start, end;
|
|
|
|
qint64 savest, saveet;
|
2014-08-28 13:01:16 +00:00
|
|
|
|
2014-08-28 15:11:34 +00:00
|
|
|
gGraph *g;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
gv->GetXBounds(savest, saveet);
|
2014-08-28 15:11:34 +00:00
|
|
|
|
|
|
|
for (int i=0;i < gv->size(); i++) {
|
|
|
|
g = (*gv)[i];
|
|
|
|
|
|
|
|
if (g->isEmpty() || !g->visible()) continue;
|
|
|
|
if (g->group() == 0) {
|
|
|
|
savest = g->min_x;
|
|
|
|
saveet = g->max_x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
qint64 st = savest, et = saveet;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
bool lineCursorMode = AppSetting->lineCursorMode();
|
|
|
|
AppSetting->setLineCursorMode(false);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
if (name == STR_TR_Daily) {
|
2013-09-14 23:32:14 +00:00
|
|
|
if (!print_bookmarks) {
|
2014-04-17 05:52:25 +00:00
|
|
|
for (int i = 0; i < gv->size(); i++) {
|
|
|
|
g = (*gv)[i];
|
|
|
|
|
|
|
|
if (g->isEmpty()) { continue; }
|
|
|
|
|
|
|
|
if (!g->visible()) { continue; }
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2020-07-18 17:17:53 +00:00
|
|
|
QString label = "";
|
2014-08-28 15:11:34 +00:00
|
|
|
if (!g->isSnapshot() && (g->name() == schema::channel[CPAP_FlowRate].code())) {
|
2020-07-18 17:17:53 +00:00
|
|
|
st = day->first();
|
|
|
|
et = day->last();
|
|
|
|
// If the current selection is more than a minute smaller than the whole night:
|
|
|
|
if ((et - st) - (g->max_x - g->min_x) > 60000) {
|
|
|
|
// First draw the flow waveform in the context of the entire day (matching the flags chart)
|
2013-09-14 23:32:14 +00:00
|
|
|
start.push_back(st);
|
|
|
|
end.push_back(et);
|
|
|
|
graphs.push_back(g);
|
|
|
|
labels.push_back(QObject::tr("Entire Day's Flow Waveform"));
|
2020-07-18 17:17:53 +00:00
|
|
|
// And add a label to the selected flow graph below
|
|
|
|
label = QObject::tr("Current Selection");
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-18 17:17:53 +00:00
|
|
|
start.push_back(g->min_x);
|
|
|
|
end.push_back(g->max_x);
|
|
|
|
graphs.push_back(g);
|
|
|
|
labels.push_back(label);
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
const QString EntireDay = QObject::tr("Entire Day");
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (journal) {
|
|
|
|
if (journal->settings.contains(Bookmark_Start)) {
|
2014-04-17 05:52:25 +00:00
|
|
|
QVariantList st1 = journal->settings[Bookmark_Start].toList();
|
|
|
|
QVariantList et1 = journal->settings[Bookmark_End].toList();
|
|
|
|
QStringList notes = journal->settings[Bookmark_Notes].toStringList();
|
2014-07-16 17:12:52 +00:00
|
|
|
gGraph *flow = (*gv)[schema::channel[CPAP_FlowRate].code()],
|
|
|
|
*spo2 = (*gv)[schema::channel[OXI_SPO2].code()],
|
|
|
|
*pulse = (*gv)[schema::channel[OXI_Pulse].code()];
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
if (cpap && flow && !flow->isEmpty() && flow->visible()) {
|
|
|
|
labels.push_back(EntireDay);
|
2014-08-20 17:17:13 +00:00
|
|
|
start.push_back(day->first(MT_CPAP));
|
|
|
|
end.push_back(day->last(MT_CPAP));
|
2013-09-14 23:32:14 +00:00
|
|
|
graphs.push_back(flow);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (oxi && spo2 && !spo2->isEmpty() && spo2->visible()) {
|
|
|
|
labels.push_back(EntireDay);
|
2014-08-20 17:17:13 +00:00
|
|
|
start.push_back(day->first(MT_OXIMETER));
|
|
|
|
end.push_back(day->last(MT_OXIMETER));
|
2013-09-14 23:32:14 +00:00
|
|
|
graphs.push_back(spo2);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (oxi && pulse && !pulse->isEmpty() && pulse->visible()) {
|
|
|
|
labels.push_back(EntireDay);
|
2014-08-20 17:17:13 +00:00
|
|
|
start.push_back(day->first(MT_OXIMETER));
|
|
|
|
end.push_back(day->last(MT_OXIMETER));
|
2013-09-14 23:32:14 +00:00
|
|
|
graphs.push_back(pulse);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < notes.size(); i++) {
|
2013-09-14 23:32:14 +00:00
|
|
|
if (flow && !flow->isEmpty() && flow->visible()) {
|
|
|
|
labels.push_back(notes.at(i));
|
|
|
|
start.push_back(st1.at(i).toLongLong());
|
|
|
|
end.push_back(et1.at(i).toLongLong());
|
|
|
|
graphs.push_back(flow);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (spo2 && !spo2->isEmpty() && spo2->visible()) {
|
|
|
|
labels.push_back(notes.at(i));
|
|
|
|
start.push_back(st1.at(i).toLongLong());
|
|
|
|
end.push_back(et1.at(i).toLongLong());
|
|
|
|
graphs.push_back(spo2);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (pulse && !pulse->isEmpty() && pulse->visible()) {
|
|
|
|
labels.push_back(notes.at(i));
|
|
|
|
start.push_back(st1.at(i).toLongLong());
|
|
|
|
end.push_back(et1.at(i).toLongLong());
|
|
|
|
graphs.push_back(pulse);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < gv->size(); i++) {
|
|
|
|
gGraph *g = (*gv)[i];
|
|
|
|
|
|
|
|
if (g->isEmpty()) { continue; }
|
|
|
|
|
|
|
|
if (!g->visible()) { continue; }
|
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
if ((g->name() != schema::channel[CPAP_FlowRate].code()) && (g->name() != schema::channel[OXI_SPO2].code())
|
|
|
|
&& (g->name() != schema::channel[OXI_Pulse].code())) {
|
2013-09-14 23:32:14 +00:00
|
|
|
start.push_back(st);
|
|
|
|
end.push_back(et);
|
|
|
|
graphs.push_back(g);
|
|
|
|
labels.push_back("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-04-17 05:52:25 +00:00
|
|
|
for (int i = 0; i < gv->size(); i++) {
|
|
|
|
gGraph *g = (*gv)[i];
|
|
|
|
|
|
|
|
if (g->isEmpty()) { continue; }
|
|
|
|
|
|
|
|
if (!g->visible()) { continue; }
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
start.push_back(st);
|
|
|
|
end.push_back(et);
|
|
|
|
graphs.push_back(g);
|
|
|
|
labels.push_back(""); // date range?
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
int pages = ceil(float(graphs.size() + graph_slots) / float(graphs_per_page));
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2018-06-06 00:48:31 +00:00
|
|
|
progress.setProgressMax(graphs.size());
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
int page = 1;
|
|
|
|
int gcnt = 0;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
for (int i = 0; i < graphs.size(); i++) {
|
|
|
|
|
|
|
|
if ((top + full_graph_height + normal_height) > virt_height) {
|
|
|
|
top = 0;
|
|
|
|
gcnt = 0;
|
|
|
|
first = true;
|
|
|
|
|
|
|
|
if (page > pages) {
|
2013-09-14 23:32:14 +00:00
|
|
|
break;
|
2014-04-17 05:52:25 +00:00
|
|
|
}
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
if (!printer->newPage()) {
|
|
|
|
qWarning("failed in flushing page to disk, disk full?");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
if (first) {
|
2019-09-07 05:14:32 +00:00
|
|
|
QDateTime timestamp = QDateTime::currentDateTime();
|
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
|
|
|
QString footer = QObject::tr("%1 %2 %3").arg(timestamp.toString(MedDateFormat+" hh:mm"))
|
|
|
|
.arg(STR_TR_OSCAR)
|
|
|
|
.arg(getVersion());
|
2019-09-07 05:14:32 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
|
|
|
painter.drawText(bounds, footer, QTextOption(Qt::AlignHCenter));
|
|
|
|
|
|
|
|
QString pagestr = QObject::tr("Page %1 of %2").arg(page).arg(pages);
|
|
|
|
QRectF pagebnds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), pagestr,
|
|
|
|
QTextOption(Qt::AlignRight));
|
|
|
|
painter.drawText(pagebnds, pagestr, QTextOption(Qt::AlignRight));
|
|
|
|
first = false;
|
2013-09-14 23:32:14 +00:00
|
|
|
page++;
|
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
gGraph *g = graphs[i];
|
2014-08-28 13:01:16 +00:00
|
|
|
if (!g->isSnapshot()) {
|
|
|
|
g->SetXBounds(start[i], end[i]);
|
|
|
|
}
|
2013-09-14 23:32:14 +00:00
|
|
|
g->deselect();
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QString label = labels[i];
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
if (!label.isEmpty()) {
|
|
|
|
//label+=":";
|
2014-04-17 05:52:25 +00:00
|
|
|
top += normal_height / 3;
|
|
|
|
QRectF bounds = painter.boundingRect(QRectF(0, top, virt_width, 0), label,
|
|
|
|
QTextOption(Qt::AlignHCenter));
|
2013-09-14 23:32:14 +00:00
|
|
|
//QRectF pagebnds=QRectF(0,top,virt_width,normal_height);
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawText(bounds, label, QTextOption(Qt::AlignHCenter));
|
|
|
|
top += bounds.height();
|
|
|
|
} else { top += normal_height / 2; }
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
AppSetting->setAntiAliasing(force_antialiasing);
|
2014-04-17 05:52:25 +00:00
|
|
|
int tmb = g->m_marginbottom;
|
|
|
|
g->m_marginbottom = 0;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
//painter.beginNativePainting();
|
|
|
|
//g->showTitle(false);
|
2014-04-17 05:52:25 +00:00
|
|
|
int hhh = full_graph_height - normal_height;
|
|
|
|
QPixmap pm2 = g->renderPixmap(virt_width, hhh, 1);
|
|
|
|
QImage pm = pm2.toImage(); //fscale);
|
2013-09-14 23:32:14 +00:00
|
|
|
pm2.detach();
|
|
|
|
//g->showTitle(true);
|
|
|
|
//painter.endNativePainting();
|
2014-04-17 05:52:25 +00:00
|
|
|
g->m_marginbottom = tmb;
|
2018-04-22 12:06:48 +00:00
|
|
|
AppSetting->setAntiAliasing(aa_setting);
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!pm.isNull()) {
|
2014-04-17 05:52:25 +00:00
|
|
|
painter.drawImage(QRect(0, top, pm.width(), pm.height()), pm);
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
//painter.drawImage(0,top,virt_width,full_graph_height-normal_height,pm);
|
|
|
|
}
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
top += full_graph_height;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
gcnt++;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2018-06-06 00:48:31 +00:00
|
|
|
progress.setProgressValue(i);
|
|
|
|
QApplication::processEvents();
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
gv->SetXBounds(savest, saveet);
|
2013-09-14 23:32:14 +00:00
|
|
|
painter.end();
|
2018-06-06 00:48:31 +00:00
|
|
|
progress.close();
|
2013-09-14 23:32:14 +00:00
|
|
|
delete printer;
|
2018-04-22 12:06:48 +00:00
|
|
|
AppSetting->setLineCursorMode(lineCursorMode);
|
2013-09-14 23:32:14 +00:00
|
|
|
}
|
|
|
|
|