]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.cpp
Link signals to probes
[pulseview.git] / pv / view / signal.cpp
index 9299e9326234b62fdc323009598f312fe14f5975..cdbb65b1638e5ac145c1aaa66cf6c3d99bf12971 100644 (file)
@@ -20,6 +20,9 @@
 
 #include <extdef.h>
 
+#include <assert.h>
+#include <math.h>
+
 #include <QApplication>
 
 #include "signal.h"
@@ -33,11 +36,13 @@ const int Signal::LabelHighlightRadius = 6;
 
 const QPen Signal::SignalAxisPen(QColor(128, 128, 128, 64));
 
-Signal::Signal(QString name) :
-       _name(name),
+Signal::Signal(const sr_probe *const probe) :
+       _probe(probe),
+       _name(probe->name),
        _v_offset(0),
        _selected(false)
 {
+       assert(_probe);
 }
 
 QString Signal::get_name() const
@@ -84,6 +89,9 @@ void Signal::paint_label(QPainter &p, int y, int right, bool hover)
 {
        p.setBrush(_colour);
 
+       if (!_probe->enabled)
+               return;
+
        const QColor colour = get_colour();
 
        compute_text_size(p);
@@ -163,7 +171,7 @@ QRectF Signal::get_label_rect(int y, int right)
 
        const QSizeF label_size(
                _text_size.width() + View::LabelPadding.width() * 2,
-               _text_size.height() + View::LabelPadding.height() * 2);
+               ceilf((_text_size.height() + View::LabelPadding.height() * 2) / 2) * 2);
        const float label_arrow_length = label_size.height() / 2;
        return QRectF(
                right - label_arrow_length - label_size.width() - 0.5,