]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.cpp
Moved all sr_probe modification into pv::DevInst
[pulseview.git] / pv / view / signal.cpp
index bb86d8cb6d0add9c3585c8690dee22c60d06579a..61f79a8c8351e8574ceabf779324f8d733195a96 100644 (file)
 #include <math.h>
 
 #include <QApplication>
+#include <QFormLayout>
+#include <QMenu>
+
+#include <libsigrok/libsigrok.h>
 
 #include "signal.h"
 #include "view.h"
 
-namespace pv {
-namespace view {
+#include <pv/devinst.h>
 
-const int Signal::LabelHitPadding = 2;
+using boost::shared_ptr;
 
-const QPen Signal::SignalAxisPen(QColor(128, 128, 128, 64));
+namespace pv {
+namespace view {
 
 const char *const ProbeNames[] = {
        "CLK",
@@ -52,156 +56,80 @@ const char *const ProbeNames[] = {
        "SCL"
 };
 
-Signal::Signal(const sr_probe *const probe) :
+Signal::Signal(shared_ptr<pv::DevInst> dev_inst,
+       const sr_probe *const probe) :
+       Trace(probe->name),
+       _dev_inst(dev_inst),
        _probe(probe),
-       _name(probe->name),
-       _v_offset(0),
-       _name_action(NULL),
-       _name_widget(),
+       _name_widget(NULL),
        _updating_name_widget(false)
 {
        assert(_probe);
-
-       _name_action.setDefaultWidget(&_name_widget);
-
-       _name_widget.setEditable(true);
-       for(unsigned int i = 0; i < countof(ProbeNames); i++)
-               _name_widget.insertItem(i, ProbeNames[i]);
-       _name_widget.setEditText(probe->name);
-
-       connect(&_name_widget, SIGNAL(editTextChanged(const QString&)),
-               this, SLOT(on_text_changed(const QString&)));
-}
-
-QString Signal::get_name() const
-{
-       return _name;
 }
 
 void Signal::set_name(QString name)
 {
-       _name = name;
+       Trace::set_name(name);
        _updating_name_widget = true;
-       _name_widget.setEditText(name);
+       _name_widget->setEditText(name);
        _updating_name_widget = false;
 }
 
-QColor Signal::get_colour() const
+bool Signal::enabled() const
 {
-       return _colour;
+       return _probe->enabled;
 }
 
-void Signal::set_colour(QColor colour)
+void Signal::enable(bool enable)
 {
-       _colour = colour;
+       _dev_inst->enable_probe(_probe, enable);
+       visibility_changed();
 }
 
-int Signal::get_v_offset() const
+const sr_probe* Signal::probe() const
 {
-       return _v_offset;
+       return _probe;
 }
 
-void Signal::set_v_offset(int v_offset)
+void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
 {
-       _v_offset = v_offset;
-}
+       _name_widget = new QComboBox(parent);
+       _name_widget->setEditable(true);
 
-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);
-       const QRectF label_rect = get_label_rect(y, right);
-
-       // Paint the label
-       const QPointF points[] = {
-               label_rect.topLeft(),
-               label_rect.topRight(),
-               QPointF(right, y),
-               label_rect.bottomRight(),
-               label_rect.bottomLeft()
-       };
-
-       const QPointF highlight_points[] = {
-               QPointF(label_rect.left() + 1, label_rect.top() + 1),
-               QPointF(label_rect.right(), label_rect.top() + 1),
-               QPointF(right - 1, y),
-               QPointF(label_rect.right(), label_rect.bottom() - 1),
-               QPointF(label_rect.left() + 1, label_rect.bottom() - 1)
-       };
-
-       if (selected()) {
-               p.setPen(highlight_pen());
-               p.setBrush(Qt::transparent);
-               p.drawPolygon(points, countof(points));
-       }
-
-       p.setPen(Qt::transparent);
-       p.setBrush(hover ? colour.lighter() : colour);
-       p.drawPolygon(points, countof(points));
-
-       p.setPen(colour.lighter());
-       p.setBrush(Qt::transparent);
-       p.drawPolygon(highlight_points, countof(highlight_points));
-
-       p.setPen(colour.darker());
-       p.setBrush(Qt::transparent);
-       p.drawPolygon(points, countof(points));
-
-       // Paint the text
-       p.setPen((colour.lightness() > 64) ? Qt::black : Qt::white);
-       p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
-}
+       for(unsigned int i = 0; i < countof(ProbeNames); i++)
+               _name_widget->insertItem(i, ProbeNames[i]);
+       _name_widget->setEditText(_probe->name);
 
-bool Signal::pt_in_label_rect(int y, int left, int right,
-       const QPoint &point)
-{
-       (void)left;
-
-       const QRectF label = get_label_rect(y, right);
-       return QRectF(
-               QPointF(label.left() - LabelHitPadding,
-                       label.top() - LabelHitPadding),
-               QPointF(right, label.bottom() + LabelHitPadding)
-                       ).contains(point);
-}
+       connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
+               this, SLOT(on_text_changed(const QString&)));
 
-void Signal::paint_axis(QPainter &p, int y, int left, int right)
-{
-       p.setPen(SignalAxisPen);
-       p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f));
+       form->addRow(tr("Name"), _name_widget);
+
+       add_colour_option(parent, form);
 }
 
-void Signal::compute_text_size(QPainter &p)
+QMenu* Signal::create_context_menu(QWidget *parent)
 {
-       _text_size = QSize(
-               p.boundingRect(QRectF(), 0, _name).width(),
-               p.boundingRect(QRectF(), 0, "Tg").height());
+       QMenu *const menu = Trace::create_context_menu(parent);
+
+       menu->addSeparator();
+
+       QAction *const disable = new QAction(tr("Disable"), this);
+       disable->setShortcuts(QKeySequence::Delete);
+       connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
+       menu->addAction(disable);
+
+       return menu;
 }
 
-QRectF Signal::get_label_rect(int y, int right)
+void Signal::delete_pressed()
 {
-       using pv::view::View;
-
-       const QSizeF label_size(
-               _text_size.width() + View::LabelPadding.width() * 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,
-               y + 0.5f - label_size.height() / 2,
-               label_size.width(), label_size.height());
+       on_disable();
 }
 
-void Signal::on_text_changed(const QString &text)
+void Signal::on_disable()
 {
-       _name = text;
-       text_changed();
+       enable(false);
 }
 
 } // namespace view