X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fview.hpp;h=c289cfcb00ce93060d42c5095ba18a689444972d;hb=143d322d0c92ea5c2cc51facc37b68787362c244;hp=007ea3b68ba688395e0d20a87c25aea3cab30503;hpb=ae5f66281c38a76dcb7011907d7a86a99b9dd4dd;p=pulseview.git diff --git a/pv/view/view.hpp b/pv/view/view.hpp index 007ea3b..c289cfc 100644 --- a/pv/view/view.hpp +++ b/pv/view/view.hpp @@ -89,7 +89,7 @@ private: static const int ScaleUnits[3]; public: - explicit View(Session &session, QWidget *parent = 0); + explicit View(Session &session, bool is_main_view=false, QWidget *parent = 0); Session& session(); const Session& session() const; @@ -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_;