]> sigrok.org Git - pulseview.git/blobdiff - pv/view/trace.cpp
Added missing includes and defintions
[pulseview.git] / pv / view / trace.cpp
index 6c43c4c2238044c572fbe0edc4e7343449c06ba7..ffbab0639ceac05500896a94d59655bc3c5c68d0 100644 (file)
 #include <assert.h>
 #include <math.h>
 
+#include <QFormLayout>
+#include <QLineEdit>
+
 #include "trace.h"
+#include "tracepalette.h"
 #include "view.h"
 
+#include <pv/widgets/colourbutton.h>
+
 namespace pv {
 namespace view {
 
+const QPen Trace::AxisPen(QColor(128, 128, 128, 64));
 const int Trace::LabelHitPadding = 2;
 
 Trace::Trace(pv::SigSession &session, QString name) :
@@ -74,6 +81,27 @@ void Trace::set_view(pv::view::View *view)
        _view = view;
 }
 
+void Trace::paint_back(QPainter &p, int left, int right)
+{
+       (void)p;
+       (void)left;
+       (void)right;
+}
+
+void Trace::paint_mid(QPainter &p, int left, int right)
+{
+       (void)p;
+       (void)left;
+       (void)right;
+}
+
+void Trace::paint_fore(QPainter &p, int left, int right)
+{
+       (void)p;
+       (void)left;
+       (void)right;
+}
+
 void Trace::paint_label(QPainter &p, int right, bool hover)
 {
        assert(_view);
@@ -125,7 +153,7 @@ void Trace::paint_label(QPainter &p, int right, bool hover)
        p.drawPolygon(points, countof(points));
 
        // Paint the text
-       p.setPen((colour.lightness() > 64) ? Qt::black : Qt::white);
+       p.setPen(get_text_colour());
        p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
 }
 
@@ -141,6 +169,64 @@ bool Trace::pt_in_label_rect(int left, int right, const QPoint &point)
                        ).contains(point);
 }
 
+QMenu* Trace::create_context_menu(QWidget *parent)
+{
+       QMenu *const menu = SelectableItem::create_context_menu(parent);
+
+       return menu;
+}
+
+pv::widgets::Popup* Trace::create_popup(QWidget *parent)
+{
+       using pv::widgets::Popup;
+       Popup *const popup = new Popup(parent);
+       QFormLayout *const form = new QFormLayout(popup);
+       popup->setLayout(form);
+       populate_popup_form(popup, form);
+       return popup;
+}
+
+int Trace::get_y() const
+{
+       return _v_offset - _view->v_offset();
+}
+
+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)
+{
+       p.setPen(AxisPen);
+       p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f));
+}
+
+void Trace::add_colour_option(QWidget *parent, QFormLayout *form)
+{
+       using pv::widgets::ColourButton;
+
+       ColourButton *const colour_button = new ColourButton(
+               TracePalette::Rows, TracePalette::Cols, parent);
+       colour_button->set_palette(TracePalette::Colours);
+       colour_button->set_colour(_colour);
+       connect(colour_button, SIGNAL(selected(const QColor&)),
+               this, SLOT(on_colour_changed(const QColor&)));
+
+       form->addRow(tr("Colour"), colour_button);
+}
+
+void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
+{
+       QLineEdit *const name_edit = new QLineEdit(parent);
+       name_edit->setText(_name);
+       connect(name_edit, SIGNAL(textChanged(const QString&)),
+               this, SLOT(on_text_changed(const QString&)));
+       form->addRow(tr("Name"), name_edit);
+
+       add_colour_option(parent, form);
+}
+
 void Trace::compute_text_size(QPainter &p)
 {
        _text_size = QSize(
@@ -153,7 +239,6 @@ QRectF Trace::get_label_rect(int right)
        using pv::view::View;
 
        assert(_view);
-       const int y = _v_offset - _view->v_offset();
 
        const QSizeF label_size(
                _text_size.width() + View::LabelPadding.width() * 2,
@@ -161,9 +246,21 @@ QRectF Trace::get_label_rect(int right)
        const float label_arrow_length = label_size.height() / 2;
        return QRectF(
                right - label_arrow_length - label_size.width() - 0.5,
-               y + 0.5f - label_size.height() / 2,
+               get_y() + 0.5f - label_size.height() / 2,
                label_size.width(), label_size.height());
 }
 
+void Trace::on_text_changed(const QString &text)
+{
+       set_name(text);
+       text_changed();
+}
+
+void Trace::on_colour_changed(const QColor &colour)
+{
+       set_colour(colour);
+       colour_changed();
+}
+
 } // namespace view
 } // namespace pv