Statistics:added alternating lightGreen/white backround colors for rows

This commit is contained in:
LoudSnorer 2023-12-06 19:01:11 -05:00
parent 53eac87402
commit 14888a980b

View File

@ -1366,6 +1366,7 @@ QString Statistics::GenerateCPAPUsage()
QList<Period> periods; QList<Period> periods;
bool skipsection = false;; bool skipsection = false;;
int alternateColorCounter = 0 ;
// Loop through all rows of the Statistics report // Loop through all rows of the Statistics report
for (QList<StatisticsRow>::iterator i = rows.begin(); i != rows.end(); ++i) { for (QList<StatisticsRow>::iterator i = rows.begin(); i != rows.end(); ++i) {
StatisticsRow &row = (*i); StatisticsRow &row = (*i);
@ -1492,6 +1493,7 @@ QString Statistics::GenerateCPAPUsage()
} }
continue; continue;
} else if (row.calc == SC_SUBHEADING) { // subheading.. } else if (row.calc == SC_SUBHEADING) { // subheading..
alternateColorCounter = 0 ;
html+=QString("<tr bgcolor='%1'><td colspan=%2 align=center><b>%3</b></td></tr>"). html+=QString("<tr bgcolor='%1'><td colspan=%2 align=center><b>%3</b></td></tr>").
arg(subheading_color).arg(periods.size()+1).arg(row.src); arg(subheading_color).arg(periods.size()+1).arg(row.src);
continue; continue;
@ -1527,7 +1529,17 @@ QString Statistics::GenerateCPAPUsage()
dataWidth = 6; dataWidth = 6;
headerWidth = 22; headerWidth = 22;
} }
line += QString("<tr class=datarow><td width='%1%'>%2</td>").arg(headerWidth).arg(name); QString bgColor = "#ffffff";
alternateColorCounter %= 2;
switch (alternateColorCounter) {
case 1 :
bgColor = "#e8ffe8"; // lightGreen
break;
default: ;
}
alternateColorCounter++;
line += QString("<tr class=datarow bgcolor='%3'><td width='%1%'>%2</td>").arg(headerWidth).arg(name).arg(bgColor);
//line += QString("<tr class=datarow><td width='%1%'>%2</td>").arg(headerWidth).arg(name);
for (int j=0; j < np; j++) { for (int j=0; j < np; j++) {
width = j < np-1 ? dataWidth : 100 - (headerWidth + dataWidth*(np-1)); width = j < np-1 ? dataWidth : 100 - (headerWidth + dataWidth*(np-1));
line += QString("<td width='%1%'>").arg(width); line += QString("<td width='%1%'>").arg(width);