]> sigrok.org Git - pulseview.git/blobdiff - pv/view/timeitem.hpp
ViewItem: Use drag_point() with drag_by()
[pulseview.git] / pv / view / timeitem.hpp
index e47f1a6bf1564e39425728e35872733d7e592215..ba4ce8b6d69799a8d1b828461c738435e5b0e988 100644 (file)
 #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
 
@@ -39,6 +40,20 @@ protected:
         */
        TimeItem(View &view);
 
+public:
+       /**
+        * Sets the time of the marker.
+        */
+       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_;
 };