X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=sigview.cpp;h=a8e8535923d5a2acfc1a1aa2ae84ec804315d434;hb=6fb67b27a85f19002d43b8c8498ca7d2979401b0;hp=554e534eb03b0d93cf25d2aebefbccdaaaaa2ead;hpb=e9c41f8ce607164040ce86abd35a0a8751193f1f;p=pulseview.git diff --git a/sigview.cpp b/sigview.cpp index 554e534..a8e8535 100644 --- a/sigview.cpp +++ b/sigview.cpp @@ -26,6 +26,7 @@ #include "extdef.h" #include +#include #include @@ -38,8 +39,13 @@ 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] = + {"f", "p", "n", QChar(0x03BC), "m", "", "k", "M", "G"}; +const int SigView::FirstSIPrefixPower = -15; + SigView::SigView(SigSession &session, QWidget *parent) : QGLWidget(parent), _session(session), @@ -167,36 +173,62 @@ void SigView::setupViewport(int width, int height) void SigView::paintRuler(QPainter &p) { - const double MinSpacing = 20; + const double MinSpacing = 80; - double tick_period = 0.0f; const double min_period = _scale * MinSpacing; - double order = 10e-15; - while(tick_period < min_period) + const int order = (int)floorf(log10f(min_period)); + const double order_decimal = pow(10, order); + + int unit = 0; + double tick_period = 0.0f; + + do { - int unit = 0; - while(tick_period < min_period && - unit < countof(ScaleUnits)) - tick_period = order * ScaleUnits[unit++]; - order *= 10; - } + tick_period = order_decimal * ScaleUnits[unit++]; + } while(tick_period < min_period && unit < countof(ScaleUnits)); - const double tick_seperation = tick_period / _scale; + const int prefix = (order - FirstSIPrefixPower) / 3; + assert(prefix >= 0); + assert(prefix < countof(SIPrefixes)); - p.setPen(Qt::transparent); - p.setBrush(QColor(0xC0, 0xC0, 0xC0)); - p.drawRect(LabelMarginWidth, 0, - width() - LabelMarginWidth, RulerHeight); + const int text_height = p.boundingRect(0, 0, INT_MAX, INT_MAX, + Qt::AlignLeft | Qt::AlignTop, "8").height(); + // Draw the tick marks p.setPen(Qt::black); - const double offset_ticks = -_offset / tick_period; - double x = (offset_ticks - floor(offset_ticks)) * - tick_seperation + LabelMarginWidth; - while(x < 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) { - p.drawLine(x, 0, x, RulerHeight); - x += tick_seperation; + 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++; } }