From: Michal MalĂ˝ Date: Thu, 9 Oct 2014 19:11:32 +0000 (+0200) Subject: Draw numeric cues on axes with the same font as value labels and do not X-Git-Tag: 0.3e~6 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=4676123eef4ea6e89635404438d698e4e50c7bdb;p=anyanka.git Draw numeric cues on axes with the same font as value labels and do not draw cues that would overflow --- diff --git a/signaldrawer.cpp b/signaldrawer.cpp index 91f334e..013088d 100644 --- a/signaldrawer.cpp +++ b/signaldrawer.cpp @@ -22,7 +22,7 @@ #include "logger.h" #include "signaldrawer.h" - +#include #include const QString SignalDrawer::ME_SENDER_STR("SignalDrawer"); @@ -220,6 +220,7 @@ bool SignalDrawer::drawScale(const SignalController::Axis axis, QPixmap* const t } p.begin(target); + p.setFont(m_axisLabelFont); switch (axis) { case SignalController::Axis::TIME: relMin = m_relXMin; relMax = m_relXMax; @@ -269,13 +270,24 @@ bool SignalDrawer::drawScale(const SignalController::Axis axis, QPixmap* const t void SignalDrawer::renderTimeScaleText(QPainter* const p, const double rel, const double value) { const int xPix = relToXPix(rel); + const QString text = m_locale.toString(value, 'f', 3); + /* Do not draw labels that would overflow */ + QRect br = p->fontMetrics().boundingRect(text); + if (xPix + br.width() > m_gWidth) + return; p->drawText(xPix + 2, m_gHeight + 15, m_locale.toString(value, 'f', 3)); } void SignalDrawer::renderValueScaleText(QPainter* const p, const double rel, const double value) { const int yPix = relToYPix(rel); + const QString text = m_locale.toString(value, 'f', 2); + + /* Do not draw labels that would overflow */ + QRect br = p->fontMetrics().boundingRect(text); + if (yPix - br.height() < 0) + return; p->drawText(1, yPix + 5, m_locale.toString(value, 'f', 2)); }