X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fcursorpair.h;h=6c56dcd71dc89499dc8a5eceecd6593f43be1a85;hb=0dda6fe595932b2e340930104fad8ac4fc574895;hp=42e6e51fa32ca3c764ac521b1d16318983e56825;hpb=5139748b422db3a22ceed92894596873e868d676;p=pulseview.git diff --git a/pv/view/cursorpair.h b/pv/view/cursorpair.h index 42e6e51f..6c56dcd7 100644 --- a/pv/view/cursorpair.h +++ b/pv/view/cursorpair.h @@ -23,6 +23,8 @@ #include "cursor.h" +#include + #include class QPainter; @@ -40,27 +42,17 @@ public: * Constructor. * @param view A reference to the view that owns this cursor pair. */ - CursorPair(const View &view); - - /** - * Returns a reference to the first cursor. - */ - Cursor& first(); - - /** - * Returns a reference to the first cursor. - */ - const Cursor& first() const; + CursorPair(View &view); /** - * Returns a reference to the second cursor. + * Returns a pointer to the first cursor. */ - Cursor& second(); + std::shared_ptr first() const; /** - * Returns a reference to the second cursor. + * Returns a pointer to the second cursor. */ - const Cursor& second() const; + std::shared_ptr second() const; public: QRectF get_label_rect(const QRect &rect) const; @@ -77,7 +69,7 @@ public: std::pair get_cursor_offsets() const; private: - Cursor _first, _second; + std::shared_ptr _first, _second; const View &_view; QSizeF _text_size;