X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.hpp;h=8374244215807b5c34e4433c441c8f4a19582e6d;hb=dbfae3f1b55b984c7ee7e619a8da53b77db98c90;hp=eb313a7ec6825d379d011c1ec12a358cf8b86254;hpb=3b9c4a0df39e718ba69f3c778b51676617aeb1eb;p=pulseview.git diff --git a/pv/view/timeitem.hpp b/pv/view/timeitem.hpp index eb313a7..8374244 100644 --- a/pv/view/timeitem.hpp +++ b/pv/view/timeitem.hpp @@ -21,14 +21,15 @@ #ifndef PULSEVIEW_PV_VIEW_TIMEITEM_H #define PULSEVIEW_PV_VIEW_TIMEITEM_H -#include "selectableitem.hpp" +#include "viewitem.hpp" namespace pv { namespace view { class View; -class TimeItem : public SelectableItem +class TimeItem : public ViewItem + { Q_OBJECT @@ -45,6 +46,15 @@ public: */ virtual void set_time(double time) = 0; + virtual float get_x() 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. + */ + virtual void paint_label(QPainter &p, const QRect &rect) = 0; + protected: View &view_; };