From 0af94664b81e336138f2a9577cbfad6e41e9bfeb Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 13 Oct 2013 18:07:43 +1000 Subject: [PATCH] Changed Session Information to display duration, Less colors in SessionBar --- sleepyhead/daily.cpp | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index c18a1e23..88dd1f15 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include @@ -1194,20 +1195,21 @@ void Daily::Load(QDate date) html+="
"; html+=QString(""+tr("Session Information")+""); html+=" "; + QFontMetrics FM(webView->font()); + QRect r=FM.boundingRect('@'); html+=QString("" - ""; - "" - // "sessionbar.setGridVisible(true);" - // "calendar.setCurrentPage(1985, 5);" - "" - ; + "" + "" + "").arg(r.height()*3,0,10); + html+="  " +; QDateTime fd,ld; bool corrupted_waveform=false; QString tooltip; - html+=QString(""+tr("SessionID")+""+STR_TR_On+""+STR_TR_Date+""+STR_TR_Start+""+STR_TR_End+""); + html+=QString(""+STR_TR_On+""+STR_TR_Date+""+STR_TR_Start+""+STR_TR_End+""+tr("Duration")+""); if (cpap) { html+=QString(""+tr("CPAP Sessions")+""); for (QVector::iterator s=cpap->begin();s!=cpap->end();s++) { @@ -1217,7 +1219,7 @@ void Daily::Load(QDate date) int h=len/3600; int m=(len/60) % 60; int s1=len % 60; - tooltip=cpap->machine->GetClass()+" "+STR_TR_CPAP+" "+QString().sprintf("%2ih, %2im, %2is",h,m,s1); + tooltip=cpap->machine->GetClass()+QString(":#%1").arg((*s)->session(),8,10,QChar('0')); // tooltip needs to lookup language.. :-/ QHash::iterator i=(*s)->settings.find(CPAP_BrokenWaveform); @@ -1227,10 +1229,10 @@ void Daily::Load(QDate date) sess->settings[SESSION_ENABLED]=true; } bool b=sess->settings[SESSION_ENABLED].toBool(); - html+=QString("%3%2%5%6%7") + html+=QString("%5%6%7%3%2") .arg((*s)->session()) .arg(tooltip) - .arg((*s)->session(),8,10,QChar('0')) + .arg(QString().sprintf("%2ih %2im %2is",h,m,s1)) .arg((b ? "on" : "off")) .arg(fd.date().toString(Qt::SystemLocaleShortDate)) .arg(fd.toString("HH:mm")) @@ -1310,9 +1312,6 @@ void Daily::Load(QDate date) QColor cols[]={ QColor("gold"), QColor("light blue"), - QColor("light green"), - QColor("purple"), - QColor("red"), }; const int maxcolors=sizeof(cols)/sizeof(QColor); QVector::iterator i;