]> sigrok.org Git - pulseview.git/blobdiff - pv/view/cursor.h
Moved Cursor markers to the outside
[pulseview.git] / pv / view / cursor.h
index 2e16882dac28613b1d81796a4b2a216c10d413bd..4c0c35dd85de81d8372d0804f090ac9230df3257 100644 (file)
@@ -49,8 +49,9 @@ public:
         * Constructor.
         * @param view A reference to the view that owns this cursor pair.
         * @param time The time to set the flag to.
+        * @param other A reference to the other cursor.
         */
-       Cursor(const View &view, double time);
+       Cursor(const View &view, double time, Cursor &other);
 
 public:
        /**
@@ -73,6 +74,8 @@ private:
        void compute_text_size(QPainter &p, unsigned int prefix);
 
 private:
+       const Cursor &_other;
+
        QSizeF _text_size;
 };