X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.hpp;h=4f7361bd13acb5a9e119e30183c8f82a5a0a92d0;hp=0103fb041dfbdbede975ee4753de759c5d89546b;hb=5a6a4ce3e32a250cd586f4755573ed3bed530d7b;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/view/timemarker.hpp b/pv/view/timemarker.hpp index 0103fb04..4f7361bd 100644 --- a/pv/view/timemarker.hpp +++ b/pv/view/timemarker.hpp @@ -27,7 +27,7 @@ #include #include -#include "selectableitem.hpp" +#include "timeitem.hpp" class QPainter; class QRect; @@ -37,10 +37,13 @@ namespace view { class View; -class TimeMarker : public SelectableItem +class TimeMarker : public TimeItem { Q_OBJECT +public: + static const int ArrowSize; + protected: /** * Constructor. @@ -64,43 +67,44 @@ public: float get_x() const; /** - * Gets the drag point of the row item. + * Gets the arrow-tip point of the time marker. + * @param rect the rectangle of the ruler area. */ - QPoint point() const; + QPoint point(const QRect &rect) const; /** - * Paints the marker to the viewport. - * @param p The painter to draw with. - * @param rect The rectangle of the viewport client area. + * Computes the outline rectangle of a label. + * @param rect the rectangle of the header area. + * @return Returns the rectangle of the signal label. */ - virtual void paint(QPainter &p, const QRect &rect); + QRectF label_rect(const QRectF &rect) const; /** - * Gets the marker label rectangle. - * @param rect The rectangle of the ruler client area. - * @return Returns the label rectangle. + * Gets the text to show in the marker. */ - virtual QRectF get_label_rect(const QRect &rect) const = 0; + virtual QString get_text() const = 0; /** * Paints the marker's label to the ruler. * @param p The painter to draw with. * @param rect The rectangle of the ruler client area. - * @param prefix The SI prefix to paint time value with. + * @param hover true if the label is being hovered over by the mouse. */ - virtual void paint_label(QPainter &p, const QRect &rect, - unsigned int prefix) = 0; + void paint_label(QPainter &p, const QRect &rect, bool hover); - pv::widgets::Popup* create_popup(QWidget *parent); + /** + * Paints the foreground layer of the item with a QPainter + * @param p the QPainter to paint into. + * @param pp the painting parameters object to paint with. + **/ + void paint_fore(QPainter &p, const ViewItemPaintParams &pp); + + virtual pv::widgets::Popup* create_popup(QWidget *parent); private Q_SLOTS: void on_value_changed(double value); -Q_SIGNALS: - void time_changed(); - protected: - View &view_; const QColor &colour_; double time_;