X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.hpp;h=ba4ce8b6d69799a8d1b828461c738435e5b0e988;hb=208c6fc371951fe74ba5a08a0950f2837eef8b7b;hp=eb313a7ec6825d379d011c1ec12a358cf8b86254;hpb=3b9c4a0df39e718ba69f3c778b51676617aeb1eb;p=pulseview.git diff --git a/pv/view/timeitem.hpp b/pv/view/timeitem.hpp index eb313a7e..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 @@ -45,6 +46,14 @@ public: */ virtual void set_time(double time) = 0; + virtual float get_x() const = 0; + + /** + * Drags the item to a delta relative to the drag point. + * @param delta the offset from the drag point. + */ + void drag_by(const QPoint &delta); + protected: View &view_; };