]> sigrok.org Git - pulseview.git/blobdiff - pv/view/rowitem.cpp
TraceGroup: Implemented stacking
[pulseview.git] / pv / view / rowitem.cpp
index 120a00a39d1cd0a1fb478c5facf446d86e8722ad..7bf52124dac7159fed013600579d07d8d62dc284 100644 (file)
@@ -30,7 +30,8 @@ namespace view {
 RowItem::RowItem() :
        _owner(NULL),
        _layout_v_offset(0),
-       _visual_v_offset(0)
+       _visual_v_offset(0),
+       _v_offset_animation(this, "visual_v_offset")
 {
 }
 
@@ -45,6 +46,9 @@ void RowItem::set_layout_v_offset(int v_offset)
                return;
 
        _layout_v_offset = v_offset;
+
+       if (_owner)
+               _owner->extents_changed(false, true);
 }
 
 int RowItem::visual_v_offset() const
@@ -55,13 +59,31 @@ int RowItem::visual_v_offset() const
 void RowItem::set_visual_v_offset(int v_offset)
 {
        _visual_v_offset = v_offset;
+
+       if (_owner)
+               _owner->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;
 }
 
+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();
+}
+
 RowItemOwner* RowItem::owner() const
 {
        return _owner;
@@ -70,18 +92,27 @@ RowItemOwner* RowItem::owner() const
 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;
+       }
 
-       if (_owner)
-               _visual_v_offset += _owner->owner_v_offset();
        _owner = owner;
-       if (_owner)
-               _visual_v_offset -= _owner->owner_v_offset();
+
+       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_v_offset();
+       return _visual_v_offset + _owner->owner_visual_v_offset();
 }
 
 QPoint RowItem::point() const