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>
2011-09-03 10:09:22 +00:00
# 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 ;
2011-10-05 07:41:56 +00:00
SummaryChart : : SummaryChart ( QString label , GraphType type )
2011-12-21 17:00:19 +00:00
: Layer ( NoChannel ) , m_label ( label ) , m_graphtype ( type )
2011-06-26 08:30:44 +00:00
{
2011-10-21 05:50:31 +00:00
//QColor color=Qt::black;
2012-01-02 15:34:17 +00:00
addVertexBuffer ( quads = new gVertexBuffer ( 20000 , GL_QUADS ) ) ;
addVertexBuffer ( lines = new gVertexBuffer ( 20000 , GL_LINES ) ) ;
2011-09-02 02:00:04 +00:00
quads - > forceAntiAlias ( true ) ;
2012-01-03 00:45:39 +00:00
lines - > setSize ( 1.5 ) ;
//lines->setBlendFunc(GL_SRC_COLOR, GL_ZERO);
//lines->forceAntiAlias(false);
2011-12-28 04:42:02 +00:00
2011-09-02 05:13:07 +00:00
m_empty = true ;
2011-09-03 10:09:22 +00:00
hl_day = - 1 ;
2011-10-02 05:06:58 +00:00
m_machinetype = MT_CPAP ;
2011-11-30 06:01:38 +00:00
2011-12-06 23:49:26 +00:00
QDateTime d1 = QDateTime : : currentDateTime ( ) ;
QDateTime d2 = d1 ;
d1 . setTimeSpec ( Qt : : UTC ) ;
tz_offset = d2 . secsTo ( d1 ) ;
2011-11-30 06:01:38 +00:00
tz_hours = tz_offset / 3600.0 ;
2011-06-26 08:30:44 +00:00
}
2011-09-10 04:20:45 +00:00
SummaryChart : : ~ SummaryChart ( )
2011-06-26 08:30:44 +00:00
{
}
2011-09-10 04:20:45 +00:00
void SummaryChart : : SetDay ( Day * nullday )
2011-09-02 05:13:07 +00:00
{
2011-09-10 04:20:45 +00:00
Day * day = nullday ;
Layer : : SetDay ( day ) ;
m_values . clear ( ) ;
2011-11-30 06:01:38 +00:00
m_times . clear ( ) ;
2011-09-12 05:09:53 +00:00
m_days . clear ( ) ;
2011-11-30 06:01:38 +00:00
m_hours . clear ( ) ;
2011-12-01 03:45:49 +00:00
m_goodcodes . clear ( ) ;
2011-11-30 06:01:38 +00:00
m_miny = 999999999 ;
m_maxy = - 999999999 ;
2011-09-10 04:20:45 +00:00
m_minx = 0 ;
m_maxx = 0 ;
2011-12-28 05:09:26 +00:00
2011-09-10 04:20:45 +00:00
int dn ;
2011-11-30 06:01:38 +00:00
EventDataType tmp , tmp2 , total ;
2011-09-10 04:20:45 +00:00
ChannelID code ;
2012-01-01 14:14:18 +00:00
if ( m_label = = STR_TR_Pressure ) {
CPAPMode mode = ( CPAPMode ) ( int ) PROFILE . calcSettingsMax ( CPAP_Mode , MT_CPAP , PROFILE . FirstDay ( MT_CPAP ) , PROFILE . LastDay ( MT_CPAP ) ) ;
m_codes . clear ( ) ;
m_colors . clear ( ) ;
m_type . clear ( ) ;
2012-01-03 05:40:35 +00:00
//m_zeros.clear();
2012-01-01 14:14:18 +00:00
m_typeval . clear ( ) ;
if ( mode > = MODE_ASV ) {
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_EPAP , QColor ( " green " ) , ST_SETMIN ) ;
2012-01-01 14:14:18 +00:00
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_IPAPLo , QColor ( " light blue " ) , ST_SETMIN ) ;
addSlice ( CPAP_IPAP , QColor ( " cyan " ) , ST_PERC , 0.5 ) ;
addSlice ( CPAP_IPAP , QColor ( " dark cyan " ) , ST_PERC , 0.95 ) ;
//addSlice(CPAP_IPAP,QColor("light blue"),ST_PERC,0.95);
addSlice ( CPAP_IPAPHi , QColor ( " blue " ) , ST_SETMAX ) ;
2012-01-01 14:14:18 +00:00
} else if ( mode > = MODE_BIPAP ) {
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_EPAP , QColor ( " green " ) , ST_SETMIN ) ;
addSlice ( CPAP_EPAP , QColor ( " light green " ) , ST_PERC , 0.95 ) ;
2012-01-03 07:15:02 +00:00
addSlice ( CPAP_IPAP , QColor ( " light cyan " ) , ST_PERC , 0.5 ) ;
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_IPAP , QColor ( " light blue " ) , ST_PERC , 0.95 ) ;
addSlice ( CPAP_IPAP , QColor ( " blue " ) , ST_SETMAX ) ;
2012-01-01 14:14:18 +00:00
} else if ( mode > = MODE_APAP ) {
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_PressureMin , QColor ( " orange " ) , ST_SETMIN ) ;
2012-01-03 07:15:02 +00:00
addSlice ( CPAP_Pressure , QColor ( " dark green " ) , ST_PERC , 0.5 ) ;
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_Pressure , QColor ( " grey " ) , ST_PERC , 0.95 ) ;
addSlice ( CPAP_PressureMax , QColor ( " red " ) , ST_SETMAX ) ;
2012-01-01 14:14:18 +00:00
} else {
2012-01-03 05:40:35 +00:00
addSlice ( CPAP_Pressure , QColor ( " dark green " ) , ST_SETWAVG ) ;
2012-01-01 14:14:18 +00:00
}
}
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 ;
}
2012-01-01 14:14:18 +00:00
2011-09-10 04:20:45 +00:00
m_fday = 0 ;
2011-11-30 06:01:38 +00:00
qint64 tt , zt ;
2011-09-03 04:38:12 +00:00
m_empty = true ;
2011-12-28 05:09:26 +00:00
if ( m_graphtype = = GT_SESSIONS ) {
if ( PROFILE . countDays ( MT_CPAP , PROFILE . FirstDay ( MT_CPAP ) , PROFILE . LastDay ( MT_CPAP ) ) = = 0 )
return ;
}
2011-09-23 03:54:48 +00:00
int suboffset ;
2011-09-10 04:20:45 +00:00
SummaryType type ;
2011-12-08 04:10:35 +00:00
for ( QMap < QDate , QList < Day * > > : : iterator d = PROFILE . daylist . begin ( ) ; d ! = PROFILE . daylist . end ( ) ; d + + ) {
2011-09-10 04:20:45 +00:00
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 ;
2011-11-30 06:01:38 +00:00
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 ;
2011-11-30 06:01:38 +00:00
for ( int i = 0 ; i < d . value ( ) . size ( ) ; i + + ) { // for each day
2011-12-08 04:10:35 +00:00
day = d . value ( ) . at ( i ) ;
2011-11-30 06:01:38 +00:00
if ( ! day ) continue ;
2011-12-02 13:48:05 +00:00
if ( day - > machine_type ( ) ! = m_machinetype ) continue ;
2011-12-06 23:49:26 +00:00
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
2011-11-30 06:01:38 +00:00
for ( int s = 0 ; s < day - > size ( ) ; s + + ) {
2011-12-28 12:03:48 +00:00
Session * sess = ( * day ) [ s ] ;
if ( ! sess - > enabled ( ) ) continue ;
tmp = sess - > hours ( ) ;
2011-11-30 06:01:38 +00:00
m_values [ dn ] [ s ] = tmp ;
total + = tmp ;
2011-12-28 12:03:48 +00:00
zt = qint64 ( sess - > first ( ) ) / 1000L ;
2011-11-30 06:01:38 +00:00
zt + = tz_offset ;
2011-12-06 23:49:26 +00:00
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);
2011-12-06 23:49:26 +00:00
//}/* else {
// tmp2-=12;
2011-11-30 09:26:15 +00:00
//m_times[dn][s]=(tmp2)-12;
2011-12-06 23:49:26 +00:00
//}*/
2011-11-30 09:26:15 +00:00
m_times [ dn ] [ s ] = tmp2 ;
2011-09-10 04:20:45 +00:00
2011-12-06 23:49:26 +00:00
if ( tmp2 < m_miny )
m_miny = tmp2 ;
if ( tmp2 + tmp > m_maxy )
m_maxy = tmp2 + tmp ;
2011-11-30 06:01:38 +00:00
}
if ( total > 0 ) {
m_days [ dn ] = day ;
m_hours [ dn ] = total ;
m_empty = false ;
2011-09-10 04:20:45 +00:00
}
}
2011-11-30 06:01:38 +00:00
} else {
for ( int j = 0 ; j < m_codes . size ( ) ; j + + ) { // for each code slice
code = m_codes [ j ] ;
2011-12-04 08:54:39 +00:00
//m_values[dn][0]=0;
2011-12-21 12:47:47 +00:00
//if (code==CPAP_Leak) suboffset=PROFILE.cpap->IntentionalLeak(); else
suboffset = 0 ;
2011-11-30 06:01:38 +00:00
type = m_type [ j ] ;
2011-12-24 06:20:07 +00:00
EventDataType typeval = m_typeval [ j ] ;
2011-12-04 08:24:52 +00:00
for ( int i = 0 ; i < d . value ( ) . size ( ) ; i + + ) { // for each machine object for this day
2011-11-30 06:01:38 +00:00
day = d . value ( ) [ i ] ;
2012-01-01 14:14:18 +00:00
CPAPMode mode = ( CPAPMode ) ( int ) day - > settings_max ( CPAP_Mode ) ;
2011-11-30 06:01:38 +00:00
if ( day - > machine_type ( ) ! = m_machinetype ) continue ;
2011-12-04 08:54:39 +00:00
//m_values[dn][j+1]=0;
2011-12-04 08:24:52 +00:00
2011-12-10 12:14:48 +00:00
bool hascode = //day->channelHasData(code) ||
type = = ST_HOURS | |
type = = ST_SESSIONS | |
day - > settingExists ( code ) | |
day - > hasData ( code , type ) ;
2012-01-01 14:14:18 +00:00
if ( code = = CPAP_Pressure ) {
if ( mode = = MODE_CPAP ) {
2012-01-03 07:15:02 +00:00
hascode = false ;
if ( ( type = = ST_PERC ) & & ( m_typeval [ j ] = = 0.5 ) ) {
2012-01-01 14:14:18 +00:00
type = ST_SETWAVG ;
2012-01-03 07:15:02 +00:00
hascode = true ;
2012-01-01 14:14:18 +00:00
}
} else {
type = m_type [ j ] ;
}
}
2011-12-10 12:14:48 +00:00
if ( hascode ) {
2011-11-30 06:01:38 +00:00
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 ;
2011-12-24 06:20:07 +00:00
case ST_PERC : tmp = day - > percentile ( code , typeval ) ; break ;
2011-12-17 14:38:15 +00:00
case ST_MIN : tmp = day - > Min ( code ) ; break ;
case ST_MAX : tmp = day - > Max ( code ) ; break ;
2011-11-30 06:01:38 +00:00
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 ;
}
2011-12-01 03:45:49 +00:00
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 ;
2011-12-04 08:54:39 +00:00
fnd = true ;
2011-12-01 03:45:49 +00:00
break ;
2011-11-30 06:01:38 +00:00
}
}
2011-09-10 06:59:09 +00:00
}
2011-11-30 06:01:38 +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;
2012-01-01 14:14:18 +00:00
} // else m_hours[dn]=0;
2011-11-30 06:01:38 +00:00
}
2011-09-10 04:20:45 +00:00
}
2012-01-01 14:14:18 +00:00
/* if (m_graphtype!=GT_SESSIONS)
2011-12-04 08:24:52 +00:00
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-04 08:54:39 +00:00
2011-12-08 04:10:35 +00:00
for ( QMap < QDate , QList < Day * > > : : iterator d = PROFILE . daylist . begin ( ) ; d ! = PROFILE . daylist . end ( ) ; d + + ) {
2011-12-05 11:17:28 +00:00
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
2011-12-08 04:10:35 +00:00
day = d . value ( ) . at ( i ) ;
2011-12-05 11:17:28 +00:00
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-04 08:54:39 +00:00
}
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-04 08:54:39 +00:00
}
2011-12-05 11:17:28 +00:00
break ;
}
2011-12-04 12:44:09 +00:00
}
2012-01-01 14:14:18 +00:00
} */
2011-12-04 12:44:09 +00:00
m_empty = true ;
for ( int i = 0 ; i < m_goodcodes . size ( ) ; i + + ) {
2011-12-05 11:17:28 +00:00
if ( m_goodcodes [ i ] ) {
2011-12-04 08:54:39 +00:00
m_empty = false ;
2011-12-04 12:44:09 +00:00
break ;
2011-12-04 08:54:39 +00:00
}
2011-12-04 08:24:52 +00:00
}
2011-09-10 06:59:09 +00:00
if ( m_graphtype = = GT_BAR ) {
m_miny = 0 ;
}
2011-10-05 07:41:56 +00:00
// m_minx=qint64(QDateTime(PROFILE.FirstDay(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
2011-12-25 13:58:07 +00:00
m_maxx = qint64 ( QDateTime ( PROFILE . LastDay ( ) , QTime ( 23 , 59 , 0 ) , Qt : : UTC ) . toTime_t ( ) ) * 1000L ;
2011-09-10 04:20:45 +00:00
2011-09-02 05:13:07 +00:00
}
2011-06-26 08:30:44 +00:00
2011-09-10 04:20:45 +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 ;
2012-01-02 15:34:17 +00:00
gVertexBuffer * outlines = w . lines ( ) ;
outlines - > setColor ( Qt : : black ) ;
outlines - > add ( left , top , left , top + height , left , top + height , left + width , top + height ) ;
outlines - > add ( left + width , top + height , left + width , top , left + width , top , left , top ) ;
2011-12-04 14:26:32 +00:00
//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 ;
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
2011-09-03 10:09:22 +00:00
barw = ( float ( width ) / float ( days ) ) ;
2011-09-02 02:00:04 +00:00
2011-10-21 05:50:31 +00:00
//qint64 ts;
2011-09-02 02:00:04 +00:00
2011-09-03 10:09:22 +00:00
graph = & w ;
2011-09-02 05:13:07 +00:00
float px = left ;
2011-12-06 14:39:14 +00:00
l_left = w . marginLeft ( ) + gYAxis : : Margin ;
l_top = w . marginTop ( ) ;
2011-09-03 10:09:22 +00:00
l_width = width ;
l_height = height ;
2011-09-02 05:13:07 +00:00
float py ;
EventDataType total ;
int daynum = 0 ;
2011-11-30 06:01:38 +00:00
EventDataType h , tmp , tmp2 ;
2011-09-02 05:13:07 +00:00
2011-09-03 01:24:11 +00:00
2011-09-03 10:09:22 +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 ;
2011-09-03 10:09:22 +00:00
l_minx = minx ;
l_maxx = maxx + 86400000L ;
2011-09-03 00:06:08 +00:00
2011-09-10 04:20:45 +00:00
//QHash<short, EventDataType> lastvalues;
2011-09-03 02:11:10 +00:00
int total_days = 0 ;
double total_val = 0 ;
2012-01-03 04:36:47 +00:00
double total_hours = 0 ;
2011-10-21 05:50:31 +00:00
//qint64 lastQ=0;
2011-09-10 04:20:45 +00:00
bool lastdaygood = false ;
2011-10-07 05:28:35 +00:00
QVector < double > totalcounts ;
QVector < double > totalvalues ;
2011-09-21 15:08:38 +00:00
//QVector<EventDataType> lastvalues;
2011-09-10 04:20:45 +00:00
QVector < float > lastX ;
QVector < short > lastY ;
int numcodes = m_codes . size ( ) ;
totalcounts . resize ( numcodes ) ;
totalvalues . resize ( numcodes ) ;
2011-09-21 15:08:38 +00:00
//lastvalues.resize(numcodes);
2011-09-10 04:20:45 +00:00
lastX . resize ( numcodes ) ;
lastY . resize ( numcodes ) ;
int zd = minx / 86400000L ;
zd - - ;
QHash < int , QHash < short , EventDataType > > : : iterator d = m_values . find ( zd ) ;
2012-01-01 14:14:18 +00:00
QVector < bool > goodcodes ;
goodcodes . resize ( m_goodcodes . size ( ) ) ;
2011-09-10 06:59:09 +00:00
// if (d==m_values.end()) {
// d=m_values.find(zd--);
// }
2011-09-10 04:20:45 +00:00
lastdaygood = true ;
for ( int i = 0 ; i < numcodes ; i + + ) {
totalcounts [ i ] = 0 ;
2012-01-03 05:40:35 +00:00
// Set min and max to the opposite largest starting value
if ( ( m_type [ i ] = = ST_MIN ) | | ( m_type [ i ] = = ST_SETMIN ) ) {
2011-09-21 15:08:38 +00:00
totalvalues [ i ] = maxy ;
2012-01-03 05:40:35 +00:00
} else if ( ( m_type [ i ] = = ST_MAX ) | | ( m_type [ i ] = = ST_SETMAX ) ) {
2011-09-21 15:08:38 +00:00
totalvalues [ i ] = miny ;
} else {
totalvalues [ i ] = 0 ;
}
2012-01-03 05:40:35 +00:00
// Turn off legend display.. It will only display if it's turned back on during draw.
2012-01-01 14:14:18 +00:00
goodcodes [ i ] = false ;
2012-01-03 05:40:35 +00:00
2011-12-05 11:17:28 +00:00
if ( ! m_goodcodes [ i ] ) continue ;
2011-09-21 15:08:38 +00:00
// lastvalues[i]=0;
2011-09-10 04:20:45 +00:00
lastX [ i ] = px ;
2012-01-01 14:14:18 +00:00
if ( d ! = m_values . end ( ) & & d . value ( ) . contains ( i + 1 ) ) {
2011-09-10 04:20:45 +00:00
tmp = d . value ( ) [ i + 1 ] ;
h = tmp * ymult ;
} else {
lastdaygood = false ;
h = 0 ;
}
lastY [ i ] = top + height - 1 - h ;
}
2011-12-20 03:22:45 +00:00
float compliance_hours = 0 ;
2011-12-21 12:47:47 +00:00
if ( PROFILE . cpap - > showComplianceInfo ( ) ) {
compliance_hours = PROFILE . cpap - > complianceHours ( ) ;
2011-12-20 03:22:45 +00:00
}
2011-09-10 04:20:45 +00:00
2011-12-21 00:47:35 +00:00
int incompliant = 0 ;
2011-09-12 05:09:53 +00:00
Day * day ;
2011-10-07 05:28:35 +00:00
EventDataType hours ;
2011-12-28 08:47:02 +00:00
short px2 , py2 ;
2011-09-03 00:06:08 +00:00
for ( qint64 Q = minx ; Q < = maxx + 86400000L ; Q + = 86400000L ) {
2011-09-10 04:20:45 +00:00
zd = Q / 86400000L ;
2011-09-10 06:59:09 +00:00
d = m_values . find ( zd ) ;
2011-09-12 05:09:53 +00:00
2011-09-10 04:20:45 +00:00
qint64 extra = 86400000 ;
2012-01-01 14:14:18 +00:00
if ( Q < minx )
goto jumpnext ;
//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 ] ;
2012-01-01 14:14:18 +00:00
if ( ! m_hours . contains ( zd ) )
goto jumpnext ;
//continue;
2011-10-07 05:28:35 +00:00
hours = m_hours [ zd ] ;
2011-09-12 05:09:53 +00:00
2011-09-13 03:38:02 +00:00
int x1 = px ;
2011-09-13 02:51:50 +00:00
//x1-=(barw/2.0);
2011-09-13 03:38:02 +00:00
int x2 = px + barw ;
2011-09-03 02:11:10 +00:00
if ( x1 < left ) x1 = left ;
if ( x2 > left + width ) x2 = left + width ;
2012-01-01 14:14:18 +00:00
if ( x2 < x1 )
goto jumpnext ;
//continue;
2012-01-02 15:34:17 +00:00
//ChannelID code;
2011-09-03 02:11:10 +00:00
2011-11-30 06:01:38 +00:00
if ( m_graphtype = = GT_SESSIONS ) {
int j ;
QHash < int , QHash < short , EventDataType > > : : iterator times = m_times . find ( zd ) ;
2011-11-30 09:08:45 +00:00
QColor col = m_colors [ 0 ] ;
2011-12-20 03:22:45 +00:00
//if (hours<compliance_hours) col=QColor("#f03030");
2011-11-30 09:08:45 +00:00
if ( zd = = hl_day ) {
col = QColor ( " gold " ) ;
}
2012-01-02 15:34:17 +00:00
GLuint col1 = col . rgba ( ) ;
GLuint col2 = brighten ( col ) . rgba ( ) ;
outlines - > setColor ( Qt : : black ) ;
2011-09-03 04:38:12 +00:00
2012-01-03 05:40:35 +00:00
if ( d . value ( ) . size ( ) > 0 ) {
for ( int i = 0 ; i < goodcodes . size ( ) ; i + + ) {
goodcodes [ i ] = true ;
}
}
2011-11-30 06:01:38 +00:00
for ( j = 0 ; j < d . value ( ) . size ( ) ; j + + ) {
2011-12-06 23:49:26 +00:00
tmp2 = times . value ( ) [ j ] - miny ;
2011-11-30 06:01:38 +00:00
py = top + height - ( tmp2 * ymult ) ;
2011-09-10 04:20:45 +00:00
2011-11-30 06:01:38 +00:00
tmp = d . value ( ) [ j ] ; // length
2011-11-30 09:08:45 +00:00
2011-11-30 06:01:38 +00:00
//tmp-=miny;
h = tmp * ymult ;
2011-09-10 04:20:45 +00:00
2012-01-02 15:34:17 +00:00
quads - > add ( x1 , py , x1 , py - h , x2 , py - h , x2 , py , col1 , col2 ) ;
2011-12-04 14:45:36 +00:00
if ( h > 0 & & barw > 2 ) {
2012-01-02 15:34:17 +00:00
outlines - > add ( x1 , py , x1 , py - h , x1 , py - h , x2 , py - h ) ;
outlines - > add ( x1 , py , x2 , py , x2 , py , x2 , py - h ) ;
2011-09-10 04:20:45 +00:00
} // if (bar
2011-11-30 06:01:38 +00:00
//py-=h;
totalvalues [ 0 ] + = tmp ;
}
totalcounts [ 0 ] + + ;
totalvalues [ 1 ] + = j ;
totalcounts [ 1 ] + + ;
total_val + = hours ;
total_days + + ;
} else {
2012-01-01 14:14:18 +00:00
if ( ! d . value ( ) . contains ( 0 ) ) goto jumpnext ;
2011-11-30 06:01:38 +00:00
total = d . value ( ) [ 0 ] ;
//if (total>0) {
if ( day ) {
2012-01-03 04:36:47 +00:00
EventDataType hours = m_hours [ zd ] ;
total_val + = total * hours ;
total_hours + = hours ;
2011-11-30 06:01:38 +00:00
total_days + + ;
}
py = top + height ;
//}
2012-01-01 14:14:18 +00:00
bool good ;
2012-01-03 05:40:35 +00:00
SummaryType type ;
2011-11-30 06:01:38 +00:00
for ( QHash < short , EventDataType > : : iterator g = d . value ( ) . begin ( ) ; g ! = d . value ( ) . end ( ) ; g + + ) {
short j = g . key ( ) ;
if ( ! j ) continue ;
j - - ;
2012-01-01 14:14:18 +00:00
good = m_goodcodes [ j ] ;
if ( ! good )
continue ;
2012-01-03 05:40:35 +00:00
type = m_type [ j ] ;
// code was actually used (to signal the display of the legend summary)
2012-01-01 14:14:18 +00:00
goodcodes [ j ] = good ;
2011-11-30 06:01:38 +00:00
2011-11-30 09:08:45 +00:00
tmp = g . value ( ) ;
2011-11-30 06:01:38 +00:00
QColor col = m_colors [ j ] ;
2012-01-03 05:40:35 +00:00
if ( type = = ST_HOURS ) {
2011-12-21 00:47:35 +00:00
if ( tmp < compliance_hours ) {
col = QColor ( " #f04040 " ) ;
incompliant + + ;
}
2011-11-30 09:08:45 +00:00
}
2011-11-30 06:01:38 +00:00
if ( zd = = hl_day ) {
col = QColor ( " gold " ) ;
2011-09-10 04:20:45 +00:00
}
2011-11-30 06:01:38 +00:00
//if (!tmp) continue;
2012-01-03 05:40:35 +00:00
if ( ( type = = ST_MAX ) | | ( type = = ST_SETMAX ) ) {
if ( totalvalues [ j ] < tmp )
totalvalues [ j ] = tmp ;
} else if ( ( type = = ST_MIN ) | | ( type = = ST_SETMIN ) ) {
if ( totalvalues [ j ] > tmp )
totalvalues [ j ] = tmp ;
2011-11-30 06:01:38 +00:00
} else {
totalvalues [ j ] + = tmp * hours ;
}
//if (tmp) {
totalcounts [ j ] + = hours ;
2011-09-10 04:20:45 +00:00
//}
2011-11-30 06:01:38 +00:00
tmp - = miny ;
h = tmp * ymult ; // height in pixels
if ( m_graphtype = = GT_BAR ) {
2012-01-02 15:34:17 +00:00
GLuint col1 = col . rgba ( ) ;
GLuint col2 = brighten ( col ) . rgba ( ) ;
2011-11-30 06:01:38 +00:00
2012-01-02 15:34:17 +00:00
quads - > add ( x1 , py , x1 , py - h , col1 ) ;
2011-11-30 06:01:38 +00:00
quads - > add ( x2 , py - h , x2 , py , col2 ) ;
2011-12-04 14:26:32 +00:00
if ( h > 0 & & barw > 2 ) {
2012-01-02 15:34:17 +00:00
outlines - > add ( x1 , py , x1 , py - h , x1 , py - h , x2 , py - h ) ;
outlines - > add ( x1 , py , x2 , py , x2 , py , x2 , py - h ) ;
2011-12-04 14:26:32 +00:00
if ( outlines - > full ( ) ) qDebug ( ) < < " WTF??? Outlines full in SummaryChart::paint() " ;
2011-11-30 06:01:38 +00:00
} // if (bar
py - = h ;
} else if ( m_graphtype = = GT_LINE ) { // if (m_graphtype==GT_BAR
2012-01-02 21:52:13 +00:00
//col.setAlpha(128);
2012-01-02 15:34:17 +00:00
GLuint col1 = col . rgba ( ) ;
GLuint col2 = m_colors [ j ] . rgba ( ) ;
2011-12-28 08:47:02 +00:00
px2 = px + barw ;
py2 = ( top + height - 2 ) - h ;
2012-01-01 14:14:18 +00:00
//py2+=j;
// If more than 1 day between records, skip the vertical crud.
if ( ( px2 - lastX [ j ] ) > barw + 1 ) {
lastdaygood = false ;
}
2011-11-30 06:01:38 +00:00
if ( lastdaygood ) {
2012-01-02 15:34:17 +00:00
if ( lastY [ j ] ! = py2 ) { // vertical line
lines - > add ( lastX [ j ] , lastY [ j ] , px , py2 , col2 ) ;
}
lines - > add ( px - 1 , py2 , px2 + 1 , py2 , col1 ) ;
2011-11-30 06:01:38 +00:00
} else {
2012-01-02 15:34:17 +00:00
lines - > add ( x1 - 1 , py2 , x2 + 1 , py2 , col1 ) ;
2011-11-30 06:01:38 +00:00
}
lastX [ j ] = px2 ;
lastY [ j ] = py2 ;
//}
}
} // for(QHash<short
}
2011-09-10 04:20:45 +00:00
lastdaygood = true ;
if ( Q > maxx + extra ) break ;
2011-12-21 00:47:35 +00:00
} else {
2011-12-25 13:58:07 +00:00
if ( Q < maxx )
2011-12-21 00:47:35 +00:00
incompliant + + ;
lastdaygood = false ;
}
2012-01-01 14:14:18 +00:00
jumpnext :
2011-09-02 05:13:07 +00:00
px + = barw ;
daynum + + ;
2011-10-21 05:50:31 +00:00
//lastQ=Q;
2011-09-02 02:00:04 +00:00
}
2011-09-10 04:20:45 +00:00
2011-12-28 04:21:10 +00:00
lines - > scissor ( left , w . flipY ( top + height + 2 ) , width + 1 , height + 2 ) ;
2011-09-10 04:20:45 +00:00
2011-09-10 07:18:46 +00:00
// Draw Ledgend
2011-09-18 07:42:00 +00:00
px = left + width - 3 ;
2011-12-04 08:24:52 +00:00
py = top - 5 ;
2012-01-03 05:40:35 +00:00
int legendx = px ;
2011-12-13 11:36:42 +00:00
QString a , b ;
2011-09-10 08:26:21 +00:00
int x , y ;
2011-09-18 07:42:00 +00:00
2011-12-21 00:47:35 +00:00
bool ishours = false ;
2012-01-03 05:40:35 +00:00
int good = 0 ;
2011-09-10 08:47:29 +00:00
for ( int j = 0 ; j < m_codes . size ( ) ; j + + ) {
2012-01-01 14:14:18 +00:00
if ( ! goodcodes [ j ] ) continue ;
2012-01-03 05:40:35 +00:00
good + + ;
SummaryType type = m_type [ j ] ;
2011-12-04 09:48:17 +00:00
ChannelID code = m_codes [ j ] ;
2011-12-24 06:20:07 +00:00
EventDataType tval = m_typeval [ j ] ;
2012-01-03 05:40:35 +00:00
switch ( type ) {
2011-12-13 11:36:42 +00:00
case ST_WAVG : b = " Avg " ; break ;
case ST_AVG : b = " Avg " ; break ;
case ST_90P : b = " 90% " ; break ;
2012-01-03 07:15:02 +00:00
case ST_PERC :
if ( tval > = 0.99 ) b = " Max " ;
else if ( tval = = 0.5 ) b = " Med " ;
else b = QString ( " %1% " ) . arg ( tval * 100.0 , 0 , ' f ' , 0 ) ;
break ;
//b=QString("%1%").arg(tval*100.0,0,'f',0); break;
2011-12-13 11:36:42 +00:00
case ST_MIN : b = " Min " ; break ;
case ST_MAX : b = " Max " ; break ;
2012-01-01 14:14:18 +00:00
case ST_SETMIN : b = " Min " ; break ;
case ST_SETMAX : b = " Max " ; break ;
2011-12-13 11:36:42 +00:00
case ST_CPH : b = " " ; break ;
case ST_SPH : b = " % " ; break ;
2011-12-21 14:24:09 +00:00
case ST_HOURS : b = STR_UNIT_Hours ; break ;
2011-12-13 11:36:42 +00:00
case ST_SESSIONS : b = " Sessions " ; break ;
2011-10-30 15:25:53 +00:00
2011-09-10 08:47:29 +00:00
default :
2012-01-01 14:14:18 +00:00
b = " " ;
2011-09-10 08:47:29 +00:00
break ;
2011-09-10 07:18:46 +00:00
}
2011-12-13 11:36:42 +00:00
a = schema : : channel [ code ] . label ( ) ;
if ( a = = w . title ( ) & & ! b . isEmpty ( ) ) a = b ; else a + = " " + b ;
2011-09-18 07:42:00 +00:00
QString val ;
2011-09-21 15:08:38 +00:00
float f = 0 ;
2011-12-05 11:38:29 +00:00
if ( totalcounts [ j ] > 0 ) {
2012-01-03 05:40:35 +00:00
if ( ( type = = ST_MIN ) | | ( type = = ST_MAX ) | | ( type = = ST_SETMIN ) | | ( type = = ST_SETMAX ) ) {
2011-12-05 11:38:29 +00:00
f = totalvalues [ j ] ;
} else {
f = totalvalues [ j ] / totalcounts [ j ] ;
}
2011-09-21 15:08:38 +00:00
}
2012-01-03 05:40:35 +00:00
if ( type = = ST_HOURS ) {
2011-09-18 07:42:00 +00:00
int h = f ;
int m = int ( f * 60 ) % 60 ;
val . sprintf ( " %02i:%02i " , h , m ) ;
2011-12-21 00:47:35 +00:00
ishours = true ;
2011-09-18 07:42:00 +00:00
} else {
val = QString : : number ( f , ' f ' , 2 ) ;
}
a + = " = " + val ;
2012-01-03 05:40:35 +00:00
//GetTextExtent(a,x,y);
//float wt=20*w.printScaleX();
//px-=wt+x;
//w.renderText(a,px+wt,py+1);
//quads->add(px+wt-y/4-y,py-y,px+wt-y/4,py-y,px+wt-y/4,py+1,px+wt-y/4-y,py+1,m_colors[j].rgba());
//QString text=schema::channel[code].label();
int wid , hi ;
GetTextExtent ( a , wid , hi ) ;
legendx - = wid ;
w . renderText ( a , legendx , top - 4 ) ;
int bw = GetXHeight ( ) ;
legendx - = bw / 2 ;
int tp = top - 5 - bw / 2 ;
w . quads ( ) - > add ( legendx - bw , tp + bw / 2 , legendx , tp + bw / 2 , legendx , tp - bw / 2 , legendx - bw , tp - bw / 2 , m_colors [ j ] . rgba ( ) ) ;
legendx - = hi + bw / 2 ;
2011-09-11 06:16:45 +00:00
//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
}
2012-01-03 05:40:35 +00:00
if ( ( m_graphtype = = GT_BAR ) & & ( good > 0 ) ) {
2011-09-18 07:42:00 +00:00
if ( m_type . size ( ) > 1 ) {
2012-01-03 04:36:47 +00:00
float val = total_val / float ( total_hours ) ;
2011-09-18 14:43:15 +00:00
a = m_label + " = " + QString : : number ( val , ' f ' , 2 ) + " " ;
GetTextExtent ( a , x , y ) ;
2012-01-03 05:40:35 +00:00
legendx - = 20 + x ;
w . renderText ( a , legendx + 24 , py + 1 ) ;
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 ) + " " ;
//
}
} */
2011-10-01 15:47:35 +00:00
a + = " Days= " + QString : : number ( total_days , ' f ' , 0 ) ;
2011-12-21 12:47:47 +00:00
if ( PROFILE . cpap - > showComplianceInfo ( ) ) {
2011-12-21 00:47:35 +00:00
if ( ishours & & incompliant > 0 ) {
a + = " Low Usage Days= " + QString : : number ( incompliant , ' f ' , 0 ) + " (% " + QString : : number ( ( 1.0 / daynum ) * ( total_days - incompliant ) * 100.0 , ' f ' , 2 ) + " compliant, defined as > " + QString : : number ( compliance_hours , ' f ' , 1 ) + " hours) " ;
}
}
2012-01-03 05:40:35 +00:00
//GetTextExtent(a,x,y);
//legendx-=30+x;
2011-09-18 07:42:00 +00:00
//w.renderText(a,px+24,py+5);
2011-12-12 07:10:45 +00:00
w . renderText ( a , left , py + 1 ) ;
2011-06-26 08:30:44 +00:00
}
2011-10-30 15:25:53 +00:00
2011-11-30 06:01:38 +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 ) ;
2011-11-30 06:01:38 +00:00
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 ' ;
2011-11-30 06:01:38 +00:00
h % = 12 ;
2011-11-30 06:20:08 +00:00
if ( h = = 0 ) h = 12 ;
2011-11-30 06:01:38 +00:00
} 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 ) ;
}
2011-09-10 04:20:45 +00:00
bool SummaryChart : : mouseMoveEvent ( QMouseEvent * event )
2011-09-03 10:09:22 +00:00
{
int x = event - > x ( ) - l_left ;
int y = event - > y ( ) - l_top ;
2011-09-04 05:41:55 +00:00
if ( ( x < 0 | | y < 0 | | x > l_width | | y > l_height ) ) {
2011-09-03 10:09:22 +00:00
hl_day = - 1 ;
2011-09-03 15:54:27 +00:00
//graph->timedRedraw(2000);
2011-09-03 10:09:22 +00:00
return false ;
}
double xx = l_maxx - l_minx ;
2011-09-10 04:20:45 +00:00
2011-09-03 10:09:22 +00:00
double xmult = xx / double ( l_width + barw ) ;
2011-09-05 13:26:10 +00:00
qint64 mx = ceil ( xmult * double ( x - offset ) ) ;
2011-09-03 10:09:22 +00:00
mx + = l_minx ;
mx = mx + l_offset ; //-86400000L;
int zd = mx / 86400000L ;
2011-09-12 05:09:53 +00:00
2011-09-13 03:38:02 +00:00
Day * day ;
2011-09-12 05:09:53 +00:00
//if (hl_day!=zd) // This line is an optimization
2011-09-03 15:54:27 +00:00
{
2011-09-03 10:09:22 +00:00
hl_day = zd ;
2011-10-28 05:12:19 +00:00
graph - > Trigger ( 2000 ) ;
2011-09-03 10:09:22 +00:00
QHash < int , QHash < short , EventDataType > > : : iterator d = m_values . find ( hl_day ) ;
2012-01-01 14:14:18 +00:00
QHash < short , EventDataType > & valhash = d . value ( ) ;
2011-09-13 04:52:30 +00:00
x + = gYAxis : : Margin + gGraphView : : titleWidth ; //graph->m_marginleft+
int y = event - > y ( ) + rtop - 15 ;
2011-10-28 05:12:19 +00:00
//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 ( ) ;
2011-10-21 05:50:31 +00:00
//QTime t1=dt1.time();
//QTime t2=dt2.time();
2011-09-13 05:18:39 +00:00
QDate dt = dt2 . date ( ) ;
2011-09-03 10:09:22 +00:00
if ( d ! = m_values . end ( ) ) {
2011-09-03 12:59:08 +00:00
2011-09-13 03:38:02 +00:00
day = m_days [ zd ] ;
2011-09-03 15:54:27 +00:00
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];
2011-09-13 03:38:02 +00:00
//EventDataType val;
QString val ;
2011-11-30 06:01:38 +00:00
if ( m_graphtype = = GT_SESSIONS ) {
if ( m_type [ 0 ] = = ST_HOURS ) {
2012-01-01 14:14:18 +00:00
int t = m_hours [ zd ] * 3600.0 ;
2011-11-30 06:01:38 +00:00
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 \n Bedtime= " + formatTime ( v , false , false , true ) ;
v = m_times [ zd ] [ lastt ] + m_values [ zd ] [ lastt ] ;
z + = " \r \n Waketime= " + formatTime ( v , false , false , true ) ;
} else
if ( m_graphtype = = GT_BAR ) {
2011-09-13 03:38:02 +00:00
if ( m_type [ 0 ] = = ST_HOURS ) {
int t = d . value ( ) [ 0 ] * 3600.0 ;
int h = t / 3600 ;
int m = ( t / 60 ) % 60 ;
2011-10-21 05:50:31 +00:00
//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 + + ) {
2012-01-01 14:14:18 +00:00
if ( ! m_goodcodes [ i ] )
continue ;
if ( ! valhash . contains ( i + 1 ) )
continue ;
2011-12-24 06:20:07 +00:00
EventDataType tval = m_typeval [ i ] ;
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 ;
2012-01-03 07:15:02 +00:00
case ST_PERC :
if ( tval > = 0.99 ) a = " Max " ;
else if ( tval = = 0.5 ) a = " Med " ;
else a = QString ( " %1% " ) . arg ( tval * 100.0 , 0 , ' f ' , 0 ) ;
break ;
2011-09-18 03:47:53 +00:00
case ST_MIN : a = " Min " ; break ;
case ST_MAX : a = " Max " ; break ;
case ST_CPH : a = " " ; break ;
case ST_SPH : a = " % " ; break ;
2011-12-21 14:24:09 +00:00
case ST_HOURS : a = STR_UNIT_Hours ; break ;
2011-10-30 15:25:53 +00:00
case ST_SESSIONS : a = " Sessions " ; break ;
2012-01-01 14:14:18 +00:00
case ST_SETMIN : a = " Min " ; break ;
case ST_SETMAX : a = " Max " ; break ;
2011-09-18 03:47:53 +00:00
default :
2012-01-01 14:14:18 +00:00
a = " " ;
2011-09-18 03:47:53 +00:00
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 {
2011-12-11 15:46:56 +00:00
//if (day && (day->channelExists(m_codes[i]) || day->settingExists(m_codes[i]))) {
2011-10-30 15:25:53 +00:00
schema : : Channel & chan = schema : : channel [ m_codes [ i ] ] ;
2012-01-01 14:14:18 +00:00
EventDataType v ;
if ( valhash . contains ( i + 1 ) )
v = valhash [ i + 1 ] ;
else v = 0 ;
2011-12-21 05:47:33 +00:00
if ( m_codes [ i ] = = Journal_Weight ) {
2012-01-01 14:14:18 +00:00
val = weightString ( v , PROFILE . general - > unitSystem ( ) ) ;
} else {
val = QString : : number ( v , ' f ' , 2 ) ;
}
2011-10-30 15:25:53 +00:00
z + = " \r \n " + chan . label ( ) + " " + a + " = " + val ;
2011-12-11 15:46:56 +00:00
//}
2011-09-18 03:47:53 +00:00
}
}
2011-09-10 08:31:28 +00:00
}
2011-09-13 03:38:02 +00:00
2011-12-11 15:46:56 +00:00
graph - > ToolTip ( z , x , y - 15 , 2200 ) ;
2011-09-03 12:59:08 +00:00
return true ;
2011-09-13 04:52:30 +00:00
} else {
2011-09-13 08:12:07 +00:00
QString z = dt . toString ( Qt : : SystemLocaleShortDate ) + " \r \n No Data " ;
2011-12-11 15:46:56 +00:00
graph - > ToolTip ( z , x , y - 15 , 2200 ) ;
2011-10-28 05:12:19 +00:00
return true ;
2011-09-03 12:59:08 +00:00
}
2011-09-03 10:09:22 +00:00
}
2011-10-28 05:12:19 +00:00
2011-09-03 10:09:22 +00:00
return false ;
}
2011-09-10 04:20:45 +00:00
bool SummaryChart : : mousePressEvent ( QMouseEvent * event )
2011-09-03 10:09:22 +00:00
{
2011-10-28 03:50:03 +00:00
if ( event - > modifiers ( ) & Qt : : ShiftModifier ) {
2011-10-28 03:45:31 +00:00
//qDebug() << "Jump to daily view?";
return true ;
}
2011-10-21 05:50:31 +00:00
Q_UNUSED ( event )
2011-09-03 10:09:22 +00:00
return false ;
}
2011-10-28 03:45:31 +00:00
bool SummaryChart : : keyPressEvent ( QKeyEvent * event )
{
2011-10-28 05:12:19 +00:00
Q_UNUSED ( event )
2011-10-28 03:45:31 +00:00
//qDebug() << "Summarychart Keypress";
2011-10-28 05:12:19 +00:00
return false ;
2011-10-28 03:45:31 +00:00
}
# include "mainwindow.h"
extern MainWindow * mainwin ;
2011-09-10 04:20:45 +00:00
bool SummaryChart : : mouseReleaseEvent ( QMouseEvent * event )
2011-09-03 10:09:22 +00:00
{
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 ) ;
}
2011-10-28 05:12:19 +00:00
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 ;
}
2011-10-28 03:45:31 +00:00
}
2011-10-21 05:50:31 +00:00
Q_UNUSED ( event )
2011-09-04 05:41:55 +00:00
hl_day = - 1 ;
graph - > timedRedraw ( 2000 ) ;
2011-09-03 10:09:22 +00:00
return false ;
}