]> sigrok.org Git - pulseview.git/blobdiff - pv/view/rowitem.cpp
RowItem: Fix y-offset in point()
[pulseview.git] / pv / view / rowitem.cpp
index 6e87de1019514a9a2ffa2727f0c1d5a63ea6f270..861d4adf05d28763640c12a2dac1a27d4f308f4c 100644 (file)
@@ -61,7 +61,7 @@ void RowItem::set_visual_v_offset(int v_offset)
        visual_v_offset_ = v_offset;
 
        if (owner_)
-               owner_->appearance_changed(true, true);
+               owner_->row_item_appearance_changed(true, true);
 }
 
 void RowItem::force_to_v_offset(int v_offset)
@@ -115,30 +115,9 @@ int RowItem::get_visual_y() const
        return visual_v_offset_ + owner_->owner_visual_v_offset();
 }
 
-QPoint RowItem::point() const
+QPoint RowItem::point(const QRect &rect) const
 {
-       return QPoint(0, visual_v_offset());
-}
-
-void RowItem::paint_back(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_mid(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_fore(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
+       return QPoint(rect.right(), get_visual_y());
 }
 
 void RowItem::hover_point_changed()