X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=120a00a39d1cd0a1fb478c5facf446d86e8722ad;hb=be9e7b4bb29b6594ec2b64442748ab135b684bf8;hp=38a6d43703883697c8ce838238ec1ab4377a334f;hpb=eae6e30af53f6b3e42dc5be212c82870078276b0;p=pulseview.git diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp index 38a6d43..120a00a 100644 --- a/pv/view/rowitem.cpp +++ b/pv/view/rowitem.cpp @@ -29,30 +29,64 @@ namespace view { RowItem::RowItem() : _owner(NULL), - _v_offset(0) + _layout_v_offset(0), + _visual_v_offset(0) { } -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; +} + +int RowItem::visual_v_offset() const +{ + return _visual_v_offset; +} + +void RowItem::set_visual_v_offset(int v_offset) +{ + _visual_v_offset = v_offset; +} + +void RowItem::force_to_v_offset(int v_offset) +{ + _layout_v_offset = _visual_v_offset = v_offset; +} + +RowItemOwner* RowItem::owner() const +{ + return _owner; } void RowItem::set_owner(RowItemOwner *owner) { - assert((_owner && !owner) || (!_owner && owner)); + assert(_owner || owner); + + if (_owner) + _visual_v_offset += _owner->owner_v_offset(); _owner = owner; + if (_owner) + _visual_v_offset -= _owner->owner_v_offset(); } -int RowItem::get_y() const +int RowItem::get_visual_y() const { assert(_owner); - return _v_offset + _owner->owner_v_offset(); + return _visual_v_offset + _owner->owner_v_offset(); +} + +QPoint RowItem::point() const +{ + return QPoint(0, visual_v_offset()); } void RowItem::paint_back(QPainter &p, int left, int right)