X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.cpp;h=d61ccd8368ec8cce971a4735459353b7429d16a4;hp=ae180e19a47a228a35f8d1151658b3f1b14973c2;hb=fe08b6e8a85c80ae738757f7d85aa38ef7c4bdc3;hpb=d09674d4529828b6bd2cbaa027949b953d6bd96a diff --git a/pv/view/signal.cpp b/pv/view/signal.cpp index ae180e19..d61ccd83 100644 --- a/pv/view/signal.cpp +++ b/pv/view/signal.cpp @@ -31,138 +31,71 @@ namespace pv { namespace view { -const int Signal::LabelHitPadding = 2; - -const QPen Signal::SignalAxisPen(QColor(128, 128, 128, 64)); - -Signal::Signal(const sr_probe *const probe) : +const char *const ProbeNames[] = { + "CLK", + "DATA", + "IN", + "OUT", + "RST", + "Tx", + "Rx", + "EN", + "SCLK", + "MOSI", + "MISO", + "/SS", + "SDA", + "SCL" +}; + +Signal::Signal(pv::SigSession &session, const sr_probe *const probe) : + Trace(session, probe->name), _probe(probe), - _name(probe->name), - _v_offset(0) + _name_action(NULL), + _name_widget(NULL), + _updating_name_widget(false) { assert(_probe); } -QString Signal::get_name() const +void Signal::init_context_bar_actions(QWidget *parent) { - return _name; -} + _name_widget = new QComboBox(parent); + _name_widget->setEditable(true); -void Signal::set_name(QString name) -{ - _name = name; -} + _name_action = new QWidgetAction(parent); + _name_action->setDefaultWidget(_name_widget); -QColor Signal::get_colour() const -{ - return _colour; -} + for(unsigned int i = 0; i < countof(ProbeNames); i++) + _name_widget->insertItem(i, ProbeNames[i]); + _name_widget->setEditText(_probe->name); -void Signal::set_colour(QColor colour) -{ - _colour = colour; + connect(_name_widget, SIGNAL(editTextChanged(const QString&)), + this, SLOT(on_text_changed(const QString&))); } -int Signal::get_v_offset() const -{ - return _v_offset; -} - -void Signal::set_v_offset(int v_offset) -{ - _v_offset = v_offset; -} - -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); -} - -bool Signal::pt_in_label_rect(int y, int left, int right, - const QPoint &point) +void Signal::set_name(QString name) { - (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); + Trace::set_name(name); + _updating_name_widget = true; + _name_widget->setEditText(name); + _updating_name_widget = false; } -void Signal::paint_axis(QPainter &p, int y, int left, int right) +bool Signal::enabled() const { - p.setPen(SignalAxisPen); - p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f)); + return _probe->enabled; } -void Signal::compute_text_size(QPainter &p) +const sr_probe* Signal::probe() const { - _text_size = QSize( - p.boundingRect(QRectF(), 0, _name).width(), - p.boundingRect(QRectF(), 0, "Tg").height()); + return _probe; } -QRectF Signal::get_label_rect(int y, int right) +void Signal::on_text_changed(const QString &text) { - 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()); + Trace::set_name(text); + text_changed(); } } // namespace view