X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=7bf52124dac7159fed013600579d07d8d62dc284;hb=2a21747e9daac2a45cd9a5ceb9a351f9775c5704;hp=81c1ab2cc8d510c55cea03813fb1bb6d3bcdccd0;hpb=1ef49ddd04f44a4369403fbab19ed235483e2975;p=pulseview.git diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp index 81c1ab2..7bf5212 100644 --- a/pv/view/rowitem.cpp +++ b/pv/view/rowitem.cpp @@ -28,39 +28,96 @@ namespace pv { namespace view { RowItem::RowItem() : - _view(NULL), - _v_offset(0) + _owner(NULL), + _layout_v_offset(0), + _visual_v_offset(0), + _v_offset_animation(this, "visual_v_offset") { } -int RowItem::v_offset() const +int RowItem::layout_v_offset() const { - return _v_offset; + return _layout_v_offset; } -void RowItem::set_v_offset(int v_offset) +void RowItem::set_layout_v_offset(int v_offset) { - _v_offset = v_offset; + if (_layout_v_offset == v_offset) + return; + + _layout_v_offset = v_offset; + + if (_owner) + _owner->extents_changed(false, true); +} + +int RowItem::visual_v_offset() const +{ + return _visual_v_offset; +} + +void RowItem::set_visual_v_offset(int v_offset) +{ + _visual_v_offset = v_offset; + + if (_owner) + _owner->appearance_changed(true, true); } -void RowItem::set_view(View *view) +void RowItem::force_to_v_offset(int v_offset) { - assert(view); + _v_offset_animation.stop(); + _layout_v_offset = _visual_v_offset = v_offset; +} - if (_view) - disconnect(_view, SIGNAL(hover_point_changed()), - this, SLOT(on_hover_point_changed())); +void RowItem::animate_to_layout_v_offset() +{ + if (_visual_v_offset == _layout_v_offset || + (_v_offset_animation.endValue() == _layout_v_offset && + _v_offset_animation.state() == QAbstractAnimation::Running)) + return; + + _v_offset_animation.setDuration(100); + _v_offset_animation.setStartValue(_visual_v_offset); + _v_offset_animation.setEndValue(_layout_v_offset); + _v_offset_animation.setEasingCurve(QEasingCurve::OutQuad); + _v_offset_animation.start(); +} - _view = view; +RowItemOwner* RowItem::owner() const +{ + return _owner; +} - connect(view, SIGNAL(hover_point_changed()), - this, SLOT(on_hover_point_changed())); +void RowItem::set_owner(RowItemOwner *owner) +{ + assert(_owner || owner); + _v_offset_animation.stop(); + + if (_owner) { + const int owner_offset = _owner->owner_visual_v_offset(); + _layout_v_offset += owner_offset; + _visual_v_offset += owner_offset; + } + + _owner = owner; + + if (_owner) { + const int owner_offset = _owner->owner_visual_v_offset(); + _layout_v_offset -= owner_offset; + _visual_v_offset -= owner_offset; + } +} + +int RowItem::get_visual_y() const +{ + assert(_owner); + return _visual_v_offset + _owner->owner_visual_v_offset(); } -int RowItem::get_y() const +QPoint RowItem::point() const { - assert(_view); - return _v_offset + _view->v_offset(); + return QPoint(0, visual_v_offset()); } void RowItem::paint_back(QPainter &p, int left, int right)