]> sigrok.org Git - pulseview.git/blobdiff - pv/signal.cpp
Moved LabelPadding into View
[pulseview.git] / pv / signal.cpp
index 7d3dd66362f4c5ab182b4503ab2e0294d5f93066..c23a3954455b155d74b042907c361fa245f18c3a 100644 (file)
@@ -24,7 +24,6 @@
 
 namespace pv {
 
 
 namespace pv {
 
-const QSizeF Signal::LabelPadding(4, 0);
 const int Signal::LabelHitPadding = 2;
 
 Signal::Signal(QString name) :
 const int Signal::LabelHitPadding = 2;
 
 Signal::Signal(QString name) :
@@ -37,13 +36,20 @@ QString Signal::get_name() const
        return _name;
 }
 
        return _name;
 }
 
+void Signal::set_name(QString name)
+{
+       _name = name;
+}
+
 void Signal::paint_label(QPainter &p, const QRect &rect, bool hover)
 {
        p.setBrush(get_colour());
 
        const QColor colour = get_colour();
        const float nominal_offset = get_nominal_offset(rect);
 void Signal::paint_label(QPainter &p, const QRect &rect, bool hover)
 {
        p.setBrush(get_colour());
 
        const QColor colour = get_colour();
        const float nominal_offset = get_nominal_offset(rect);
-       const QRectF label_rect = get_label_rect(p, rect);
+
+       compute_text_size(p);
+       const QRectF label_rect = get_label_rect(rect);
 
        // Paint the label
        const QPointF points[] = {
 
        // Paint the label
        const QPointF points[] = {
@@ -79,10 +85,9 @@ void Signal::paint_label(QPainter &p, const QRect &rect, bool hover)
        p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
 }
 
        p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
 }
 
-bool Signal::pt_in_label_rect(QPainter &p,
-       const QRect &rect, const QPoint &point)
+bool Signal::pt_in_label_rect(const QRect &rect, const QPoint &point)
 {
 {
-       const QRectF label = get_label_rect(p, rect);
+       const QRectF label = get_label_rect(rect);
        return QRectF(
                QPointF(label.left() - LabelHitPadding,
                        label.top() - LabelHitPadding),
        return QRectF(
                QPointF(label.left() - LabelHitPadding,
                        label.top() - LabelHitPadding),
@@ -91,15 +96,19 @@ bool Signal::pt_in_label_rect(QPainter &p,
                ).contains(point);
 }
 
                ).contains(point);
 }
 
-QRectF Signal::get_label_rect(QPainter &p, const QRect &rect)
+void Signal::compute_text_size(QPainter &p)
+{
+       _text_size = p.boundingRect(QRectF(), 0, _name).size();
+}
+
+QRectF Signal::get_label_rect(const QRect &rect)
 {
 {
-       const QSizeF text_size = p.boundingRect(
-               QRectF(0, 0, rect.width(), 0), 0, _name).size();
+       using pv::view::View;
 
        const float nominal_offset = get_nominal_offset(rect);
        const QSizeF label_size(
 
        const float nominal_offset = get_nominal_offset(rect);
        const QSizeF label_size(
-               text_size.width() + LabelPadding.width() * 2,
-               text_size.height() + LabelPadding.height() * 2);
+               _text_size.width() + View::LabelPadding.width() * 2,
+               _text_size.height() + View::LabelPadding.height() * 2);
        const float label_arrow_length = label_size.height() / 2;
        return QRectF(
                rect.right() - label_arrow_length - label_size.width(),
        const float label_arrow_length = label_size.height() / 2;
        return QRectF(
                rect.right() - label_arrow_length - label_size.width(),