mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Added a new monthly statistics mode, and a switch to toggle
This commit is contained in:
parent
81959b44b1
commit
54452ab79a
@ -259,6 +259,7 @@ const QString STR_US_PrefCalcPercentile = "PrefCalcPercentile";
|
|||||||
const QString STR_US_PrefCalcMax = "PrefCalcMax";
|
const QString STR_US_PrefCalcMax = "PrefCalcMax";
|
||||||
const QString STR_US_TooltipTimeout = "TooltipTimeout";
|
const QString STR_US_TooltipTimeout = "TooltipTimeout";
|
||||||
const QString STR_US_ScrollDampening = "ScrollDampening";
|
const QString STR_US_ScrollDampening = "ScrollDampening";
|
||||||
|
const QString STR_US_StatReportMode = "StatReportMode";
|
||||||
|
|
||||||
// Parent class for subclasses that manipulate the profile.
|
// Parent class for subclasses that manipulate the profile.
|
||||||
class ProfileSettings
|
class ProfileSettings
|
||||||
@ -640,6 +641,7 @@ class UserSettings : public ProfileSettings
|
|||||||
initPref(STR_US_PrefCalcMax, (int)0);
|
initPref(STR_US_PrefCalcMax, (int)0);
|
||||||
initPref(STR_US_TooltipTimeout, (int)2500);
|
initPref(STR_US_TooltipTimeout, (int)2500);
|
||||||
initPref(STR_US_ScrollDampening, (int)50);
|
initPref(STR_US_ScrollDampening, (int)50);
|
||||||
|
initPref(STR_US_StatReportMode, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
UnitSystem unitSystem() const { return (UnitSystem)getPref(STR_US_UnitSystem).toInt(); }
|
UnitSystem unitSystem() const { return (UnitSystem)getPref(STR_US_UnitSystem).toInt(); }
|
||||||
@ -655,7 +657,7 @@ class UserSettings : public ProfileSettings
|
|||||||
int prefCalcMax() const { return getPref(STR_US_PrefCalcMax).toInt(); }
|
int prefCalcMax() const { return getPref(STR_US_PrefCalcMax).toInt(); }
|
||||||
int tooltipTimeout() const { return getPref(STR_US_TooltipTimeout).toInt(); }
|
int tooltipTimeout() const { return getPref(STR_US_TooltipTimeout).toInt(); }
|
||||||
int scrollDampening() const { return getPref(STR_US_ScrollDampening).toInt(); }
|
int scrollDampening() const { return getPref(STR_US_ScrollDampening).toInt(); }
|
||||||
|
int statReportMode() const { return getPref(STR_US_StatReportMode).toInt(); }
|
||||||
|
|
||||||
void setUnitSystem(UnitSystem us) { setPref(STR_US_UnitSystem, (int)us); }
|
void setUnitSystem(UnitSystem us) { setPref(STR_US_UnitSystem, (int)us); }
|
||||||
void setEventWindowSize(double size) { setPref(STR_US_EventWindowSize, size); }
|
void setEventWindowSize(double size) { setPref(STR_US_EventWindowSize, size); }
|
||||||
@ -670,6 +672,7 @@ class UserSettings : public ProfileSettings
|
|||||||
void setPrefCalcMax(int i) { setPref(STR_US_PrefCalcMax, i); }
|
void setPrefCalcMax(int i) { setPref(STR_US_PrefCalcMax, i); }
|
||||||
void setTooltipTimeout(int i) { setPref(STR_US_TooltipTimeout, i); }
|
void setTooltipTimeout(int i) { setPref(STR_US_TooltipTimeout, i); }
|
||||||
void setScrollDampening(int i) { setPref(STR_US_ScrollDampening, i); }
|
void setScrollDampening(int i) { setPref(STR_US_ScrollDampening, i); }
|
||||||
|
void setStatReportMode(int i) { setPref(STR_US_StatReportMode, i); }
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace Profiles {
|
namespace Profiles {
|
||||||
|
@ -159,6 +159,16 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
ui->actionDebug->setChecked(PROFILE.general->showDebug());
|
ui->actionDebug->setChecked(PROFILE.general->showDebug());
|
||||||
|
|
||||||
|
switch(PROFILE.general->statReportMode()) {
|
||||||
|
case 0:
|
||||||
|
ui->reportModeStandard->setChecked(true);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
ui->reportModeMonthly->setChecked(true);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
PROFILE.general->setStatReportMode(0);
|
||||||
|
}
|
||||||
if (!PROFILE.general->showDebug()) {
|
if (!PROFILE.general->showDebug()) {
|
||||||
ui->logText->hide();
|
ui->logText->hide();
|
||||||
}
|
}
|
||||||
@ -1961,3 +1971,19 @@ void MainWindow::on_statisticsView_linkClicked(const QUrl &arg1)
|
|||||||
//qDebug() << arg1;
|
//qDebug() << arg1;
|
||||||
on_recordsBox_linkClicked(arg1);
|
on_recordsBox_linkClicked(arg1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_reportModeMonthly_clicked()
|
||||||
|
{
|
||||||
|
if (PROFILE.general->statReportMode() != 1) {
|
||||||
|
PROFILE.general->setStatReportMode(1);
|
||||||
|
GenerateStatistics();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_reportModeStandard_clicked()
|
||||||
|
{
|
||||||
|
if (PROFILE.general->statReportMode() != 0) {
|
||||||
|
PROFILE.general->setStatReportMode(0);
|
||||||
|
GenerateStatistics();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -307,6 +307,10 @@ class MainWindow : public QMainWindow
|
|||||||
|
|
||||||
void on_statisticsView_linkClicked(const QUrl &arg1);
|
void on_statisticsView_linkClicked(const QUrl &arg1);
|
||||||
|
|
||||||
|
void on_reportModeMonthly_clicked();
|
||||||
|
|
||||||
|
void on_reportModeStandard_clicked();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString getWelcomeHTML();
|
QString getWelcomeHTML();
|
||||||
void FreeSessions();
|
void FreeSessions();
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>863</width>
|
<width>975</width>
|
||||||
<height>637</height>
|
<height>735</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -155,6 +155,76 @@ color: yellow;</string>
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame_3">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>8</number>
|
||||||
|
</property>
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>8</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="reportModeLabel">
|
||||||
|
<property name="text">
|
||||||
|
<string>Report Mode</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="reportModeStandard">
|
||||||
|
<property name="text">
|
||||||
|
<string>Standard</string>
|
||||||
|
</property>
|
||||||
|
<property name="checked">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QRadioButton" name="reportModeMonthly">
|
||||||
|
<property name="text">
|
||||||
|
<string>Monthly</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="helpTab">
|
<widget class="QWidget" name="helpTab">
|
||||||
@ -505,7 +575,7 @@ QToolBox::tab:selected {
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>180</width>
|
<width>180</width>
|
||||||
<height>516</height>
|
<height>596</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="palette">
|
<property name="palette">
|
||||||
@ -919,7 +989,7 @@ border: 2px solid #56789a; border-radius: 30px;
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>180</width>
|
<width>180</width>
|
||||||
<height>498</height>
|
<height>596</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="palette">
|
<property name="palette">
|
||||||
@ -2067,7 +2137,7 @@ border-radius: 10px;
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>180</width>
|
<width>180</width>
|
||||||
<height>498</height>
|
<height>596</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="mouseTracking">
|
<property name="mouseTracking">
|
||||||
@ -2128,7 +2198,7 @@ border-radius: 10px;
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>863</width>
|
<width>975</width>
|
||||||
<height>22</height>
|
<height>22</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
@ -46,6 +46,7 @@ Statistics::Statistics(QObject *parent) :
|
|||||||
{ "ClearAirway", SC_CPH, MT_CPAP },
|
{ "ClearAirway", SC_CPH, MT_CPAP },
|
||||||
{ "FlowLimit", SC_CPH, MT_CPAP },
|
{ "FlowLimit", SC_CPH, MT_CPAP },
|
||||||
{ "RERA", SC_CPH, MT_CPAP },
|
{ "RERA", SC_CPH, MT_CPAP },
|
||||||
|
{ "CSR", SC_SPH, MT_CPAP },
|
||||||
|
|
||||||
{ tr("Leak Statistics"), SC_SUBHEADING, MT_CPAP },
|
{ tr("Leak Statistics"), SC_SUBHEADING, MT_CPAP },
|
||||||
{ "Leak", SC_WAVG, MT_CPAP },
|
{ "Leak", SC_WAVG, MT_CPAP },
|
||||||
@ -452,6 +453,24 @@ bool operator <(const UsageData &c1, const UsageData &c2)
|
|||||||
//return c1.value < c2.value;
|
//return c1.value < c2.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct Period {
|
||||||
|
Period() {
|
||||||
|
}
|
||||||
|
Period(QDate start, QDate end, QString header) {
|
||||||
|
this->start = start;
|
||||||
|
this->end = end;
|
||||||
|
this->header = header;
|
||||||
|
}
|
||||||
|
Period(const Period & copy) {
|
||||||
|
start=copy.start;
|
||||||
|
end=copy.end;
|
||||||
|
header=copy.header;
|
||||||
|
}
|
||||||
|
QDate start;
|
||||||
|
QDate end;
|
||||||
|
QString header;
|
||||||
|
};
|
||||||
|
|
||||||
QString Statistics::GenerateHTML()
|
QString Statistics::GenerateHTML()
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -517,8 +536,14 @@ QString Statistics::GenerateHTML()
|
|||||||
html += "<div align=center>";
|
html += "<div align=center>";
|
||||||
html += QString("<table cellpadding=2 cellspacing=0 border=1 width=90%>");
|
html += QString("<table cellpadding=2 cellspacing=0 border=1 width=90%>");
|
||||||
|
|
||||||
|
int number_periods = 0;
|
||||||
|
if (p_profile->general->statReportMode() == 1) {
|
||||||
|
number_periods = 12;
|
||||||
|
}
|
||||||
|
|
||||||
QDate last = lastcpap, first = lastcpap, week = lastcpap, month = lastcpap, sixmonth = lastcpap, year = lastcpap;
|
QDate last = lastcpap, first = lastcpap;
|
||||||
|
|
||||||
|
QList<Period> periods;
|
||||||
|
|
||||||
bool skipsection = false;;
|
bool skipsection = false;;
|
||||||
for (auto i = rows.begin(); i != rows.end(); ++i) {
|
for (auto i = rows.begin(); i != rows.end(); ++i) {
|
||||||
@ -529,20 +554,38 @@ QString Statistics::GenerateHTML()
|
|||||||
last = p_profile->LastGoodDay(row.type);
|
last = p_profile->LastGoodDay(row.type);
|
||||||
first = p_profile->FirstGoodDay(row.type);
|
first = p_profile->FirstGoodDay(row.type);
|
||||||
|
|
||||||
week = last.addDays(-6);
|
periods.clear();
|
||||||
month = last.addDays(-29);
|
if (number_periods == 0) {
|
||||||
sixmonth = last.addMonths(-6);
|
periods.push_back(Period(last,last,tr("Most Recent")));
|
||||||
year = last.addMonths(-12);
|
periods.push_back(Period(qMax(last.addDays(-6), first), last, tr("Last Week")));
|
||||||
|
periods.push_back(Period(qMax(last.addDays(-29),first), last, tr("Last 30 Days")));
|
||||||
|
periods.push_back(Period(qMax(last.addMonths(-6), first), last, tr("Last 6 Months")));
|
||||||
|
periods.push_back(Period(qMax(last.addMonths(-12), first), last, tr("Last Year")));
|
||||||
|
} else {
|
||||||
|
QDate l=last,s=last;
|
||||||
|
|
||||||
if (week < first) { week = first; }
|
periods.push_back(Period(last,last,tr("Last Session")));
|
||||||
if (month < first) { month = first; }
|
|
||||||
if (sixmonth < first) { sixmonth = first; }
|
bool done=false;
|
||||||
if (year < first) { year = first; }
|
for (int j=0; j < number_periods; j++) {
|
||||||
|
s=QDate(l.year(), l.month(), 1);
|
||||||
|
if (s < first) {
|
||||||
|
done = true;
|
||||||
|
s = first;
|
||||||
|
}
|
||||||
|
if (p_profile->countDays(row.type, s, l)>0) {
|
||||||
|
periods.push_back(Period(s, l, s.toString("MMMM")));
|
||||||
|
}
|
||||||
|
l= s.addDays(-1);
|
||||||
|
if (done || (l < first)) break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int days = PROFILE.countDays(row.type, first, last);
|
int days = PROFILE.countDays(row.type, first, last);
|
||||||
skipsection = (days == 0);
|
skipsection = (days == 0);
|
||||||
if (days > 0) {
|
if (days > 0) {
|
||||||
html+=QString("<tr bgcolor='"+heading_color+"'><td colspan=6 align=center><font size=+3>%1</font></td></tr>\n").arg(row.src);
|
html+=QString("<tr bgcolor='%1'><td colspan=%2 align=center><font size=+3>%3</font></td></tr>\n").
|
||||||
|
arg(heading_color).arg(periods.size()+1).arg(row.src);
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -555,9 +598,11 @@ QString Statistics::GenerateHTML()
|
|||||||
} else if ((row.calc == SC_HOURS) || (row.calc == SC_COMPLIANCE)) {
|
} else if ((row.calc == SC_HOURS) || (row.calc == SC_COMPLIANCE)) {
|
||||||
name = row.src;
|
name = row.src;
|
||||||
} else if (row.calc == SC_COLUMNHEADERS) {
|
} else if (row.calc == SC_COLUMNHEADERS) {
|
||||||
html += QString("<tr><td><b>%1</b></td><td><b>%2</b></td><td><b>%3</b></td><td><b>%4</b></td><td><b>%5</b></td><td><b>%6</td></tr>")
|
html += QString("<tr><td><b>%1</b></td>").arg(tr("Details"));
|
||||||
.arg(tr("Details")).arg(tr("Most Recent")).arg(tr("Last 7 Days")).arg(tr("Last 30 Days")).arg(
|
for (int j=0; j < periods.size(); j++) {
|
||||||
tr("Last 6 months")).arg(tr("Last Year"));
|
html += QString("<td><b>%1</b></td>").arg(periods.at(j).header);
|
||||||
|
}
|
||||||
|
html += "</tr>\n";
|
||||||
continue;
|
continue;
|
||||||
} else if (row.calc == SC_DAYS) {
|
} else if (row.calc == SC_DAYS) {
|
||||||
QDate first=p_profile->FirstGoodDay(row.type);
|
QDate first=p_profile->FirstGoodDay(row.type);
|
||||||
@ -566,28 +611,26 @@ QString Statistics::GenerateHTML()
|
|||||||
int value=p_profile->countDays(row.type, first, last);
|
int value=p_profile->countDays(row.type, first, last);
|
||||||
|
|
||||||
if (value == 0) {
|
if (value == 0) {
|
||||||
html+="<tr><td colspan=6 align=center>"+
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>\n").arg(periods.size()+1).
|
||||||
QString(tr("No %1 data available.")).arg(machine)
|
arg(QString(tr("No %1 data available.")).arg(machine));
|
||||||
+"</td></tr>";
|
|
||||||
} else if (value == 1) {
|
} else if (value == 1) {
|
||||||
html+="<tr><td colspan=6 align=center>"+
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>\n").arg(periods.size()+1).
|
||||||
QString("%1 day of %2 Data on %3")
|
arg(QString("%1 day of %2 Data on %3")
|
||||||
.arg(value)
|
.arg(value)
|
||||||
.arg(machine)
|
.arg(machine)
|
||||||
.arg(last.toString())
|
.arg(last.toString()));
|
||||||
+"</td></tr>\n";
|
|
||||||
} else {
|
} else {
|
||||||
html+="<tr><td colspan=6 align=center>"+
|
html+=QString("<tr><td colspan=%1 align=center>%2</td></tr>\n").arg(periods.size()+1).
|
||||||
QString("%1 days of %2 Data, between %3 and %4")
|
arg(QString("%1 days of %2 Data, between %3 and %4")
|
||||||
.arg(value)
|
.arg(value)
|
||||||
.arg(machine)
|
.arg(machine)
|
||||||
.arg(first.toString())
|
.arg(first.toString())
|
||||||
.arg(last.toString())
|
.arg(last.toString()));
|
||||||
+"</td></tr>\n";
|
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
} else if (row.calc == SC_SUBHEADING) { // subheading..
|
} else if (row.calc == SC_SUBHEADING) { // subheading..
|
||||||
html+=QString("<tr bgcolor='"+subheading_color+"'><td colspan=6 align=center><b>%1</b></td></tr>\n").arg(row.src);
|
html+=QString("<tr bgcolor='%1'><td colspan=%2 align=center><b>%3</b></td></tr>\n").
|
||||||
|
arg(subheading_color).arg(periods.size()+1).arg(row.src);
|
||||||
continue;
|
continue;
|
||||||
} else if (row.calc == SC_UNDEFINED) {
|
} else if (row.calc == SC_UNDEFINED) {
|
||||||
continue;
|
continue;
|
||||||
@ -598,14 +641,12 @@ QString Statistics::GenerateHTML()
|
|||||||
}
|
}
|
||||||
name = calcnames[row.calc].arg(row.src);
|
name = calcnames[row.calc].arg(row.src);
|
||||||
}
|
}
|
||||||
|
html += QString("<tr><td>%1</td>").arg(name);
|
||||||
html += QString("<tr><td>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td><td>%6</td></tr>\n")
|
for (int j=0; j < periods.size(); j++) {
|
||||||
.arg(name)
|
html += QString("<td>%2</td>")
|
||||||
.arg(row.value(last,last))
|
.arg(row.value(periods.at(j).start,periods.at(j).end));
|
||||||
.arg(row.value(week,last))
|
}
|
||||||
.arg(row.value(month,last))
|
html += "</tr>\n";
|
||||||
.arg(row.value(sixmonth,last))
|
|
||||||
.arg(row.value(year,last));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
html += "</table>";
|
html += "</table>";
|
||||||
@ -1152,8 +1193,7 @@ QString Statistics::GenerateHTML()
|
|||||||
QString StatisticsRow::value(QDate start, QDate end)
|
QString StatisticsRow::value(QDate start, QDate end)
|
||||||
{
|
{
|
||||||
const int decimals=2;
|
const int decimals=2;
|
||||||
QString value = "???";
|
QString value = "";
|
||||||
qDebug() << "Calculating " << src << calc << "for" << start << end;
|
|
||||||
float days = PROFILE.countDays(type, start, end);
|
float days = PROFILE.countDays(type, start, end);
|
||||||
|
|
||||||
// Handle special data sources first
|
// Handle special data sources first
|
||||||
|
Loading…
Reference in New Issue
Block a user