SelectableItem: Renamed to ViewItem
[pulseview.git] / pv / view / rowitem.hpp
index 4f973e3fc218647d355fcede1492d45fe0a3725c..e7f55c6268e290e6d102c0baaa2b2e09f87a22c1 100644 (file)
 #include <QPropertyAnimation>
 
 #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<pv::view::RowItem>
 {
        Q_OBJECT
@@ -129,19 +129,10 @@ 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;
-
-       /**
-        * 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();