Better summary only messages

This commit is contained in:
Mark Watkins 2014-07-13 14:39:26 +10:00
parent d0bb6414b6
commit c386d36355
4 changed files with 34 additions and 19 deletions

View File

@ -421,7 +421,7 @@ void initializeStrings()
STR_TR_Sessions = QObject::tr("Sessions");
STR_TR_PrRelief = QObject::tr("Pr. Relief"); // Pressure Relief
STR_TR_NoData = QObject::tr("No Data");
STR_TR_NoData = QObject::tr("No Data Available");
STR_TR_Bookmarks = QObject::tr("Bookmarks");
STR_TR_SleepyHead = QObject::tr("SleepyHead");

View File

@ -1345,7 +1345,6 @@ void Daily::Load(QDate date)
updateGraphCombo();
if (cpap) {
float hours=cpap->hours();
if (GraphView->isEmpty() && (hours>0)) {
@ -2262,7 +2261,14 @@ void Daily::updateCube()
if (ui->graphCombo->count() > 0) {
GraphView->setEmptyText(tr("No Graphs On!"));
} else {
if (!p_profile->GetGoodDay(getDate(), MT_CPAP)
&& !p_profile->GetGoodDay(getDate(), MT_OXIMETER)
&& !p_profile->GetGoodDay(getDate(), MT_SLEEPSTAGE)
&& !p_profile->GetGoodDay(getDate(), MT_POSITION)) {
GraphView->setEmptyText(STR_TR_NoData);
} else {
GraphView->setEmptyText(tr("Summary Only :("));
}
}
} else {
ui->toggleGraphs->setArrowType(Qt::DownArrow);
@ -2271,6 +2277,7 @@ void Daily::updateCube()
ui->toggleGraphs->setChecked(false);
ui->toggleGraphs->blockSignals(false);
}
}

View File

@ -0,0 +1 @@
ghttp://mobile-phones.smh.com.au/MobilePhones?utm_source=Widget_Fairfax_SMH_CompareAndSave&utm_medium=Widget&utm_campaign=New_BYO_Phone_Prices

View File

@ -1317,47 +1317,54 @@ QString StatisticsRow::value(QDate start, QDate end)
} else {
//
ChannelID code=channel();
EventDataType val = 0;
QString fmt = "%1";
if (code != NoChannel) {
switch(calc) {
case SC_AVG:
value = QString("%1").arg(p_profile->calcAvg(code, type, start, end), 0, 'f', decimals);
val = p_profile->calcAvg(code, type, start, end);
break;
case SC_WAVG:
value = QString("%1").arg(p_profile->calcWavg(code, type, start, end), 0, 'f', decimals);
val = p_profile->calcWavg(code, type, start, end);
break;
case SC_MEDIAN:
value = QString("%1").arg(p_profile->calcPercentile(code, 0.5F, type, start, end), 0, 'f', decimals);
val = p_profile->calcPercentile(code, 0.5F, type, start, end);
break;
case SC_90P:
value = QString("%1").arg(p_profile->calcPercentile(code, 0.9F, type, start, end), 0, 'f', decimals);
val = p_profile->calcPercentile(code, 0.9F, type, start, end);
break;
case SC_MIN:
value = QString("%1").arg(p_profile->calcMin(code, type, start, end), 0, 'f', decimals);
val = p_profile->calcMin(code, type, start, end);
break;
case SC_MAX:
value = QString("%1").arg(p_profile->calcMax(code, type, start, end), 0, 'f', decimals);
val = p_profile->calcMax(code, type, start, end);
break;
case SC_CPH:
value = QString("%1").arg(p_profile->calcCount(code, type, start, end)
/ p_profile->calcHours(type, start, end), 0, 'f', decimals);
val = p_profile->calcCount(code, type, start, end) / p_profile->calcHours(type, start, end);
break;
case SC_SPH:
value = QString("%1%").arg(100.0 / p_profile->calcHours(type, start, end)
* p_profile->calcSum(code, type, start, end)
/ 3600.0, 0, 'f', decimals);
fmt += "%";
val = 100.0 / p_profile->calcHours(type, start, end) * p_profile->calcSum(code, type, start, end) / 3600.0;
break;
case SC_ABOVE:
value = QString("%1%").arg(100.0 / p_profile->calcHours(type, start, end)
* (p_profile->calcAboveThreshold(code, schema::channel[code].upperThreshold(), type, start, end) / 60.0), 0, 'f', decimals);
fmt += "%";
val = 100.0 / p_profile->calcHours(type, start, end) * (p_profile->calcAboveThreshold(code, schema::channel[code].upperThreshold(), type, start, end) / 60.0);
break;
case SC_BELOW:
value = QString("%1%").arg(100.0 / p_profile->calcHours(type, start, end)
* (p_profile->calcBelowThreshold(code, schema::channel[code].lowerThreshold(), type, start, end) / 60.0), 0, 'f', decimals);
fmt += "%";
val = 100.0 / p_profile->calcHours(type, start, end) * (p_profile->calcBelowThreshold(code, schema::channel[code].lowerThreshold(), type, start, end) / 60.0);
break;
default:
break;
};
}
if ((val == std::numeric_limits<EventDataType>::min()) || (val == std::numeric_limits<EventDataType>::max())) {
value = "Err";
} else {
value = fmt.arg(val, 0, 'f', decimals);
}
}
return value;