X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=16e8298b8df4a8a0c98ad038dd78a90cb37043f7;hb=18f7104f875a71bceeb152398b682737528a4ad7;hp=2e16882dac28613b1d81796a4b2a216c10d413bd;hpb=50b53260403749627e75892873f8828f44f4b85d;p=pulseview.git diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 2e16882d..16e8298b 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -23,6 +23,8 @@ #include "timemarker.h" +#include + #include class QPainter; @@ -34,7 +36,7 @@ class Cursor : public TimeMarker { Q_OBJECT -private: +public: static const QColor LineColour; static const QColor FillColour; static const QColor HighlightColour; @@ -50,7 +52,7 @@ public: * @param view A reference to the view that owns this cursor pair. * @param time The time to set the flag to. */ - Cursor(const View &view, double time); + Cursor(View &view, double time); public: /** @@ -72,6 +74,8 @@ public: private: void compute_text_size(QPainter &p, unsigned int prefix); + std::shared_ptr get_other_cursor() const; + private: QSizeF _text_size; };