From b816bec48839b0dbbb75d4012c81ac192fd950bd Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 4 Dec 2011 18:54:39 +1000 Subject: [PATCH] A better attempt at the SummaryChart 0 value thing --- Graphs/gSummaryChart.cpp | 36 ++++++++++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/Graphs/gSummaryChart.cpp b/Graphs/gSummaryChart.cpp index 1634c87f..23b58005 100644 --- a/Graphs/gSummaryChart.cpp +++ b/Graphs/gSummaryChart.cpp @@ -104,12 +104,13 @@ void SummaryChart::SetDay(Day * nullday) } else { for (int j=0;jmachine_type()!=m_machinetype) continue; - m_values[dn][j+1]=0; + //m_values[dn][j+1]=0; bool hascode=day->channelHasData(code) || day->settingExists(code); if (type==ST_HOURS || type==ST_SESSIONS || hascode) { // too many lookups happening here.. stop the crap.. @@ -137,12 +138,12 @@ void SummaryChart::SetDay(Day * nullday) tmp-=suboffset; if (tmp<0) tmp=0; } - fnd=true; total+=tmp; m_values[dn][j+1]=tmp; if (tmpm_maxy) m_maxy=tmp; m_goodcodes[code]=true; + fnd=true; break; } } @@ -159,17 +160,36 @@ void SummaryChart::SetDay(Day * nullday) } else m_hours[dn]=0; } } + if (m_graphtype!=GT_SESSIONS) for (int j=0;j >::iterator i=m_values.begin();i!=m_values.end();i++) { - if (!m_values[i.key()].contains(j+1)) - m_values[i.key()][j+1]=30; + } else { + + if (type==ST_HOURS || type==ST_SESSIONS) continue; // too many lookups happening here.. stop the crap.. + + for (QMap >::iterator d=PROFILE.daylist.begin();d!=PROFILE.daylist.end();d++) { + tt=QDateTime(d.key(),QTime(0,0,0),Qt::UTC).toTime_t(); + dn=tt/86400; + for (int i=0;imachine_type()!=m_machinetype) continue; + if (!m_values[dn].contains(j+1)) { + m_days[dn]=day; + m_values[dn][j+1]=0; + if (!m_values[dn].contains(0)) { + m_values[dn][0]=0; + } + if (0m_maxy) m_maxy=0; + m_hours[dn]=day->hours(); + } + break; + } } - } */ + m_empty=false; + } } if (m_graphtype==GT_BAR) { m_miny=0;