From 83de75c3df9f47d6eec712fab4990dff21a9e473 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 18 Sep 2011 13:47:53 +1000 Subject: [PATCH] XTicker alignment fix attemp #1 --- Graphs/gSummaryChart.cpp | 29 ++++++++++++++++++++++++++--- Graphs/gXAxis.cpp | 2 +- SleepLib/day.cpp | 8 +++----- 3 files changed, 30 insertions(+), 9 deletions(-) diff --git a/Graphs/gSummaryChart.cpp b/Graphs/gSummaryChart.cpp index 3cf78886..16cd4c48 100644 --- a/Graphs/gSummaryChart.cpp +++ b/Graphs/gSummaryChart.cpp @@ -388,6 +388,7 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event) day=m_days[zd]; + QString z=dt.toString(Qt::SystemLocaleShortDate); // Day * day=m_days[hl_day]; //EventDataType val; @@ -399,12 +400,34 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event) int m=(t / 60) % 60; int s=t % 60; val.sprintf("%02i:%02i",h,m); - } else val=QString::number(d.value()[0],'f',2); + } else + val=QString::number(d.value()[0],'f',2); + z+="\r\n"+m_label+"="+val; + } else { - val=QString::number(d.value()[1],'f',2); + QString a; + for (int i=0;ichannelExists(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; + } + } + } - QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\n"+m_label+"="+val;//+"\nAHI="+QString::number(day->cph(CPAP_AHI)); graph->ToolTip(z,x,y,2200); return true; } else { diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index d5410bb0..ac9df727 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -168,7 +168,7 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) if (!m_utcfix) j+=tz_offset; int ms=j % 1000; int m=(j/60000L) % 60L; - int h=((j/3600000L)-utcoff) % 24L; + int h=(j/3600000L) % 24L; int s=(j/1000L) % 60L; static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"}; int d=(j/86400000) % 7; diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index ba26df07..8cf01d77 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -338,14 +338,12 @@ bool Day::channelExists(ChannelID id) } bool Day::channelHasData(ChannelID id) { - bool r=false; for (int i=0;ichannelExists(id)) { - r=true; - break; + if (!sessions[i]->channelExists(id)) { + return false; } } - return r; + return true; } void Day::OpenEvents()