]> sigrok.org Git - pulseview.git/blobdiff - pv/view/trace.cpp
RowItem: Pass rect into label_rect
[pulseview.git] / pv / view / trace.cpp
index 3b92abe484c14efd5964789eed731077fed21344..df6bd63d041ec74a4228919ea4383afb2c982ae4 100644 (file)
 #include <QKeyEvent>
 #include <QLineEdit>
 
-#include "trace.h"
-#include "tracepalette.h"
-#include "view.h"
+#include "trace.hpp"
+#include "tracepalette.hpp"
+#include "view.hpp"
 
-#include <pv/widgets/colourbutton.h>
-#include <pv/widgets/popup.h>
+#include <pv/widgets/colourbutton.hpp>
+#include <pv/widgets/popup.hpp>
 
 namespace pv {
 namespace view {
@@ -42,42 +42,42 @@ const QPen Trace::AxisPen(QColor(128, 128, 128, 64));
 const int Trace::LabelHitPadding = 2;
 
 Trace::Trace(QString name) :
-       _name(name),
-       _popup(NULL),
-       _popup_form(NULL)
+       name_(name),
+       popup_(NULL),
+       popup_form_(NULL)
 {
 }
 
 QString Trace::name() const
 {
-       return _name;
+       return name_;
 }
 
 void Trace::set_name(QString name)
 {
-       _name = name;
+       name_ = name;
 }
 
 QColor Trace::colour() const
 {
-       return _colour;
+       return colour_;
 }
 
 void Trace::set_colour(QColor colour)
 {
-       _colour = colour;
+       colour_ = colour;
 }
 
-void Trace::paint_label(QPainter &p, int right, bool hover)
+void Trace::paint_label(QPainter &p, const QRect &rect, bool hover)
 {
-       const int y = get_y();
+       const int y = get_visual_y();
 
-       p.setBrush(_colour);
+       p.setBrush(colour_);
 
        if (!enabled())
                return;
 
-       const QRectF r = label_rect(right);
+       const QRectF r = label_rect(rect);
 
        // Paint the label
        const float label_arrow_length = r.height() / 2;
@@ -103,23 +103,23 @@ void Trace::paint_label(QPainter &p, int right, bool hover)
        }
 
        p.setPen(Qt::transparent);
-       p.setBrush(hover ? _colour.lighter() : _colour);
+       p.setBrush(hover ? colour_.lighter() : colour_);
        p.drawPolygon(points, countof(points));
 
-       p.setPen(_colour.lighter());
+       p.setPen(colour_.lighter());
        p.setBrush(Qt::transparent);
        p.drawPolygon(highlight_points, countof(highlight_points));
 
-       p.setPen(_colour.darker());
+       p.setPen(colour_.darker());
        p.setBrush(Qt::transparent);
        p.drawPolygon(points, countof(points));
 
        // Paint the text
-       p.setPen(get_text_colour());
+       p.setPen(select_text_colour(colour_));
        p.setFont(QApplication::font());
        p.drawText(QRectF(r.x(), r.y(),
                r.width() - label_arrow_length, r.height()),
-               Qt::AlignCenter | Qt::AlignVCenter, _name);
+               Qt::AlignCenter | Qt::AlignVCenter, name_);
 }
 
 QMenu* Trace::create_context_menu(QWidget *parent)
@@ -133,44 +133,39 @@ pv::widgets::Popup* Trace::create_popup(QWidget *parent)
 {
        using pv::widgets::Popup;
 
-       _popup = new Popup(parent);
+       popup_ = new Popup(parent);
 
        create_popup_form();
 
-       connect(_popup, SIGNAL(closed()),
+       connect(popup_, SIGNAL(closed()),
                this, SLOT(on_popup_closed()));
 
-       return _popup;
+       return popup_;
 }
 
-QRectF Trace::label_rect(int right) const
+QRectF Trace::label_rect(const QRectF &rect) const
 {
        using pv::view::View;
 
        QFontMetrics m(QApplication::font());
        const QSize text_size(
-               m.boundingRect(QRect(), 0, _name).width(),
+               m.boundingRect(QRect(), 0, name_).width(),
                m.boundingRect(QRect(), 0, "Tg").height());
        const QSizeF label_size(
                text_size.width() + View::LabelPadding.width() * 2,
                ceilf((text_size.height() + View::LabelPadding.height() * 2) / 2) * 2);
        const float half_height = label_size.height() / 2;
        return QRectF(
-               right - half_height - label_size.width() - 0.5,
-               get_y() + 0.5f - half_height,
+               rect.right() - half_height - label_size.width() - 0.5,
+               get_visual_y() + 0.5f - half_height,
                label_size.width() + half_height,
                label_size.height());
 }
 
-QColor Trace::get_text_colour() const
-{
-       return (_colour.lightness() > 64) ? Qt::black : Qt::white;
-}
-
-void Trace::paint_axis(QPainter &p, int y, int left, int right)
+void Trace::paint_axis(QPainter &p, const RowItemPaintParams &pp, int y)
 {
        p.setPen(AxisPen);
-       p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f));
+       p.drawLine(QPointF(pp.left(), y + 0.5f), QPointF(pp.right(), y + 0.5f));
 }
 
 void Trace::add_colour_option(QWidget *parent, QFormLayout *form)
@@ -180,7 +175,7 @@ void Trace::add_colour_option(QWidget *parent, QFormLayout *form)
        ColourButton *const colour_button = new ColourButton(
                TracePalette::Rows, TracePalette::Cols, parent);
        colour_button->set_palette(TracePalette::Colours);
-       colour_button->set_colour(_colour);
+       colour_button->set_colour(colour_);
        connect(colour_button, SIGNAL(selected(const QColor&)),
                this, SLOT(on_colour_changed(const QColor&)));
 
@@ -194,19 +189,19 @@ void Trace::create_popup_form()
        // Transfer the layout and the child widgets to a temporary widget
        // which then goes out of scope destroying the layout and all the child
        // widgets.
-       if (_popup_form)
-               QWidget().setLayout(_popup_form);
+       if (popup_form_)
+               QWidget().setLayout(popup_form_);
 
        // Repopulate the popup
-       _popup_form = new QFormLayout(_popup);
-       _popup->setLayout(_popup_form);
-       populate_popup_form(_popup, _popup_form);
+       popup_form_ = new QFormLayout(popup_);
+       popup_->setLayout(popup_form_);
+       populate_popup_form(popup_, popup_form_);
 }
 
 void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
 {
        QLineEdit *const name_edit = new QLineEdit(parent);
-       name_edit->setText(_name);
+       name_edit->setText(name_);
        connect(name_edit, SIGNAL(textChanged(const QString&)),
                this, SLOT(on_text_changed(const QString&)));
        form->addRow(tr("Name"), name_edit);
@@ -216,20 +211,24 @@ void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
 
 void Trace::on_popup_closed()
 {
-       _popup = NULL;
-       _popup_form = NULL;
+       popup_ = NULL;
+       popup_form_ = NULL;
 }
 
 void Trace::on_text_changed(const QString &text)
 {
        set_name(text);
-       appearance_changed();
+
+       if (owner_)
+               owner_->extents_changed(true, false);
 }
 
 void Trace::on_colour_changed(const QColor &colour)
 {
        set_colour(colour);
-       appearance_changed();
+
+       if (owner_)
+               owner_->appearance_changed(true, false);
 }
 
 } // namespace view