X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fview.cpp;h=80ade0d23f5bccd573bb5385d064a1d40d9aec04;hb=0a51d1c122784a9052058c79ec2099b1ed104a22;hp=f754868c96b69b4efd0bc61856fa71d946aa3071;hpb=14009012e02866aa8e8d338026901d180d00fcc6;p=pulseview.git diff --git a/pv/view/view.cpp b/pv/view/view.cpp index f754868c..80ade0d2 100644 --- a/pv/view/view.cpp +++ b/pv/view/view.cpp @@ -67,10 +67,6 @@ const double View::MinScale = 1e-15; const int View::MaxScrollValue = INT_MAX / 2; -const int View::SignalHeight = 30; -const int View::SignalMargin = 10; -const int View::SignalSnapGridSize = 10; - const QColor View::CursorAreaColour(220, 231, 243); const QSizeF View::LabelPadding(4, 0); @@ -324,20 +320,6 @@ const QPoint& View::hover_point() const return _hover_point; } -void View::normalize_layout() -{ - int v_min = INT_MAX; - for (const shared_ptr r : *this) - v_min = min(r->v_offset(), v_min); - - const int delta = -min(v_min, 0); - for (shared_ptr r : *this) - r->set_v_offset(r->v_offset() + delta); - - verticalScrollBar()->setSliderPosition(_v_offset + delta); - v_scroll_value_changed(verticalScrollBar()->sliderPosition()); -} - void View::update_viewport() { assert(_viewport); @@ -387,9 +369,11 @@ void View::update_scroll() // Set the vertical scrollbar verticalScrollBar()->setPageStep(areaSize.height()); - verticalScrollBar()->setRange(0, - _viewport->get_total_height() + SignalMargin - - areaSize.height()); + + const pair extents = v_extents(); + const int extra_scroll_height = (extents.second - extents.first) / 4; + verticalScrollBar()->setRange(extents.first - extra_scroll_height, + extents.first + extra_scroll_height); } void View::update_layout() @@ -514,14 +498,17 @@ void View::signals_changed() #endif // Create the initial layout - int offset = SignalMargin + SignalHeight; + int offset = 0; for (shared_ptr r : *this) { + const pair extents = r->v_extents(); + if (r->enabled()) + offset += -extents.first; r->set_v_offset(offset); - offset += SignalHeight + 2 * SignalMargin; + if (r->enabled()) + offset += extents.second; } update_layout(); - normalize_layout(); // Update the child widgets _header->signals_updated();