X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=89ea1e715e3f1a0c83dc4b2de32056cd32f98bfa;hp=48bf7a0ee930ab49a7975af25d0ed8ba38588afc;hb=58864c5c5dffac4254f199356aaeb5eabd608630;hpb=8b454527dc987d552b189099ee61cf699095aa7e diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 48bf7a0e..89ea1e71 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -23,6 +23,8 @@ #include "timemarker.h" +#include + #include class QPainter; @@ -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(const 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; };