X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Frowitem.hpp;h=023e2c3807b2c2d4e61bc6dd78e96591d9607cec;hp=e7f55c6268e290e6d102c0baaa2b2e09f87a22c1;hb=23e75650eba0491b2636de3cef87f893e38ae6f3;hpb=26e3af6b15f083239981729b2c3c109ed1d87ba8 diff --git a/pv/view/rowitem.hpp b/pv/view/rowitem.hpp index e7f55c62..023e2c38 100644 --- a/pv/view/rowitem.hpp +++ b/pv/view/rowitem.hpp @@ -25,7 +25,6 @@ #include -#include "rowitempaintparams.hpp" #include "viewitem.hpp" namespace pv { @@ -95,44 +94,22 @@ public: int get_visual_y() const; /** - * Gets the drag point of the row item. + * Drags the item to a delta relative to the drag point. + * @param delta the offset from the drag point. */ - QPoint point() const; + void drag_by(const QPoint &delta); /** - * Computes the vertical extents of the contents of this row item. - * @return A pair containing the minimum and maximum y-values. + * Gets the arrow-tip point of the row item marker. + * @param rect the rectangle of the header area. */ - 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); + QPoint point(const QRect &rect) const; /** - * Paints the signal label. - * @param p the QPainter to paint into. - * @param rect the rectangle of the header area. - * @param hover true if the label is being hovered over by the mouse. + * Computes the vertical extents of the contents of this row item. + * @return A pair containing the minimum and maximum y-values. */ - virtual void paint_label(QPainter &p, const QRect &rect, bool hover) = 0; + virtual std::pair v_extents() const = 0; public: virtual void hover_point_changed();