X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Frowitem.hpp;h=aca4fa83ecbb24bc4f372f25311e643b9a14c13c;hp=4f973e3fc218647d355fcede1492d45fe0a3725c;hb=b3f44329f5846bfb800ee53c15c65b2395d3ba0c;hpb=5c5ce7574062e0d3ad4f7d9dde70b482315d54fb diff --git a/pv/view/rowitem.hpp b/pv/view/rowitem.hpp index 4f973e3f..aca4fa83 100644 --- a/pv/view/rowitem.hpp +++ b/pv/view/rowitem.hpp @@ -129,19 +129,17 @@ public: /** * Paints the signal label. * @param p the QPainter to paint into. - * @param right the x-coordinate of the right edge of the header - * area. + * @param rect the rectangle of the header area. * @param hover true if the label is being hovered over by the mouse. */ - virtual void paint_label(QPainter &p, int right, bool hover) = 0; + virtual void paint_label(QPainter &p, const QRect &rect, bool hover) = 0; /** * Computes the outline rectangle of a label. - * @param right the x-coordinate of the right edge of the header - * area. + * @param rect the rectangle of the header area. * @return Returns the rectangle of the signal label. */ - virtual QRectF label_rect(int right) const = 0; + virtual QRectF label_rect(const QRectF &rect) const = 0; public: virtual void hover_point_changed();