X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=48bf7a0ee930ab49a7975af25d0ed8ba38588afc;hb=b4d91e564cfb71d76e4aa8a4328b8a3b739ce383;hp=2e16882dac28613b1d81796a4b2a216c10d413bd;hpb=50b53260403749627e75892873f8828f44f4b85d;p=pulseview.git diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 2e16882d..48bf7a0e 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -34,7 +34,7 @@ class Cursor : public TimeMarker { Q_OBJECT -private: +public: static const QColor LineColour; static const QColor FillColour; static const QColor HighlightColour; @@ -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; };