From: Michal MalĂ˝ Date: Fri, 10 Oct 2014 20:57:04 +0000 (+0200) Subject: - Calculate first relative tick position correctly X-Git-Tag: 0.4a~21 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=c72b92483b11498a85fc7d067327525f1d5033c7;p=anyanka.git - Calculate first relative tick position correctly - Draw leading subticks from the first tick back - Add "BIGTICK" tick type --- diff --git a/signalcontroller.cpp b/signalcontroller.cpp index d63db55..40eb7b2 100644 --- a/signalcontroller.cpp +++ b/signalcontroller.cpp @@ -193,12 +193,20 @@ RulerDrawData SignalController::getRulerDrawData(const double from, const double diffAbs = toAbs - fromAbs; step = 1 / pow(10, floor(log10(1 / (diffAbs))) + 1); // Magic - you want to love it but you better not touch! relStep = (diffRel * step) / (diffAbs); + //Logger::log(Logger::Level::DEBUG, ME_SENDER_STR, __QFUNC__ + QString(" rD %1 aD %2").arg(diffRel).arg(diffAbs)); //Logger::log(Logger::Level::DEBUG, ME_SENDER_STR, __QFUNC__ + QString(" fA %1 tA %2 fR %3 tR %4").arg(fromAbs).arg(toAbs).arg(from).arg(to)); /* Calculate position of the first major tick */ firstTickAbs = Helpers::firstTick(fromAbs, step); - firstTickRel = Helpers::firstTick(from, relStep); - //Logger::log(Logger::Level::DEBUG, ME_SENDER_STR, __QFUNC__ + QString(" ftA %1 ftR %2").arg(firstTickAbs).arg(firstTickRel)); + switch (axis) { + case Axis::TIME: + firstTickRel = timeToRel(firstTickAbs); + break; + case Axis::VALUE: + firstTickRel = valueToRel(firstTickAbs); + break; + } + Logger::log(Logger::Level::DEBUG, ME_SENDER_STR, __QFUNC__ + QString(" ftA %1 ftR %2 aS %3 rS %4").arg(firstTickAbs).arg(firstTickRel).arg(step).arg(relStep)); return RulerDrawData(firstTickAbs, firstTickRel, step, relStep); } diff --git a/signaldrawer.cpp b/signaldrawer.cpp index b175ae7..54fa098 100644 --- a/signaldrawer.cpp +++ b/signaldrawer.cpp @@ -234,11 +234,16 @@ void SignalDrawer::drawLeadingSubticks(const RulerDrawData& rd, std::function= relMin) { + drawFunc(subRel, subAbs, (ctr++ == 5) ? TickType::TICK : TickType::SUBTICK); + subRel -= subRelStep; + subAbs -= subAbsStep; + } } void SignalDrawer::drawScaleBySubticks(const RulerDrawData& rd, std::function drawFunc, const double fromSubRel, @@ -263,7 +268,8 @@ void SignalDrawer::drawScaleByTicks(const RulerDrawData& rd, std::functionfontMetrics().boundingRect(text); - if (yPix - (br.height() / 2) < 0) - return; +/* if (yPix - (br.height() / 2) < 0) + return;*/ if (maxCueWidth < br.width()) maxCueWidth = br.width(); @@ -370,12 +376,15 @@ void SignalDrawer::renderTimeScaleTick(QPainter* const p, const double rel, cons const int xPix = relToXPix(rel); switch (tt) { - case TickType::TICK: - p->drawLine(xPix, m_gHeight + 2, xPix, m_gHeight + 6); - break; - case TickType::SUBTICK: - p->drawLine(xPix, m_gHeight + 2, xPix , m_gHeight + 4); - break; + case TickType::BIGTICK: + p->drawLine(xPix, m_gHeight + 2, xPix, m_gHeight + 8); + break; + case TickType::TICK: + p->drawLine(xPix, m_gHeight + 2, xPix, m_gHeight + 6); + break; + case TickType::SUBTICK: + p->drawLine(xPix, m_gHeight + 2, xPix , m_gHeight + 4); + break; } } @@ -385,12 +394,15 @@ void SignalDrawer::renderValueScaleTick(QPainter* const p, const double rel, con const int yPix = relToYPix(rel); switch (tt) { - case TickType::TICK: - p->drawLine(m_leftGraphOffset - 6, yPix, m_leftGraphOffset - 1, yPix); - break; - case TickType::SUBTICK: - p->drawLine(m_leftGraphOffset - 4, yPix, m_leftGraphOffset - 1, yPix); - break; + case TickType::BIGTICK: + p->drawLine(m_leftGraphOffset - 8, yPix, m_leftGraphOffset - 1, yPix); + break; + case TickType::TICK: + p->drawLine(m_leftGraphOffset - 6, yPix, m_leftGraphOffset - 1, yPix); + break; + case TickType::SUBTICK: + p->drawLine(m_leftGraphOffset - 4, yPix, m_leftGraphOffset - 1, yPix); + break; } } diff --git a/signaldrawer.h b/signaldrawer.h index e3de035..d72edad 100644 --- a/signaldrawer.h +++ b/signaldrawer.h @@ -68,7 +68,7 @@ public: bool setDimensions(const int width, const int height); protected: - enum class TickType { TICK, SUBTICK }; + enum class TickType { BIGTICK, TICK, SUBTICK }; std::shared_ptr m_controller; QLocale m_locale;