X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=3a002bbc2a4eedf601d69114da62cfd68879f976;hp=185e03ab36d83d951a041b1698f814eb7094d6d3;hb=1f1edc092680e9182be07a760ad03d00b8c5ca06;hpb=5b5fa4da3b7112414b9f51e6626ae7f4bf606f02 diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp index 185e03ab..3a002bbc 100644 --- a/pv/view/rowitem.cpp +++ b/pv/view/rowitem.cpp @@ -61,13 +61,18 @@ void RowItem::set_visual_v_offset(int v_offset) visual_v_offset_ = v_offset; if (owner_) - owner_->appearance_changed(true, true); + owner_->row_item_appearance_changed(true, true); } void RowItem::force_to_v_offset(int v_offset) { v_offset_animation_.stop(); layout_v_offset_ = visual_v_offset_ = v_offset; + + if (owner_) { + owner_->row_item_appearance_changed(true, true); + owner_->extents_changed(false, true); + } } void RowItem::animate_to_layout_v_offset() @@ -115,27 +120,15 @@ int RowItem::get_visual_y() const return visual_v_offset_ + owner_->owner_visual_v_offset(); } -QPoint RowItem::point() const -{ - return QPoint(0, visual_v_offset()); -} - -void RowItem::paint_back(QPainter &p, const ViewItemPaintParams &pp) -{ - (void)p; - (void)pp; -} - -void RowItem::paint_mid(QPainter &p, const ViewItemPaintParams &pp) +void RowItem::drag_by(const QPoint &delta) { - (void)p; - (void)pp; + force_to_v_offset(drag_point_.y() + delta.y() - + owner_->owner_visual_v_offset()); } -void RowItem::paint_fore(QPainter &p, const ViewItemPaintParams &pp) +QPoint RowItem::point(const QRect &rect) const { - (void)p; - (void)pp; + return QPoint(rect.right(), get_visual_y()); } void RowItem::hover_point_changed()