X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=290365e8ff3e28f9a5ee9b00f4237d8785b29130;hp=2bedb5e9336b45518dd54514b6a3062945667d57;hb=8debe10dd47a5f519cd6e9069231f8e77c9c04e1;hpb=b42d25c43e52c900cbdd3e5cde0282961b8721e7 diff --git a/pv/view/cursor.h b/pv/view/cursor.h index 2bedb5e9..290365e8 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -23,6 +23,8 @@ #include "timemarker.h" +#include + #include class QPainter; @@ -34,13 +36,12 @@ class Cursor : public TimeMarker { Q_OBJECT -private: +public: static const QColor LineColour; static const QColor FillColour; static const QColor HighlightColour; static const QColor TextColour; - static const int Size; static const int Offset; static const int ArrowSize; @@ -51,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: /** @@ -73,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; };