X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fview.hpp;h=1d63417cb89ab520dd7c43e07cfaf72f3b6240fd;hb=9b64f2dfe9179f665ef97c0d0ac992274864f4a4;hp=42cbe3c2155cb494d184330491b35f1c8ebf6e34;hpb=e62bee7326a4b04c0e914a3fa9e39d1e808821dd;p=pulseview.git diff --git a/pv/view/view.hpp b/pv/view/view.hpp index 42cbe3c..1d63417 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; @@ -199,12 +199,6 @@ public: std::pair get_time_extents() const; - /** - * Enables or disables sticky scrolling, i.e. the view always shows - * the most recent samples when capturing data. - */ - void enable_sticky_scrolling(bool state); - /** * Enables or disables coloured trace backgrounds. If they're not * coloured then they will use alternating colors. @@ -401,6 +395,7 @@ private: bool updating_scroll_; bool sticky_scrolling_; + bool coloured_bg_; bool always_zoom_to_fit_; QTimer delayed_view_updater_; @@ -427,6 +422,8 @@ private: // A nonzero value indicates the v offset to restore. See View::resizeEvent() int saved_v_offset_; + + bool size_finalized_; }; } // namespace TraceView