X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fview.cpp;h=37c3b14a1380f45994648099944625b8f4295c21;hb=a5d93c27b5bd6b95000e29c6cddac56ab254b289;hp=f754868c96b69b4efd0bc61856fa71d946aa3071;hpb=14009012e02866aa8e8d338026901d180d00fcc6;p=pulseview.git diff --git a/pv/view/view.cpp b/pv/view/view.cpp index f754868..37c3b14 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); @@ -387,9 +383,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,10 +512,14 @@ 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();