OSCAR-code/Graphs/gSummaryChart.cpp

747 lines
23 KiB
C++
Raw Normal View History

2011-07-01 10:10:44 +00:00
/*
2011-06-26 08:30:44 +00:00
gBarChart Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-07-01 10:10:44 +00:00
*/
2011-06-26 08:30:44 +00:00
#include <math.h>
2011-09-03 12:59:08 +00:00
#include <QLabel>
2011-09-02 02:00:04 +00:00
#include <QDateTime>
#include "gYAxis.h"
2011-09-17 12:39:00 +00:00
#include "gSummaryChart.h"
2011-06-26 08:30:44 +00:00
2011-09-03 12:59:08 +00:00
extern QLabel * qstatus2;
SummaryChart::SummaryChart(QString label,GraphType type)
:Layer(""),m_label(label),m_graphtype(type)
2011-06-26 08:30:44 +00:00
{
//QColor color=Qt::black;
addGLBuf(quads=new GLShortBuffer(20000,GL_QUADS));
addGLBuf(lines=new GLShortBuffer(20000,GL_LINES));
2011-09-02 02:00:04 +00:00
quads->forceAntiAlias(true);
lines->setSize(2);
lines->forceAntiAlias(false);
2011-09-02 05:13:07 +00:00
m_empty=true;
hl_day=-1;
m_machinetype=MT_CPAP;
QDateTime d1=QDateTime::currentDateTime();
QDateTime d2=d1;
d1.setTimeSpec(Qt::UTC);
tz_offset=d2.secsTo(d1);
tz_hours=tz_offset/3600.0;
2011-06-26 08:30:44 +00:00
}
SummaryChart::~SummaryChart()
2011-06-26 08:30:44 +00:00
{
}
void SummaryChart::SetDay(Day * nullday)
2011-09-02 05:13:07 +00:00
{
Day * day=nullday;
Layer::SetDay(day);
m_values.clear();
m_times.clear();
2011-09-12 05:09:53 +00:00
m_days.clear();
m_hours.clear();
m_goodcodes.clear();
m_miny=999999999;
m_maxy=-999999999;
m_minx=0;
m_maxx=0;
int dn;
EventDataType tmp,tmp2,total;
ChannelID code;
2011-12-05 11:17:28 +00:00
m_goodcodes.resize(m_codes.size());
for (int i=0;i<m_codes.size();i++) {
m_goodcodes[i]=false;
}
m_fday=0;
qint64 tt,zt;
2011-09-03 04:38:12 +00:00
m_empty=true;
int suboffset;
SummaryType type;
for (QMap<QDate,QVector<Day *> >::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;
tt*=1000L;
if (!m_minx || tt<m_minx) m_minx=tt;
if (!m_maxx || tt>m_maxx) m_maxx=tt;
total=0;
bool fnd=false;
if (m_graphtype==GT_SESSIONS) {
2011-12-04 09:48:17 +00:00
for (int i=0;i<m_codes.size();i++)
2011-12-05 11:17:28 +00:00
m_goodcodes[i]=true;
for (int i=0;i<d.value().size();i++) { // for each day
day=d.value()[i];
if (!day) continue;
2011-12-02 13:48:05 +00:00
if (day->machine_type()!=m_machinetype) continue;
int ft=qint64(day->first())/1000L;
ft+=tz_offset; // convert to local time
int dz2=ft/86400;
dz2*=86400; // ft = first sessions time, rounded back to midnight..
2011-12-02 13:48:05 +00:00
for (int s=0;s<day->size();s++) {
tmp=(*day)[s]->hours();
m_values[dn][s]=tmp;
total+=tmp;
zt=qint64((*day)[s]->first())/1000L;
zt+=tz_offset;
tmp2=zt-dn*86400;
//zt %= 86400;
tmp2/=3600.0;
//tmp2-=24.0;
//if (zdn>dn2) {
//if (tmp2<12) {
// tmp2-=24;
2011-11-30 09:26:15 +00:00
//m_times[dn][s]=(tmp2+12);
//}/* else {
// tmp2-=12;
2011-11-30 09:26:15 +00:00
//m_times[dn][s]=(tmp2)-12;
//}*/
2011-11-30 09:26:15 +00:00
m_times[dn][s]=tmp2;
if (tmp2 < m_miny)
m_miny=tmp2;
if (tmp2+tmp > m_maxy)
m_maxy=tmp2+tmp;
}
if (total>0) {
m_days[dn]=day;
m_hours[dn]=total;
m_empty=false;
}
}
} else {
for (int j=0;j<m_codes.size();j++) { // for each code slice
code=m_codes[j];
//m_values[dn][0]=0;
if (code==CPAP_Leak) suboffset=PROFILE["IntentionalLeak"].toDouble(); else suboffset=0;
type=m_type[j];
for (int i=0;i<d.value().size();i++) { // for each machine object for this day
day=d.value()[i];
if (day->machine_type()!=m_machinetype) continue;
//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..
m_days[dn]=day;
switch(m_type[j]) {
case ST_AVG: tmp=day->avg(code); break;
case ST_SUM: tmp=day->sum(code); break;
case ST_WAVG: tmp=day->wavg(code); break;
case ST_90P: tmp=day->p90(code); break;
case ST_MIN: tmp=day->min(code); break;
case ST_MAX: tmp=day->max(code); break;
case ST_CNT: tmp=day->count(code); break;
case ST_CPH: tmp=day->cph(code); break;
case ST_SPH: tmp=day->sph(code); break;
case ST_HOURS: tmp=day->hours(); break;
case ST_SESSIONS: tmp=day->size(); break;
case ST_SETMIN: tmp=day->settings_min(code); break;
case ST_SETMAX: tmp=day->settings_max(code); break;
case ST_SETAVG: tmp=day->settings_avg(code); break;
case ST_SETWAVG: tmp=day->settings_wavg(code); break;
case ST_SETSUM: tmp=day->settings_sum(code); break;
default: break;
}
if (suboffset>0) {
tmp-=suboffset;
if (tmp<0) tmp=0;
}
total+=tmp;
m_values[dn][j+1]=tmp;
if (tmp<m_miny) m_miny=tmp;
if (tmp>m_maxy) m_maxy=tmp;
2011-12-05 11:17:28 +00:00
m_goodcodes[j]=true;
fnd=true;
break;
}
}
2011-09-10 06:59:09 +00:00
}
if (fnd) {
if (!m_fday) m_fday=dn;
m_values[dn][0]=total;
m_hours[dn]=day->hours();
if (m_graphtype==GT_BAR) {
if (total<m_miny) m_miny=total;
if (total>m_maxy) m_maxy=total;
}
2011-12-05 11:17:28 +00:00
//m_empty=false;
} else m_hours[dn]=0;
}
}
if (m_graphtype!=GT_SESSIONS)
for (int j=0;j<m_codes.size();j++) { // for each code slice
ChannelID code=m_codes[j];
2011-12-05 11:17:28 +00:00
if (type==ST_HOURS || type==ST_SESSIONS || m_zeros[j]) continue;
2011-12-05 11:17:28 +00:00
for (QMap<QDate,QVector<Day *> >::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;i<d.value().size();i++) { // for each machine object for this day
day=d.value()[i];
if (day->machine_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;
}
2011-12-05 11:17:28 +00:00
if (0<m_miny) m_miny=0;
if (0>m_maxy) m_maxy=0;
m_hours[dn]=day->hours();
}
2011-12-05 11:17:28 +00:00
break;
}
}
}
m_empty=true;
for (int i=0;i<m_goodcodes.size();i++) {
2011-12-05 11:17:28 +00:00
if (m_goodcodes[i]) {
m_empty=false;
break;
}
}
2011-09-10 06:59:09 +00:00
if (m_graphtype==GT_BAR) {
m_miny=0;
}
// m_minx=qint64(QDateTime(PROFILE.FirstDay(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
m_maxx=qint64(QDateTime(PROFILE.LastDay().addDays(1),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
2011-09-02 05:13:07 +00:00
}
2011-06-26 08:30:44 +00:00
QColor brighten(QColor color)
{
int cr,cg,cb;
cr=color.red();
cg=color.green();
cb=color.blue();
if (cr<64) cr=64;
if (cg<64) cg=64;
if (cb<64) cb=64;
cr*=2;
cg*=2;
cb*=2;
if (cr>255) cr=255;
if (cg>255) cg=255;
if (cb>255) cb=255;
return QColor(cr,cg,cb,255);
}
void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
2011-06-26 08:30:44 +00:00
{
if (!m_visible) return;
2011-09-02 05:13:07 +00:00
2011-09-03 12:59:08 +00:00
rtop=top;
GLShortBuffer *outlines=w.lines();
2011-09-02 05:13:07 +00:00
QColor blk=Qt::black;
2011-12-04 14:26:32 +00:00
outlines->add(left, top, left, top+height, left, top+height, left+width,top+height, blk);
outlines->add(left+width,top+height, left+width, top, left+width, top, left, top, blk);
//if (outlines->full()) qDebug() << "WTF??? Outlines full in SummaryChart::paint()";
2011-09-02 02:00:04 +00:00
qint64 minx=w.min_x, maxx=w.max_x;
2011-09-02 05:13:07 +00:00
//qint64 minx=m_minx, maxx=m_maxx;
2011-09-02 02:00:04 +00:00
qint64 xx=maxx - minx;
2011-09-03 00:06:08 +00:00
float days=double(xx)/86400000.0;
2011-09-02 05:13:07 +00:00
2011-09-03 02:11:10 +00:00
EventDataType maxy=m_maxy;
EventDataType miny=m_miny;
/*if (m_codes[0]=="HumidSet") {
int i=1;
}*/
if (w.title()=="Session Times") {
int i=5;
}
2011-09-03 02:51:55 +00:00
w.roundY(miny,maxy);
2011-09-03 02:11:10 +00:00
EventDataType yy=maxy-miny;
EventDataType ymult=float(height-2)/yy;
2011-09-02 02:00:04 +00:00
barw=(float(width)/float(days));
2011-09-02 02:00:04 +00:00
//qint64 ts;
2011-09-02 02:00:04 +00:00
graph=&w;
2011-09-02 05:13:07 +00:00
float px=left;
l_left=w.marginLeft()+gYAxis::Margin;
l_top=w.marginTop();
l_width=width;
l_height=height;
2011-09-02 05:13:07 +00:00
float py;
EventDataType total;
int daynum=0;
EventDataType h,tmp,tmp2;
2011-09-02 05:13:07 +00:00
2011-09-03 01:24:11 +00:00
l_offset=(minx) % 86400000L;
offset=float(l_offset)/86400000.0;
2011-09-03 00:06:08 +00:00
offset*=barw;
px=left-offset;
l_minx=minx;
l_maxx=maxx+86400000L;
2011-09-03 00:06:08 +00:00
//QHash<short, EventDataType> lastvalues;
2011-09-03 02:11:10 +00:00
int total_days=0;
double total_val=0;
//qint64 lastQ=0;
bool lastdaygood=false;
QVector<double> totalcounts;
QVector<double> totalvalues;
//QVector<EventDataType> lastvalues;
QVector<float> lastX;
QVector<short> lastY;
int numcodes=m_codes.size();
totalcounts.resize(numcodes);
totalvalues.resize(numcodes);
//lastvalues.resize(numcodes);
lastX.resize(numcodes);
lastY.resize(numcodes);
int zd=minx/86400000L;
zd--;
QHash<int,QHash<short,EventDataType> >::iterator d=m_values.find(zd);
2011-09-10 06:59:09 +00:00
// if (d==m_values.end()) {
// d=m_values.find(zd--);
// }
lastdaygood=true;
for (int i=0;i<numcodes;i++) {
totalcounts[i]=0;
if (m_type[i]==ST_MIN) {
totalvalues[i]=maxy;
} else if (m_type[i]==ST_MAX) {
totalvalues[i]=miny;
} else {
totalvalues[i]=0;
}
2011-12-05 11:17:28 +00:00
if (!m_goodcodes[i]) continue;
// lastvalues[i]=0;
lastX[i]=px;
if (d!=m_values.end()) {
tmp=d.value()[i+1];
h=tmp*ymult;
} else {
lastdaygood=false;
h=0;
}
lastY[i]=top+height-1-h;
}
2011-09-12 05:09:53 +00:00
Day * day;
EventDataType hours;
2011-09-03 00:06:08 +00:00
for (qint64 Q=minx;Q<=maxx+86400000L;Q+=86400000L) {
zd=Q/86400000L;
2011-09-10 06:59:09 +00:00
d=m_values.find(zd);
2011-09-12 05:09:53 +00:00
qint64 extra=86400000;
2011-09-03 00:06:08 +00:00
if (Q<minx) continue;
2011-09-02 05:13:07 +00:00
if (d!=m_values.end()) {
2011-09-12 05:09:53 +00:00
day=m_days[zd];
hours=m_hours[zd];
2011-09-12 05:09:53 +00:00
int x1=px;
2011-09-13 02:51:50 +00:00
//x1-=(barw/2.0);
int x2=px+barw;
2011-09-03 02:11:10 +00:00
if (x1<left) x1=left;
if (x2>left+width) x2=left+width;
if (x2<x1) continue;
2011-09-03 00:06:08 +00:00
ChannelID code;
2011-09-03 02:11:10 +00:00
if (m_graphtype==GT_SESSIONS) {
int j;
QHash<int,QHash<short,EventDataType> >::iterator times=m_times.find(zd);
QColor col=m_colors[0];
//if (hours<4) col=QColor("#f03030");
if (zd==hl_day) {
col=QColor("gold");
}
QColor col2=brighten(col);
2011-09-03 04:38:12 +00:00
for (j=0;j<d.value().size();j++) {
tmp2=times.value()[j]-miny;
py=top+height-(tmp2*ymult);
tmp=d.value()[j]; // length
//tmp-=miny;
h=tmp*ymult;
quads->add(x1,py,x1,py-h,col);
quads->add(x2,py-h,x2,py,col2);
2011-12-04 14:45:36 +00:00
if (h>0 && barw>2) {
2011-12-04 14:26:32 +00:00
outlines->add(x1,py,x1,py-h,x1,py-h,x2,py-h,blk);
outlines->add(x1,py,x2,py,x2,py,x2,py-h,blk);
} // if (bar
//py-=h;
totalvalues[0]+=tmp;
}
totalcounts[0]++;
totalvalues[1]+=j;
totalcounts[1]++;
total_val+=hours;
total_days++;
} else {
total=d.value()[0];
//if (total>0) {
if (day) {
total_val+=total;
total_days++;
}
py=top+height;
//}
for (QHash<short,EventDataType>::iterator g=d.value().begin();g!=d.value().end();g++) {
short j=g.key();
if (!j) continue;
j--;
2011-12-05 11:17:28 +00:00
if (!m_goodcodes[j]) continue;
tmp=g.value();
QColor col=m_colors[j];
if (m_type[j]==ST_HOURS) {
if (tmp<4) {
col=QColor("#f04040");
}
}
if (zd==hl_day) {
col=QColor("gold");
}
//if (!tmp) continue;
if (m_type[j]==ST_MAX) {
if (tmp>totalvalues[j]) totalvalues[j]=tmp;
} else if (m_type[j]==ST_MIN) {
if (tmp<totalvalues[j]) totalvalues[j]=tmp;
} else {
totalvalues[j]+=tmp*hours;
}
//if (tmp) {
totalcounts[j]+=hours;
//}
tmp-=miny;
h=tmp*ymult; // height in pixels
if (m_graphtype==GT_BAR) {
QColor col2=brighten(col);
quads->add(x1,py,x1,py-h,col);
quads->add(x2,py-h,x2,py,col2);
2011-12-04 14:26:32 +00:00
if (h>0 && barw>2) {
outlines->add(x1,py,x1,py-h,x1,py-h,x2,py-h,blk);
outlines->add(x1,py,x2,py,x2,py,x2,py-h,blk);
if (outlines->full()) qDebug() << "WTF??? Outlines full in SummaryChart::paint()";
} // if (bar
py-=h;
} else if (m_graphtype==GT_LINE) { // if (m_graphtype==GT_BAR
col.setAlpha(128);
short px2=px+barw;
short py2=top+height-1-h;
py2+=j;
if (lastdaygood) {
lines->add(lastX[j],lastY[j],px,py2,m_colors[j]);
lines->add(px,py2,px2,py2,col);
} else {
lines->add(x1,py2,x2,py2,col);
}
lastX[j]=px2;
lastY[j]=py2;
//}
}
} // for(QHash<short
}
lastdaygood=true;
if (Q>maxx+extra) break;
} else lastdaygood=false;
2011-09-02 05:13:07 +00:00
px+=barw;
daynum++;
//lastQ=Q;
2011-09-02 02:00:04 +00:00
}
lines->scissor(left,w.flipY(top+height+2),width+1,height+1);
2011-09-10 07:18:46 +00:00
// Draw Ledgend
2011-09-18 07:42:00 +00:00
px=left+width-3;
py=top-5;
2011-09-10 07:18:46 +00:00
QString a;
2011-09-10 08:26:21 +00:00
int x,y;
2011-09-18 07:42:00 +00:00
2011-09-10 08:47:29 +00:00
for (int j=0;j<m_codes.size();j++) {
2011-12-05 11:38:29 +00:00
//if (totalcounts[j]==0) continue;
2011-12-05 11:17:28 +00:00
if (!m_goodcodes[j]) continue;
2011-12-04 09:48:17 +00:00
ChannelID code=m_codes[j];
a=schema::channel[code].label();
2011-09-10 07:18:46 +00:00
a+=" ";
switch(m_type[j]) {
case ST_WAVG: a+="Avg"; break;
case ST_AVG: a+="Avg"; break;
case ST_90P: a+="90%"; break;
case ST_MIN: a+="Min"; break;
case ST_MAX: a+="Max"; break;
case ST_CPH: a+=""; break;
case ST_SPH: a+="%"; break;
2011-09-10 07:18:46 +00:00
case ST_HOURS: a+="Hours"; break;
2011-10-30 15:25:53 +00:00
case ST_SESSIONS: a+="Sessions"; break;
2011-09-10 08:47:29 +00:00
default:
break;
2011-09-10 07:18:46 +00:00
}
2011-09-18 07:42:00 +00:00
QString val;
float f=0;
2011-12-05 11:38:29 +00:00
if (totalcounts[j]>0) {
if ((m_type[j]==ST_MIN) || (m_type[j]==ST_MAX)) {
f=totalvalues[j];
} else {
f=totalvalues[j]/totalcounts[j];
}
}
2011-09-18 07:42:00 +00:00
if (m_type[j]==ST_HOURS) {
int h=f;
int m=int(f*60) % 60;
val.sprintf("%02i:%02i",h,m);
} else {
val=QString::number(f,'f',2);
}
a+="="+val;
2011-09-10 08:26:21 +00:00
GetTextExtent(a,x,y);
2011-09-18 07:42:00 +00:00
px-=20+x;
w.renderText(a,px+20,py+2);
quads->add(px+5,py-7,px+18,py-7,px+18,py+1,px+5,py+1,m_colors[j]);
//lines->add(px,py,px+20,py,m_colors[j]);
//lines->add(px,py+1,px+20,py+1,m_colors[j]);
2011-09-10 07:18:46 +00:00
}
2011-09-18 07:42:00 +00:00
if (m_graphtype==GT_BAR) {
if (m_type.size()>1) {
2011-09-10 07:36:53 +00:00
float val=total_val/float(total_days);
2011-09-18 14:43:15 +00:00
a=m_label+"="+QString::number(val,'f',2)+" ";
GetTextExtent(a,x,y);
px-=20+x;
w.renderText(a,px+24,py+2);
2011-09-18 07:42:00 +00:00
//
2011-09-10 07:36:53 +00:00
}
2011-06-26 08:30:44 +00:00
}
2011-09-18 14:43:15 +00:00
a="";
/*if (m_graphtype==GT_BAR) {
if (m_type.size()>1) {
float val=total_val/float(total_days);
a+=m_label+"="+QString::number(val,'f',2)+" ";
//
}
}*/
a+="Days="+QString::number(total_days,'f',0);
2011-09-18 07:42:00 +00:00
GetTextExtent(a,x,y);
px-=30+x;
//w.renderText(a,px+24,py+5);
w.renderText(a,left,py+2);
2011-06-26 08:30:44 +00:00
}
2011-10-30 15:25:53 +00:00
QString formatTime(EventDataType v, bool show_seconds=false, bool duration=false,bool show_12hr=false)
{
2011-12-07 12:52:25 +00:00
int h=int(v);
if (!duration) {
h%=24;
} else show_12hr=false;
int m=int(v*60) % 60;
int s=int(v*3600) % 60;
char pm[3]={"am"};
if (show_12hr) {
2011-12-07 12:52:25 +00:00
h>=12 ? pm[0]='p' : pm[0]='a';
h %= 12;
2011-11-30 06:20:08 +00:00
if (h==0) h=12;
} else {
pm[0]=0;
}
if (show_seconds)
return QString().sprintf("%i:%02i:%02i%s",h,m,s,pm);
else
return QString().sprintf("%i:%02i%s",h,m,pm);
}
bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
{
int x=event->x()-l_left;
int y=event->y()-l_top;
if ((x<0 || y<0 || x>l_width || y>l_height)) {
hl_day=-1;
//graph->timedRedraw(2000);
return false;
}
double xx=l_maxx-l_minx;
double xmult=xx/double(l_width+barw);
2011-09-05 13:26:10 +00:00
qint64 mx=ceil(xmult*double(x-offset));
mx+=l_minx;
mx=mx+l_offset;//-86400000L;
int zd=mx/86400000L;
2011-09-12 05:09:53 +00:00
Day * day;
2011-09-12 05:09:53 +00:00
//if (hl_day!=zd) // This line is an optimization
{
hl_day=zd;
graph->Trigger(2000);
QHash<int,QHash<short,EventDataType> >::iterator d=m_values.find(hl_day);
2011-09-13 04:52:30 +00:00
x+=gYAxis::Margin+gGraphView::titleWidth; //graph->m_marginleft+
int y=event->y()+rtop-15;
//QDateTime dt1=QDateTime::fromTime_t(hl_day*86400).toLocalTime();
2011-09-13 05:18:39 +00:00
QDateTime dt2=QDateTime::fromTime_t(hl_day*86400).toUTC();
//QTime t1=dt1.time();
//QTime t2=dt2.time();
2011-09-13 05:18:39 +00:00
QDate dt=dt2.date();
if (d!=m_values.end()) {
2011-09-03 12:59:08 +00:00
day=m_days[zd];
2011-09-18 03:47:53 +00:00
QString z=dt.toString(Qt::SystemLocaleShortDate);
2011-09-10 08:31:28 +00:00
2011-09-12 05:09:53 +00:00
// Day * day=m_days[hl_day];
//EventDataType val;
QString val;
if (m_graphtype==GT_SESSIONS) {
if (m_type[0]==ST_HOURS) {
int t=day->hours()*3600.0;
int h=t/3600;
int m=(t / 60) % 60;
//int s=t % 60;
val.sprintf("%02i:%02i",h,m);
} else
val=QString::number(d.value()[0],'f',2);
z+="\r\n"+m_label+"="+val;
if (m_type[1]==ST_SESSIONS){
z+=" (Sess="+QString::number(day->size(),'f',0)+")";
}
EventDataType v=m_times[zd][0];
int lastt=m_times[zd].size()-1;
if (lastt<0) lastt=0;
z+="\r\nBedtime="+formatTime(v,false,false,true);
v=m_times[zd][lastt]+m_values[zd][lastt];
z+="\r\nWaketime="+formatTime(v,false,false,true);
} else
if (m_graphtype==GT_BAR){
if (m_type[0]==ST_HOURS) {
int t=d.value()[0]*3600.0;
int h=t/3600;
int m=(t / 60) % 60;
//int s=t % 60;
2011-09-13 04:45:40 +00:00
val.sprintf("%02i:%02i",h,m);
2011-09-18 03:47:53 +00:00
} else
val=QString::number(d.value()[0],'f',2);
z+="\r\n"+m_label+"="+val;
2011-09-18 15:43:14 +00:00
//z+="\r\nMode="+QString::number(day->settings_min("FlexSet"),'f',0);
2011-09-18 03:47:53 +00:00
2011-09-10 08:31:28 +00:00
} else {
2011-09-18 03:47:53 +00:00
QString a;
for (int i=0;i<m_type.size();i++) {
2011-12-05 11:38:29 +00:00
if (!m_goodcodes[i]) continue;
2011-09-18 03:47:53 +00:00
switch(m_type[i]) {
case ST_WAVG: a="W-avg"; break;
case ST_AVG: a="Avg"; break;
case ST_90P: a="90%"; break;
case ST_MIN: a="Min"; break;
case ST_MAX: a="Max"; break;
case ST_CPH: a=""; break;
case ST_SPH: a="%"; break;
case ST_HOURS: a="Hours"; break;
2011-10-30 15:25:53 +00:00
case ST_SESSIONS: a="Sessions"; break;
2011-09-18 03:47:53 +00:00
default:
break;
}
2011-10-30 15:25:53 +00:00
if (m_type[i]==ST_SESSIONS) {
val=QString::number(d.value()[i+1],'f',0);
z+="\r\n"+a+"="+val;
} else {
if (day && (day->channelExists(m_codes[i]) || day->settingExists(m_codes[i]))) {
schema::Channel & chan=schema::channel[m_codes[i]];
val=QString::number(d.value()[i+1],'f',2);
z+="\r\n"+chan.label()+" "+a+"="+val;
}
2011-09-18 03:47:53 +00:00
}
}
2011-09-10 08:31:28 +00:00
}
graph->ToolTip(z,x,y-10,2200);
2011-09-03 12:59:08 +00:00
return true;
2011-09-13 04:52:30 +00:00
} else {
QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\nNo Data";
graph->ToolTip(z,x,y-10,2200);
return true;
2011-09-03 12:59:08 +00:00
}
}
return false;
}
bool SummaryChart::mousePressEvent(QMouseEvent * event)
{
2011-10-28 03:50:03 +00:00
if (event->modifiers() & Qt::ShiftModifier) {
//qDebug() << "Jump to daily view?";
return true;
}
Q_UNUSED(event)
return false;
}
bool SummaryChart::keyPressEvent(QKeyEvent * event)
{
Q_UNUSED(event)
//qDebug() << "Summarychart Keypress";
return false;
}
#include "mainwindow.h"
extern MainWindow *mainwin;
bool SummaryChart::mouseReleaseEvent(QMouseEvent * event)
{
2011-10-28 03:50:03 +00:00
if (event->modifiers() & Qt::ShiftModifier) {
2011-10-28 05:15:37 +00:00
if (hl_day<0) {
mouseMoveEvent(event);
}
if (hl_day>0) {
QDateTime d=QDateTime::fromTime_t(hl_day*86400).toUTC();
mainwin->getDaily()->LoadDate(d.date());
mainwin->JumpDaily();
//qDebug() << "Jump to daily view?" << d;
return true;
}
}
Q_UNUSED(event)
hl_day=-1;
graph->timedRedraw(2000);
return false;
}