From 4560a32920341312cb697e043ec66f754df90233 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 13 Sep 2011 14:52:30 +1000 Subject: [PATCH] Show Summary tooltip on empty days --- Graphs/gBarChart.cpp | 9 ++++++--- Graphs/gXAxis.cpp | 6 ------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Graphs/gBarChart.cpp b/Graphs/gBarChart.cpp index 96c9df5f..3a6bbdb7 100644 --- a/Graphs/gBarChart.cpp +++ b/Graphs/gBarChart.cpp @@ -375,13 +375,13 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event) { hl_day=zd; QHash >::iterator d=m_values.find(hl_day); + x+=gYAxis::Margin+gGraphView::titleWidth; //graph->m_marginleft+ + int y=event->y()+rtop-15; + QDateTime dt=QDateTime::fromTime_t(hl_day*86400); if (d!=m_values.end()) { day=m_days[zd]; - x+=gYAxis::Margin+gGraphView::titleWidth; //graph->m_marginleft+ - int y=event->y()+rtop-15; - QDateTime dt=QDateTime::fromTime_t(hl_day*86400); // Day * day=m_days[hl_day]; //EventDataType val; @@ -401,6 +401,9 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event) QString z=dt.date().toString(Qt::SystemLocaleShortDate)+"\n"+m_label+"="+val;//+"\nAHI="+QString::number(day->cph(CPAP_AHI)); graph->ToolTip(z,x,y,2200); return true; + } else { + QString z=dt.date().toString(Qt::SystemLocaleShortDate)+"\nNo Data"; + graph->ToolTip(z,x,y,2200); } } return false; diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index c833009b..1db36467 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -66,12 +66,6 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) QString fd,tmpstr; int divmax,dividx; int fitmode; - /*if (xx>2*86400000L) { // Day - dividx=0; - divmax=10; - //fitmode=-1; - fd="MMM dd"; - } else */ if (xx>=86400000L) { // Day fd="MMM 00"; dividx=0;