From 438440ea9d4631a18b5fa95b0aefec9894c39c9b Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sun, 24 Jun 2012 21:14:26 +0100 Subject: [PATCH] Added major and minor divisions --- sigview.cpp | 42 ++++++++++++++++++++++++++++++++---------- sigview.h | 1 + 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/sigview.cpp b/sigview.cpp index ca5f12f9..a8e85359 100644 --- a/sigview.cpp +++ b/sigview.cpp @@ -39,6 +39,7 @@ const int SigView::SignalHeight = 50; const int SigView::LabelMarginWidth = 70; const int SigView::RulerHeight = 30; +const int SigView::MinorTickSubdivision = 4; const int SigView::ScaleUnits[3] = {1, 2, 5}; const QString SigView::SIPrefixes[9] = @@ -197,16 +198,37 @@ void SigView::paintRuler(QPainter &p) // Draw the tick marks p.setPen(Qt::black); - double t = ceil(_offset / tick_period) * tick_period; - double x = 0.0; - while((x = (t - _offset) / _scale + LabelMarginWidth) < width()) + const double minor_tick_period = tick_period / MinorTickSubdivision; + const double first_major_division = floor(_offset / tick_period); + const double first_minor_division = ceil(_offset / minor_tick_period); + const double t0 = first_major_division * tick_period; + + int division = (int)round(first_minor_division - + first_major_division * MinorTickSubdivision); + while(1) { - QString s; - QTextStream ts(&s); - ts << (t / order_decimal) << SIPrefixes[prefix] << "s"; - p.drawText(x, 0, 0, text_height, Qt::AlignCenter | Qt::AlignTop | - Qt::TextDontClip, s); - p.drawLine(x, text_height, x, RulerHeight); - t += tick_period; + const double t = t0 + division * minor_tick_period; + const double x = (t - _offset) / _scale + LabelMarginWidth; + + if(x >= width()) + break; + + if(division % MinorTickSubdivision == 0) + { + // Draw a major tick + QString s; + QTextStream ts(&s); + ts << (t / order_decimal) << SIPrefixes[prefix] << "s"; + p.drawText(x, 0, 0, text_height, Qt::AlignCenter | Qt::AlignTop | + Qt::TextDontClip, s); + p.drawLine(x, text_height, x, RulerHeight); + } + else + { + // Draw a minor tick + p.drawLine(x, (text_height + RulerHeight) / 2, x, RulerHeight); + } + + division++; } } diff --git a/sigview.h b/sigview.h index b60ee44b..34eeb959 100644 --- a/sigview.h +++ b/sigview.h @@ -37,6 +37,7 @@ private: static const int LabelMarginWidth; static const int RulerHeight; + static const int MinorTickSubdivision; static const int ScaleUnits[3]; static const QString SIPrefixes[9]; -- 2.30.2