]> sigrok.org Git - pulseview.git/blobdiff - pv/view/timeitem.hpp
ViewItem: Moved in paint_fore, paint_mid and paint_back
[pulseview.git] / pv / view / timeitem.hpp
index eb313a7ec6825d379d011c1ec12a358cf8b86254..80fecb5dda316caa587f6616d6af814b5187d041 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
 
@@ -45,6 +45,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_;
 };