From cbbae2e7002a4d310ba9baa9a9b3b7bcbec83f28 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 4 Nov 2013 15:14:37 +1000 Subject: [PATCH] Fix EventBreakdown chart fonts on retina --- sleepyhead/Graphs/gGraphView.cpp | 24 +++++++++++++++++------- sleepyhead/Graphs/gSummaryChart.cpp | 4 ++-- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 8200e046..0c6cf55f 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -2079,16 +2079,23 @@ Layer * gGraph::getLineChart() void gGraphView::DrawTextQue(QPainter &painter) { int w,h; +#if QT_VERSION >= QT_VERSION_CHECK(5,0,0) + int dpr=devicePixelRatio(); +#endif for (int i=0;i= QT_VERSION_CHECK(5,0,0) - painter.drawText(q.x*devicePixelRatio(),q.y*devicePixelRatio(),q.text); + QFont font=*q.font; + font.setPointSizeF(q.font->pointSizeF()*dpr); + painter.setFont(font); + + painter.drawText(q.x*dpr,q.y*dpr,q.text); #else + painter.setFont(*q.font); painter.drawText(q.x,q.y,q.text); #endif } else { // rotated text @@ -2141,8 +2148,9 @@ QImage gGraphView::fboRenderPixmap(int w,int h) return pm; #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) - w*=devicePixelRatio(); - h*=devicePixelRatio(); + float dpr=devicePixelRatio(); + w*=dpr; + h*=dpr; #endif if ((w > max_fbo_width) || (h > max_fbo_height)) { @@ -2937,7 +2945,8 @@ void gGraphView::resizeGL(int w, int h) glLoadIdentity(); #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) - glOrtho(0, w/devicePixelRatio(), h/devicePixelRatio(), 0, -1, 1); + float dpr=devicePixelRatio(); + glOrtho(0, w/dpr, h/dpr, 0, -1, 1); #else glOrtho(0, w, h, 0, -1, 1); #endif @@ -2952,8 +2961,9 @@ void gGraphView::renderSomethingFun(float alpha) float w=width(); float h=height(); #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) - w*=devicePixelRatio(); - h*=devicePixelRatio(); + float dpr=devicePixelRatio(); + w*=dpr; + h*=dpr; #endif glViewport(0, 0, w, h); diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index 1bb5f97f..34b4649b 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -581,8 +581,8 @@ jumpnext: //lastQ=Q; } #if QT_VERSION >= QT_VERSION_CHECK(5,0,0) - float dpr=w.graphView()->devicePixelRatio(); - lines->scissor(left*dpr,w.flipY(top+height+2)*dpr,(width+1)*dpr,(height+1)*dpr); + float dpr=w.graphView()->devicePixelRatio(); + lines->scissor(left*dpr,w.flipY(top+height+2)*dpr,(width+1)*dpr,(height+1)*dpr); #else lines->scissor(left,w.flipY(top+height+2),width+1,height+2); #endif