X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.hpp;h=ba4ce8b6d69799a8d1b828461c738435e5b0e988;hp=02d22d218c29b6e7dd953f764e3560afc623bdfc;hb=6454b1e960c85b17ec9590b78bc0387dc348ae9b;hpb=2fae5107535c39adde322393d2f6d18098c0154e diff --git a/pv/view/timeitem.hpp b/pv/view/timeitem.hpp index 02d22d21..ba4ce8b6 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 @@ -48,11 +49,10 @@ public: 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. + * Drags the item to a delta relative to the drag point. + * @param delta the offset from the drag point. */ - virtual void paint_label(QPainter &p, const QRect &rect) = 0; + void drag_by(const QPoint &delta); protected: View &view_;