X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fview.hpp;h=635273dae74ad6e1131a592da699beba6a8e76e7;hp=9bb42ef14ea6e239500482698c81f95994c94cc9;hb=b2650e6978b19c44a6fc375931bc412ad4eefa5b;hpb=48257a69ffad409c9893605d99cd6e15161dff4f diff --git a/pv/view/view.hpp b/pv/view/view.hpp index 9bb42ef1..635273da 100644 --- a/pv/view/view.hpp +++ b/pv/view/view.hpp @@ -55,6 +55,7 @@ class Header; class Ruler; class Trace; class Viewport; +class TriggerMarker; class View : public QAbstractScrollArea, public TraceTreeItemOwner { Q_OBJECT @@ -170,6 +171,12 @@ public: */ 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); + /** * Returns true if cursors are displayed. false otherwise. */ @@ -383,6 +390,8 @@ private: std::list< std::shared_ptr > flags_; char next_flag_text_; + std::vector< std::shared_ptr > trigger_markers_; + QPoint hover_point_; unsigned int sticky_events_;