]> sigrok.org Git - pulseview.git/blobdiff - pv/view/timeitem.hpp
View: Restore the original signals_changed() positioning code
[pulseview.git] / pv / view / timeitem.hpp
index 8374244215807b5c34e4433c441c8f4a19582e6d..cd6f5f2499c428555189257482e118fd4ab57709 100644 (file)
@@ -18,8 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_VIEW_TIMEITEM_H
-#define PULSEVIEW_PV_VIEW_TIMEITEM_H
+#ifndef PULSEVIEW_PV_VIEW_TIMEITEM_HPP
+#define PULSEVIEW_PV_VIEW_TIMEITEM_HPP
 
 #include "viewitem.hpp"
 
@@ -44,16 +44,15 @@ public:
        /**
         * Sets the time of the marker.
         */
-       virtual void set_time(double time) = 0;
+       virtual void set_time(const pv::util::Timestamp& 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.
+        * 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_;
@@ -62,4 +61,4 @@ protected:
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEW_TIMEITEM_H
+#endif // PULSEVIEW_PV_VIEW_TIMEITEM_HPP