X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=290365e8ff3e28f9a5ee9b00f4237d8785b29130;hp=2e16882dac28613b1d81796a4b2a216c10d413bd;hb=9d28da5ae394e572dedf0ec22c17fd259825e1c9;hpb=50b53260403749627e75892873f8828f44f4b85d diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 2e16882d..290365e8 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); + boost::shared_ptr get_other_cursor() const; + private: QSizeF _text_size; };