From a1389ba68a5f917841f49ebc562c973c55c7be1a Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Fri, 6 Sep 2019 22:14:32 -0700 Subject: [PATCH] Include date and time at bottom of report pages --- oscar/reports.cpp | 5 ++++- oscar/statistics.cpp | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/oscar/reports.cpp b/oscar/reports.cpp index 9f69c466..98d12eac 100644 --- a/oscar/reports.cpp +++ b/oscar/reports.cpp @@ -556,7 +556,10 @@ void Report::PrintReport(gGraphView *gv, QString name, QDate date) } if (first) { - QString footer = QObject::tr("OSCAR v%1").arg(VersionString); + QDateTime timestamp = QDateTime::currentDateTime(); + QString footer = QObject::tr("%1 OSCAR v%2").arg(timestamp.toString(MedDateFormat+" hh:mm")) + .arg(ReleaseStatus == "r" ? ShortVersionString : VersionString+" (" + gitRevision() + ")"); + QRectF bounds = painter.boundingRect(QRectF(0, virt_height, virt_width, normal_height), footer, QTextOption(Qt::AlignHCenter)); diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 08d1b14f..2bcf02cd 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -706,8 +706,11 @@ QString Statistics::generateFooter(bool showinfo) if (showinfo) { html += "
"; - html += tr("This report was generated by OSCAR v%1").arg(ShortVersionString) + "
" - +tr("OSCAR is free open-source CPAP report software"); + QDateTime timestamp = QDateTime::currentDateTime(); + html += tr("This report was generated on %1 by OSCAR v%2").arg(timestamp.toString(MedDateFormat + " hh:mm")) + .arg(ReleaseStatus == "r" ? ShortVersionString : VersionString + " (" + gitRevision() + ")") + + "
" + + tr("OSCAR is free open-source CPAP report software"); html += "
"; }