X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Frowitem.hpp;h=cf521ff0be88d2f030cab0c4cd4616de9728594b;hb=dbfae3f1b55b984c7ee7e619a8da53b77db98c90;hp=4f973e3fc218647d355fcede1492d45fe0a3725c;hpb=096fb584db59a7b95ea57a6accf6c282a43497f6;p=pulseview.git diff --git a/pv/view/rowitem.hpp b/pv/view/rowitem.hpp index 4f973e3f..cf521ff0 100644 --- a/pv/view/rowitem.hpp +++ b/pv/view/rowitem.hpp @@ -25,15 +25,14 @@ #include -#include "rowitempaintparams.hpp" -#include "selectableitem.hpp" +#include "viewitem.hpp" namespace pv { namespace view { class RowItemOwner; -class RowItem : public SelectableItem, +class RowItem : public ViewItem, public std::enable_shared_from_this { Q_OBJECT @@ -105,43 +104,13 @@ public: */ virtual std::pair v_extents() const = 0; - /** - * Paints the background layer of the trace with a QPainter - * @param p the QPainter to paint into. - * @param pp the painting parameters object to paint with. - **/ - virtual void paint_back(QPainter &p, const RowItemPaintParams &pp); - - /** - * Paints the mid-layer of the trace with a QPainter - * @param p the QPainter to paint into. - * @param pp the painting parameters object to paint with. - **/ - virtual void paint_mid(QPainter &p, const RowItemPaintParams &pp); - - /** - * Paints the foreground layer of the trace with a QPainter - * @param p the QPainter to paint into. - * @param pp the painting parameters object to paint with. - **/ - virtual void paint_fore(QPainter &p, const RowItemPaintParams &pp); - /** * 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; - - /** - * Computes the outline rectangle of a label. - * @param right the x-coordinate of the right edge of the header - * area. - * @return Returns the rectangle of the signal label. - */ - virtual QRectF label_rect(int right) const = 0; + virtual void paint_label(QPainter &p, const QRect &rect, bool hover) = 0; public: virtual void hover_point_changed();