]> sigrok.org Git - pulseview.git/blobdiff - pv/view/viewitem.hpp
ViewItem: Make hit_box_rect take ViewItemPaintParams
[pulseview.git] / pv / view / viewitem.hpp
index 6a78b1afb583eb1c20256f936e4d0a159fd093ef..648be84e64384a6fa382a503ee28f0892a480619 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_VIEWITEM_H
-#define PULSEVIEW_PV_VIEWITEM_H
+#ifndef PULSEVIEW_PV_VIEWITEM_HPP
+#define PULSEVIEW_PV_VIEWITEM_HPP
 
 #include <list>
 
 #include <QPen>
 
+#include "viewitempaintparams.hpp"
+
 class QAction;
 class QMenu;
 class QWidget;
@@ -37,11 +39,14 @@ class Popup;
 
 namespace view {
 
+class ViewItemOwner;
+
 class ViewItem : public QObject
 {
        Q_OBJECT
 
-private:
+public:
+       static const QSizeF LabelPadding;
        static const int HighlightRadius;
 
 public:
@@ -61,18 +66,13 @@ public:
        /**
         * Selects or deselects the signal.
         */
-       void select(bool select = true);
+       virtual void select(bool select = true);
 
        /**
         * Returns true if the item is being dragged.
         */
        bool dragging() const;
 
-       /**
-        * Retunrns the current drag point.
-        */
-       QPoint drag_point() const;
-
        /**
         * Sets this item into the dragged state.
         */
@@ -81,19 +81,64 @@ public:
        /**
         * Sets this item into the un-dragged state.
         */
-       void drag_release();
+       virtual void drag_release();
+
+       /**
+        * Drags the item to a delta relative to the drag point.
+        * @param delta the offset from the drag point.
+        */
+       virtual void drag_by(const QPoint &delta) = 0;
 
        /**
         * Get the drag point.
+        * @param rect the rectangle of the widget area.
         */
-       virtual QPoint point() const = 0;
+       virtual QPoint point(const QRect &rect) const = 0;
 
        /**
         * Computes the outline rectangle of a label.
         * @param rect the rectangle of the header area.
         * @return Returns the rectangle of the signal label.
+        * @remarks The default implementation returns an empty rectangle.
+        */
+       virtual QRectF label_rect(const QRectF &rect) const;
+
+       /**
+        * Computes the outline rectangle of the viewport hit-box.
+        * @param rect the rectangle of the viewport area.
+        * @return Returns the rectangle of the hit-box.
+        * @remarks The default implementation returns an empty hit-box.
         */
-       virtual QRectF label_rect(const QRectF &rect) const = 0;
+       virtual QRectF hit_box_rect(const ViewItemPaintParams &pp) 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.
+        */
+       virtual void paint_label(QPainter &p, const QRect &rect, bool hover);
+
+       /**
+        * Paints the background layer of the item 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 ViewItemPaintParams &pp);
+
+       /**
+        * Paints the mid-layer of the item 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 ViewItemPaintParams &pp);
+
+       /**
+        * Paints the foreground layer of the item 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 ViewItemPaintParams &pp);
 
 public:
        /**
@@ -107,7 +152,7 @@ public:
 public:
        virtual QMenu* create_context_menu(QWidget *parent);
 
-       virtual pv::widgets::Popup* create_popup(QWidget *parent) = 0;
+       virtual pv::widgets::Popup* create_popup(QWidget *parent);
 
        virtual void delete_pressed();
 
@@ -116,13 +161,13 @@ protected:
 
 protected:
        QWidget *context_parent_;
+       QPoint drag_point_;
 
 private:
        bool selected_;
-       QPoint drag_point_;
 };
 
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEWITEM_H
+#endif // PULSEVIEW_PV_VIEWITEM_HPP