X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fview%2Fcursor.h;h=4c0c35dd85de81d8372d0804f090ac9230df3257;hb=96d3ad83edb89b2d4e0e4a4f0860c13ebbcf737a;hp=2bedb5e9336b45518dd54514b6a3062945667d57;hpb=b42d25c43e52c900cbdd3e5cde0282961b8721e7;p=pulseview.git diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 2bedb5e9..4c0c35dd 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -40,7 +40,6 @@ private: static const QColor HighlightColour; static const QColor TextColour; - static const int Size; static const int Offset; static const int ArrowSize; @@ -50,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: /** @@ -74,6 +74,8 @@ private: void compute_text_size(QPainter &p, unsigned int prefix); private: + const Cursor &_other; + QSizeF _text_size; };