diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp index 31630343..8c0d0acb 100644 --- a/sleepyhead/statistics.cpp +++ b/sleepyhead/statistics.cpp @@ -573,13 +573,18 @@ QString Statistics::GenerateHTML() int number_periods = 0; if (p_profile->general->statReportMode() == 1) { - number_periods = 12; + number_periods = PROFILE.FirstDay().daysTo(PROFILE.LastDay()) / 30; + if (number_periods > 12) { + number_periods = 12; + } } QDate last = lastcpap, first = lastcpap; QList periods; + + bool skipsection = false;; for (QList::iterator i = rows.begin(); i != rows.end(); ++i) { StatisticsRow &row = (*i); @@ -587,10 +592,10 @@ QString Statistics::GenerateHTML() if (row.calc == SC_HEADING) { // All sections begin with a heading last = p_profile->LastGoodDay(row.type); - first = p_profile->FirstGoodDay(row.type); + first = p_profile->FirstGoodDay(row.type); periods.clear(); - if (number_periods == 0) { + if (p_profile->general->statReportMode() == 0) { periods.push_back(Period(last,last,tr("Most Recent"))); 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"))); @@ -602,17 +607,35 @@ QString Statistics::GenerateHTML() periods.push_back(Period(last,last,tr("Last Session"))); bool done=false; - for (int j=0; j < number_periods; j++) { + int j=0; + do { s=QDate(l.year(), l.month(), 1); if (s < first) { done = true; s = first; } - if (p_profile->countDays(row.type, s, l)>0) { + if (p_profile->countDays(row.type, s, l) > 0) { periods.push_back(Period(s, l, s.toString("MMMM"))); + j++; } - l= s.addDays(-1); - if (done || (l < first)) break; + l = s.addDays(-1); + } while ((l > first) && (j < number_periods)); + +// for (; 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"))); +// } else { +// } +// l = s.addDays(-1); +// if (done || (l < first)) break; +// } + for (; j < number_periods; ++j) { + periods.push_back(Period(last,last, "")); } } @@ -677,11 +700,23 @@ QString Statistics::GenerateHTML() name = calcnames[row.calc].arg(schema::channel[id].fullname()); } QString line; - line += QString("%1").arg(name); - for (int j=0; j < periods.size(); j++) { - QString val=row.value(periods.at(j).start,periods.at(j).end); - line += QString("%2") - .arg(val); + line += QString("%1").arg(name); + int np = periods.size(); + int width; + for (int j=0; j < np; j++) { + if (p_profile->general->statReportMode() == 1) { + width = j < np-1 ? 6 : 100 - (25 + 6*(np-1)); + } else { + width = 75/np; + } + + line += QString("").arg(width); + if (!periods.at(j).header.isEmpty()) { + line += row.value(periods.at(j).start, periods.at(j).end); + } else { + line +=" "; + } + line += ""; } html += line; html += "\n";