X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursor.h;h=16e8298b8df4a8a0c98ad038dd78a90cb37043f7;hp=ec51b81abdb4cfd495a358200eb543a1b9392069;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hpb=3efda736308edc11468a4b59bdb28d5793902529 diff --git a/pv/view/cursor.h b/pv/view/cursor.h index ec51b81a..16e8298b 100644 --- a/pv/view/cursor.h +++ b/pv/view/cursor.h @@ -23,6 +23,12 @@ #include "timemarker.h" +#include + +#include + +class QPainter; + namespace pv { namespace view { @@ -30,32 +36,51 @@ 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; + public: /** * Constructor. - * @param colour A reference to the colour of this cursor. + * @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: + /** + * Gets the marker label rectangle. + * @param rect The rectangle of the ruler client area. + * @return Returns the label rectangle. + */ + QRectF get_label_rect(const QRect &rect) const; + /** * Paints the cursor's label to the ruler. * @param p The painter to draw with. * @param rect The rectangle of the ruler client area. + * @param prefix The index of the SI prefix to use. */ - void paint_label(QPainter &p, const QRect &rect); + void paint_label(QPainter &p, const QRect &rect, + unsigned int prefix); + +private: + void compute_text_size(QPainter &p, unsigned int prefix); + + std::shared_ptr get_other_cursor() const; + +private: + QSizeF _text_size; }; } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_CURSOR_H \ No newline at end of file +#endif // PULSEVIEW_PV_VIEW_CURSOR_H