X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.cpp;h=9b08336e3c64cc627f2e919a8a8b000383253017;hp=48e47f27aa9a49304dddc6d1feef879463183cf4;hb=931f20b0dbd480153611493f51fee68f9d29be74;hpb=b47d951efad3b51674e5af2fcfc29526cad6697f diff --git a/pv/view/signal.cpp b/pv/view/signal.cpp index 48e47f27..9b08336e 100644 --- a/pv/view/signal.cpp +++ b/pv/view/signal.cpp @@ -20,6 +20,7 @@ #include +#include #include #include @@ -30,120 +31,56 @@ namespace pv { namespace view { -const int Signal::LabelHitPadding = 2; -const int Signal::LabelHighlightRadius = 6; - const QPen Signal::SignalAxisPen(QColor(128, 128, 128, 64)); -Signal::Signal(QString name) : - _name(name), - _v_offset(0), - _selected(false) -{ -} - -QString Signal::get_name() const -{ - return _name; -} - -void Signal::set_name(QString name) +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_action(NULL), + _name_widget(), + _updating_name_widget(false) { - _name = name; -} + assert(_probe); -QColor Signal::get_colour() const -{ - return _colour; -} + _name_action.setDefaultWidget(&_name_widget); -void Signal::set_colour(QColor colour) -{ - _colour = colour; -} + _name_widget.setEditable(true); + for(unsigned int i = 0; i < countof(ProbeNames); i++) + _name_widget.insertItem(i, ProbeNames[i]); + _name_widget.setEditText(probe->name); -int Signal::get_v_offset() const -{ - return _v_offset; + connect(&_name_widget, SIGNAL(editTextChanged(const QString&)), + this, SLOT(on_text_changed(const QString&))); } -void Signal::set_v_offset(int v_offset) -{ - _v_offset = v_offset; -} - -bool Signal::selected() const -{ - return _selected; -} - -void Signal::select(bool select) -{ - _selected = select; -} - -void Signal::paint_label(QPainter &p, int y, int right, bool hover) +void Signal::set_name(QString name) { - p.setBrush(_colour); - - 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(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); + Trace::set_name(name); + _updating_name_widget = true; + _name_widget.setEditText(name); + _updating_name_widget = false; } -bool Signal::pt_in_label_rect(int y, int left, int right, - const QPoint &point) +bool Signal::enabled() const { - (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); + return _probe->enabled; } void Signal::paint_axis(QPainter &p, int y, int left, int right) @@ -152,25 +89,10 @@ void Signal::paint_axis(QPainter &p, int y, int left, int right) p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f)); } -void Signal::compute_text_size(QPainter &p) -{ - _text_size = QSize( - p.boundingRect(QRectF(), 0, _name).width(), - p.boundingRect(QRectF(), 0, "Tg").height()); -} - -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