X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=290365e8ff3e28f9a5ee9b00f4237d8785b29130;hp=4c0c35dd85de81d8372d0804f090ac9230df3257;hb=8debe10dd47a5f519cd6e9069231f8e77c9c04e1;hpb=96d3ad83edb89b2d4e0e4a4f0860c13ebbcf737a diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 4c0c35dd..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; @@ -49,9 +51,8 @@ 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 &other); + Cursor(View &view, double time); public: /** @@ -73,9 +74,9 @@ public: private: void compute_text_size(QPainter &p, unsigned int prefix); -private: - const Cursor &_other; + boost::shared_ptr get_other_cursor() const; +private: QSizeF _text_size; };