X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fview.hpp;h=0e1a54438a4206f00254453e26f4565c270de3bb;hp=379c243507dff5b33c4d748a2074031988e190bc;hb=24c29d4f917ffac5a280d572cc04d1edb66a81b9;hpb=39ab01e794a0c13cfc012e90dd17eaebc234fb38 diff --git a/pv/view/view.hpp b/pv/view/view.hpp index 379c2435..0e1a5443 100644 --- a/pv/view/view.hpp +++ b/pv/view/view.hpp @@ -205,6 +205,11 @@ public: */ void enable_sticky_scrolling(bool state); + /** + * Toggle sticky scrolling. + */ + void toggle_sticky_scrolling(void); + /** * Enables or disables coloured trace backgrounds. If they're not * coloured then they will use alternating colors. @@ -401,6 +406,7 @@ private: bool updating_scroll_; bool sticky_scrolling_; + bool coloured_bg_; bool always_zoom_to_fit_; QTimer delayed_view_updater_; @@ -423,10 +429,12 @@ private: QTimer lazy_event_handler_; // This is true when the defaults couldn't be set due to insufficient info - bool scroll_needs_defaults; + bool scroll_needs_defaults_; // A nonzero value indicates the v offset to restore. See View::resizeEvent() int saved_v_offset_; + + bool size_finalized_; }; } // namespace TraceView