]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.cpp
Added missing includes and defintions
[pulseview.git] / pv / view / signal.cpp
index 33cfef2d418839a588bc269ac36729b30e67ae2b..1f00477a2012d9cb5a3a8e11f6cd046ff62f8682 100644 (file)
 
 #include <extdef.h>
 
+#include <assert.h>
+#include <math.h>
+
 #include <QApplication>
+#include <QFormLayout>
+#include <QMenu>
 
 #include "signal.h"
 #include "view.h"
 namespace pv {
 namespace view {
 
-const int Signal::LabelHitPadding = 2;
-const int Signal::LabelHighlightRadius = 6;
-
-Signal::Signal(QString name) :
-       _name(name),
-       _v_offset(0),
-       _selected(false)
-{
-}
-
-QString Signal::get_name() const
+const char *const ProbeNames[] = {
+       "CLK",
+       "DATA",
+       "IN",
+       "OUT",
+       "RST",
+       "Tx",
+       "Rx",
+       "EN",
+       "SCLK",
+       "MOSI",
+       "MISO",
+       "/SS",
+       "SDA",
+       "SCL"
+};
+
+Signal::Signal(pv::SigSession &session, sr_probe *const probe) :
+       Trace(session, probe->name),
+       _probe(probe),
+       _name_widget(NULL),
+       _updating_name_widget(false)
 {
-       return _name;
+       assert(_probe);
 }
 
 void Signal::set_name(QString name)
 {
-       _name = name;
+       Trace::set_name(name);
+       _updating_name_widget = true;
+       _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;
+       _probe->enabled = 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);
 
-bool Signal::selected() const
-{
-       return _selected;
-}
+       for(unsigned int i = 0; i < countof(ProbeNames); i++)
+               _name_widget->insertItem(i, ProbeNames[i]);
+       _name_widget->setEditText(_probe->name);
 
-void Signal::select(bool select)
-{
-       _selected = select;
-}
+       connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
+               this, SLOT(on_text_changed(const QString&)));
 
-void Signal::paint_label(QPainter &p, const QRect &rect, bool hover)
-{
-       p.setBrush(_colour);
-
-       const QColor colour = get_colour();
-       const float nominal_offset = get_nominal_offset(rect);
-
-       compute_text_size(p);
-       const QRectF label_rect = get_label_rect(rect);
-
-       // Paint the label
-       const QPointF points[] = {
-               label_rect.topLeft(),
-               label_rect.topRight(),
-               QPointF(rect.right(), nominal_offset),
-               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(rect.right() - 1, nominal_offset),
-               QPointF(label_rect.right(), label_rect.bottom() - 1),
-               QPointF(label_rect.left() + 1, label_rect.bottom() - 1)
-       };
-
-       if (_selected) {
-               p.setPen(QPen(QApplication::palette().brush(
-                       QPalette::Highlight), LabelHighlightRadius,
-                       Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
-               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);
+       form->addRow(tr("Name"), _name_widget);
+
+       add_colour_option(parent, form);
 }
 
-bool Signal::pt_in_label_rect(const QRect &rect, const QPoint &point)
+QMenu* Signal::create_context_menu(QWidget *parent)
 {
-       const QRectF label = get_label_rect(rect);
-       return QRectF(
-               QPointF(label.left() - LabelHitPadding,
-                       label.top() - LabelHitPadding),
-               QPointF(rect.right(),
-                       label.bottom() + LabelHitPadding)
-               ).contains(point);
+       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;
 }
 
-void Signal::compute_text_size(QPainter &p)
+void Signal::delete_pressed()
 {
-       _text_size = p.boundingRect(QRectF(), 0, _name).size();
+       on_disable();
 }
 
-QRectF Signal::get_label_rect(const QRect &rect)
+void Signal::on_disable()
 {
-       using pv::view::View;
-
-       const float nominal_offset = get_nominal_offset(rect) + 0.5;
-       const QSizeF label_size(
-               _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() - 0.5,
-               nominal_offset - label_size.height() / 2,
-               label_size.width(), label_size.height());
+       enable(false);
 }
 
 } // namespace view