mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Added Records box back
This commit is contained in:
parent
de695e153d
commit
b6f13ae0d6
@ -1090,7 +1090,7 @@ int Profile::countCompliantDays(MachineType mt, QDate start, QDate end)
|
||||
int days = 0;
|
||||
|
||||
do {
|
||||
Day *day = GetGoodDay(date, mt);
|
||||
Day *day = FindGoodDay(date, mt);
|
||||
|
||||
if (day) {
|
||||
if (day->hours(mt) > compliance) { days++; }
|
||||
|
@ -7,7 +7,9 @@
|
||||
<p>Greetings!</p>
|
||||
<p>Here is a definitely new and improved SleepyHead build :)</p>
|
||||
|
||||
<p>The New Features and Bugfixes list is getting a little scary, and I completely rewrote some important parts.. so let's have a Version Bump!</p>
|
||||
<p><b>Warning: This is a test build, not all features are complete or will work 100% as intended yet!</b></p>
|
||||
|
||||
<p>This is the first public test build in a while, so there is a lot of new stuff to take in.</p>
|
||||
|
||||
<p>First up, a warning: Some new stuff is going down that might break on you.. Overview overhead figures aren't completely finished yet. I know about these and am working on them.
|
||||
You will likely have to Rebuild CPAP data to get this to behave properly.. If you have to do it more than once, somethings not right, and I need to know.</p>
|
||||
@ -17,8 +19,7 @@ You will likely have to Rebuild CPAP data to get this to behave properly.. If yo
|
||||
You can even take these graph clones with you to another day! They aren't saved though. they are gone when you close SleepyHead.</li>
|
||||
<p>Y-Axis menu allows for better control of Y-Axis scaling, all of this has been improved greatly... no more having to go into preferences
|
||||
to set minimum/maximum values (that SleepyHead wasn't honouring properly anyway). Now you can adjust these settings live for each graph!</p>
|
||||
<p>Fisher & Paykel support got a tweak and timestamps should be correct, and even the new AirSense machines import mostly.
|
||||
I still need to to see more AirSense data to get everything right though!</p>
|
||||
<p>Line Cursor mode (F3 to toggles) is a very powerful new feature.. Play with it and see what it does. It's off by default because it takes a lot more CPU power to work.</p>
|
||||
|
||||
<p><b>Sleep Well, and good luck!</b></p>
|
||||
<p><b><i>JediMark</i></b></p>
|
||||
@ -26,6 +27,8 @@ I still need to to see more AirSense data to get everything right though!</p>
|
||||
<br/>
|
||||
<b>New features & bug fixes in v0.9.8</b><br/>
|
||||
<list>
|
||||
<li>Rework of Records box</li>
|
||||
<li>Initial support for Philips Respironics System One Oximetery attachment</li>
|
||||
<li>Removed old unused Mask Preferences and other junk</li>
|
||||
<li>Complete Overview SummaryChart overhaul</li>
|
||||
<li>Prescription changes now caches to disk to save having to reload all data every time</li>
|
||||
|
@ -926,7 +926,7 @@
|
||||
<enum>QTabWidget::Rounded</enum>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="documentMode">
|
||||
<bool>false</bool>
|
||||
@ -937,6 +937,71 @@
|
||||
<property name="movable">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<widget class="QWidget" name="welcomeTab">
|
||||
<attribute name="title">
|
||||
<string>Welcome</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="warningLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>14</pointsize>
|
||||
<weight>50</weight>
|
||||
<italic>false</italic>
|
||||
<bold>false</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background-color: red;
|
||||
color: yellow;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><html><head/><body><p><span style=" font-weight:600;">Warning: </span>This is pre-release software, some parts of this program may not yet function as intended.</p></body></html></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignHCenter|Qt::AlignTop</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWebView" name="welcomeView">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="url">
|
||||
<url>
|
||||
<string>about:blank</string>
|
||||
</url>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="statisticsTab">
|
||||
<attribute name="title">
|
||||
<string>&Statistics</string>
|
||||
@ -1065,71 +1130,6 @@
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="welcomeTab">
|
||||
<attribute name="title">
|
||||
<string>Welcome</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="warningLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>14</pointsize>
|
||||
<weight>50</weight>
|
||||
<italic>false</italic>
|
||||
<bold>false</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background-color: red;
|
||||
color: yellow;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string><html><head/><body><p><span style=" font-weight:600;">Warning: </span>This is pre-release software, some parts of this program may not yet function as intended.</p></body></html></string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignHCenter|Qt::AlignTop</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QWebView" name="welcomeView">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="url">
|
||||
<url>
|
||||
<string>about:blank</string>
|
||||
</url>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="helpTab">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
@ -1334,7 +1334,7 @@ color: yellow;</string>
|
||||
<widget class="QToolBox" name="toolBox">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>180</width>
|
||||
<width>230</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
@ -1484,7 +1484,7 @@ QToolBox::tab:selected {
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="tabSpacing">
|
||||
<number>0</number>
|
||||
@ -1494,7 +1494,7 @@ QToolBox::tab:selected {
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>180</width>
|
||||
<width>250</width>
|
||||
<height>724</height>
|
||||
</rect>
|
||||
</property>
|
||||
@ -1908,7 +1908,7 @@ border: 2px solid #56789a; border-radius: 30px;
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>180</width>
|
||||
<width>250</width>
|
||||
<height>724</height>
|
||||
</rect>
|
||||
</property>
|
||||
@ -3056,7 +3056,7 @@ border-radius: 10px;
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>180</width>
|
||||
<width>230</width>
|
||||
<height>724</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -1747,6 +1747,9 @@ QString Statistics::GenerateHTML()
|
||||
html += GenerateRXChanges();
|
||||
html += GenerateMachineList();
|
||||
|
||||
UpdateRecordsBox();
|
||||
|
||||
|
||||
|
||||
html += "<script type='text/javascript' language='javascript' src='qrc:/docs/script.js'></script>";
|
||||
//updateFavourites();
|
||||
@ -1754,6 +1757,265 @@ QString Statistics::GenerateHTML()
|
||||
return html;
|
||||
}
|
||||
|
||||
void Statistics::UpdateRecordsBox()
|
||||
{
|
||||
QString html = "<html><head><style type='text/css'>"
|
||||
"p,a,td,body { font-family: '" + QApplication::font().family() + "'; }"
|
||||
"p,a,td,body { font-size: " + QString::number(QApplication::font().pointSize() + 2) + "px; }"
|
||||
"a:link,a:visited { color: inherit; text-decoration: none; }" //font-weight: normal;
|
||||
"a:hover { background-color: inherit; color: white; text-decoration:none; font-weight: bold; }"
|
||||
"</style></head><body>";
|
||||
|
||||
Machine * cpap = p_profile->GetMachine(MT_CPAP);
|
||||
if (cpap) {
|
||||
QDate first = p_profile->FirstGoodDay(MT_CPAP);
|
||||
QDate last = p_profile->LastGoodDay(MT_CPAP);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// Compliance and usage information
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
int totaldays = p_profile->countDays(MT_CPAP, first, last);
|
||||
int compliant = p_profile->countCompliantDays(MT_CPAP, first, last);
|
||||
|
||||
float comperc = (100.0 / float(totaldays)) * float(compliant);
|
||||
|
||||
html += "<b>"+QObject::tr("CPAP Usage")+"</b><br/>";
|
||||
html += QObject::tr("Days Used: %1").arg(totaldays) + "<br/>";
|
||||
html += QObject::tr("Low Use Days: %1").arg(totaldays - compliant) + "<br/>";
|
||||
html += QObject::tr("Compliance: %1%").arg(comperc, 0, 'f', 1) + "<br/>";
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// AHI Records
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
if (p_profile->session->preloadSummaries()) {
|
||||
const int show_records = 5;
|
||||
QMultiMap<float, QDate>::iterator it;
|
||||
QMultiMap<float, QDate>::iterator it_end;
|
||||
|
||||
QMultiMap<float, QDate> ahilist;
|
||||
int baddays = 0;
|
||||
|
||||
for (QDate date = first; date <= last; date = date.addDays(1)) {
|
||||
Day * day = p_profile->GetGoodDay(date, MT_CPAP);
|
||||
if (!day) continue;
|
||||
|
||||
float ahi = day->calcAHI();
|
||||
if (ahi >= 5) {
|
||||
baddays++;
|
||||
}
|
||||
ahilist.insert(ahi, date);
|
||||
}
|
||||
html += QObject::tr("Days AHI of 5 or greater: %1").arg(baddays) + "<br/><br/>";
|
||||
|
||||
|
||||
if (ahilist.size() > (show_records * 2)) {
|
||||
it = ahilist.begin();
|
||||
it_end = ahilist.end();
|
||||
|
||||
html += "<b>"+QObject::tr("Best AHI")+"</b><br/>";
|
||||
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, ++it) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 AHI: %2").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
|
||||
html += "<b>"+QObject::tr("Worst AHI")+"</b><br/>";
|
||||
|
||||
it = ahilist.end() - 1;
|
||||
it_end = ahilist.begin();
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, --it) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 AHI: %2").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// Flow Limitation Records
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
ahilist.clear();
|
||||
for (QDate date = first; date <= last; date = date.addDays(1)) {
|
||||
Day * day = p_profile->GetGoodDay(date, MT_CPAP);
|
||||
if (!day) continue;
|
||||
|
||||
float val = 0;
|
||||
if (day->channelHasData(CPAP_FlowLimit)) {
|
||||
val = day->calcIdx(CPAP_FlowLimit);
|
||||
} else if (day->channelHasData(CPAP_FLG)) {
|
||||
// Use 90th percentile
|
||||
val = day->calcPercentile(CPAP_FLG);
|
||||
}
|
||||
ahilist.insert(val, date);
|
||||
}
|
||||
|
||||
int cnt = 0;
|
||||
if (ahilist.size() > (show_records * 2)) {
|
||||
it = ahilist.begin();
|
||||
it_end = ahilist.end();
|
||||
|
||||
html += "<b>"+QObject::tr("Best Flow Limitation")+"</b><br/>";
|
||||
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, ++it) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 FL: %2").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
|
||||
html += "<b>"+QObject::tr("Worst Flow Limtation")+"</b><br/>";
|
||||
|
||||
it = ahilist.end() - 1;
|
||||
it_end = ahilist.begin();
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, --it) {
|
||||
if (it.key() > 0) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 FL: %2").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
cnt++;
|
||||
}
|
||||
}
|
||||
if (cnt == 0) {
|
||||
html+= "<i>"+QObject::tr("No Flow Limitation on record")+"</i><br/>";
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// Large Leak Records
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
ahilist.clear();
|
||||
for (QDate date = first; date <= last; date = date.addDays(1)) {
|
||||
Day * day = p_profile->GetGoodDay(date, MT_CPAP);
|
||||
if (!day) continue;
|
||||
|
||||
float leak = day->calcPON(CPAP_LargeLeak);
|
||||
ahilist.insert(leak, date);
|
||||
}
|
||||
|
||||
cnt = 0;
|
||||
if (ahilist.size() > (show_records * 2)) {
|
||||
html += "<b>"+QObject::tr("Worst Large Leaks")+"</b><br/>";
|
||||
|
||||
it = ahilist.end() - 1;
|
||||
it_end = ahilist.begin();
|
||||
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, --it) {
|
||||
if (it.key() > 0) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 Leak: %2%").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
cnt++;
|
||||
}
|
||||
|
||||
}
|
||||
if (cnt == 0) {
|
||||
html+= "<i>"+QObject::tr("No Large Leaks on record")+"</i><br/>";
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
}
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// ÇSR Records
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
cnt = 0;
|
||||
if (p_profile->hasChannel(CPAP_CSR)) {
|
||||
ahilist.clear();
|
||||
for (QDate date = first; date <= last; date = date.addDays(1)) {
|
||||
Day * day = p_profile->GetGoodDay(date, MT_CPAP);
|
||||
if (!day) continue;
|
||||
|
||||
float leak = day->calcPON(CPAP_CSR);
|
||||
ahilist.insert(leak, date);
|
||||
}
|
||||
|
||||
if (ahilist.size() > (show_records * 2)) {
|
||||
html += "<b>"+QObject::tr("Worst CSR")+"</b><br/>";
|
||||
|
||||
it = ahilist.end() - 1;
|
||||
it_end = ahilist.begin();
|
||||
for (int i=0; (i<show_records) && (it != it_end); ++i, --it) {
|
||||
|
||||
if (it.key() > 0) {
|
||||
html += QString("<a href='daily=%1'>").arg(it.value().toString(Qt::ISODate))
|
||||
+QObject::tr("Date: %1 CSR: %2%").arg(it.value().toString(Qt::SystemLocaleShortDate)).arg(it.key(), 0, 'f', 2) + "</a><br/>";
|
||||
cnt++;
|
||||
}
|
||||
}
|
||||
if (cnt == 0) {
|
||||
html+= "<i>"+QObject::tr("No CSR on record")+"</i><br/>";
|
||||
}
|
||||
|
||||
html += "<br/>";
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
html += "<br/><b>"+QObject::tr("Want more information?")+"</b><br/>";
|
||||
html += "<i>"+QObject::tr("SleepyHead needs all summary data loaded to calculate best/worst data for individual days.")+"</i><br/><br/>";
|
||||
html += "<i>"+QObject::tr("Please enable Pre-Load Summaries checkbox in preferences to make sure this data is available.")+"</i><br/><br/>";
|
||||
}
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/// Sort the RX list to get best and worst settings.
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
QList<RXItem *> list;
|
||||
QMap<QDate, RXItem>::iterator ri_end = rxitems.end();
|
||||
QMap<QDate, RXItem>::iterator ri;
|
||||
|
||||
for (ri = rxitems.begin(); ri != ri_end; ++ri) {
|
||||
list.append(&ri.value());
|
||||
ri.value().highlight = 0;
|
||||
}
|
||||
|
||||
qSort(list.begin(), list.end(), rxAHILessThan);
|
||||
|
||||
|
||||
if (list.size() >= 2) {
|
||||
html += "<b>"+QObject::tr("Best RX Setting")+"</b><br/>";
|
||||
const RXItem & rxbest = *list.at(0);
|
||||
html += QString("<a href='overview=%1,%2'>").arg(rxbest.start.toString(Qt::ISODate)).arg(rxbest.end.toString(Qt::ISODate)) +
|
||||
QObject::tr("Date: %1 - %2").arg(rxbest.start.toString(Qt::SystemLocaleShortDate)).arg(rxbest.end.toString(Qt::SystemLocaleShortDate)) + "</a><br/>";
|
||||
html += QString("%1").arg(rxbest.machine->model()) + "<br/>";
|
||||
html += QString("Serial: %1").arg(rxbest.machine->serial()) + "<br/>";
|
||||
html += QObject::tr("Culminative AHI: %1").arg(double(rxbest.ahi) / rxbest.hours, 0, 'f', 2) + "<br/>";
|
||||
html += QObject::tr("Culminative Hours: %1").arg(rxbest.hours, 0, 'f', 2) + "<br/>";
|
||||
html += QString("%1").arg(rxbest.pressure) + "<br/>";
|
||||
html += QString("%1").arg(rxbest.relief) + "<br/>";
|
||||
html += "<br/>";
|
||||
|
||||
html += "<b>"+QObject::tr("Worst RX Setting")+"</b><br/>";
|
||||
const RXItem & rxworst = *list.at(list.size() -1);
|
||||
html += QString("<a href='overview=%1,%2'>").arg(rxworst.start.toString(Qt::ISODate)).arg(rxworst.end.toString(Qt::ISODate)) +
|
||||
QObject::tr("Date: %1 - %2").arg(rxworst.start.toString(Qt::SystemLocaleShortDate)).arg(rxworst.end.toString(Qt::SystemLocaleShortDate)) + "</a><br/>";
|
||||
html += QString("%1").arg(rxworst.machine->model()) + "<br/>";
|
||||
html += QString("Serial: %1").arg(rxworst.machine->serial()) + "<br/>";
|
||||
html += QObject::tr("Culminative AHI: %1").arg(double(rxworst.ahi) / rxworst.hours, 0, 'f', 2) + "<br/>";
|
||||
html += QObject::tr("Culminative Hours: %1").arg(rxworst.hours, 0, 'f', 2) + "<br/>";
|
||||
|
||||
html += QString("%1").arg(rxworst.pressure) + "<br/>";
|
||||
html += QString("%1").arg(rxworst.relief) + "<br/>";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
html += "</body></html>";
|
||||
mainwin->setRecBoxHTML(html);
|
||||
}
|
||||
|
||||
|
||||
|
||||
QString StatisticsRow::value(QDate start, QDate end)
|
||||
{
|
||||
|
@ -144,6 +144,8 @@ public:
|
||||
short highlight;
|
||||
};
|
||||
|
||||
|
||||
|
||||
class Statistics : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
@ -158,6 +160,8 @@ class Statistics : public QObject
|
||||
QString GenerateMachineList();
|
||||
QString GenerateRXChanges();
|
||||
|
||||
void UpdateRecordsBox();
|
||||
|
||||
|
||||
protected:
|
||||
// Using a map to maintain order
|
||||
@ -167,6 +171,9 @@ class Statistics : public QObject
|
||||
|
||||
QMap<QDate, RXItem> rxitems;
|
||||
|
||||
QList<QDate> record_best_ahi;
|
||||
QList<QDate> record_worst_ahi;
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
Loading…
Reference in New Issue
Block a user