X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fview.hpp;h=2ba157d8c5ea9cedecca3338c86908855ca215c0;hp=007ea3b68ba688395e0d20a87c25aea3cab30503;hb=051ba3b399abbd83fea8b7ef6f8876884ac0786c;hpb=ae5f66281c38a76dcb7011907d7a86a99b9dd4dd diff --git a/pv/view/view.hpp b/pv/view/view.hpp index 007ea3b6..2ba157d8 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,18 +199,17 @@ 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. */ void enable_coloured_bg(bool state); + /** + * Enable or disable showing sampling points. + */ + void enable_show_sampling_points(bool state); + /** * Returns true if cursors are displayed. false otherwise. */ @@ -401,6 +400,7 @@ private: bool updating_scroll_; bool sticky_scrolling_; + bool coloured_bg_; bool always_zoom_to_fit_; QTimer delayed_view_updater_;