2 * This file is part of the PulseView project.
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef PULSEVIEW_PV_VIEWITEM_HPP
22 #define PULSEVIEW_PV_VIEWITEM_HPP
28 #include "viewitempaintparams.hpp"
42 class ViewItem : public QObject
47 static const QSizeF LabelPadding;
48 static const int HighlightRadius;
55 * Returns true if the item is visible and enabled.
57 virtual bool enabled() const = 0;
60 * Returns true if the item has been selected by the user.
62 bool selected() const;
65 * Selects or deselects the signal.
67 void select(bool select = true);
70 * Returns true if the item is being dragged.
72 bool dragging() const;
75 * Sets this item into the dragged state.
80 * Sets this item into the un-dragged state.
85 * Drags the item to a delta relative to the drag point.
86 * @param delta the offset from the drag point.
88 virtual void drag_by(const QPoint &delta) = 0;
92 * @param rect the rectangle of the widget area.
94 virtual QPoint point(const QRect &rect) const = 0;
97 * Computes the outline rectangle of a label.
98 * @param rect the rectangle of the header area.
99 * @return Returns the rectangle of the signal label.
101 virtual QRectF label_rect(const QRectF &rect) const = 0;
104 * Computes the outline rectangle of the viewport hit-box.
105 * @param rect the rectangle of the viewport area.
106 * @return Returns the rectangle of the hit-box.
107 * @remarks The default implementation returns an empty hit-box.
109 virtual QRectF hit_box_rect(const QRectF &rect) const;
112 * Paints the signal label.
113 * @param p the QPainter to paint into.
114 * @param rect the rectangle of the header area.
115 * @param hover true if the label is being hovered over by the mouse.
117 virtual void paint_label(QPainter &p, const QRect &rect, bool hover) = 0;
120 * Paints the background layer of the item with a QPainter
121 * @param p the QPainter to paint into.
122 * @param pp the painting parameters object to paint with.
124 virtual void paint_back(QPainter &p, const ViewItemPaintParams &pp);
127 * Paints the mid-layer of the item with a QPainter
128 * @param p the QPainter to paint into.
129 * @param pp the painting parameters object to paint with.
131 virtual void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
134 * Paints the foreground layer of the item with a QPainter
135 * @param p the QPainter to paint into.
136 * @param pp the painting parameters object to paint with.
138 virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
142 * Gets the text colour.
143 * @remarks This colour is computed by comparing the lightness
144 * of the trace colour against a threshold to determine whether
145 * white or black would be more visible.
147 static QColor select_text_colour(QColor background);
150 virtual QMenu* create_context_menu(QWidget *parent);
152 virtual pv::widgets::Popup* create_popup(QWidget *parent) = 0;
154 virtual void delete_pressed();
157 static QPen highlight_pen();
160 QWidget *context_parent_;
170 #endif // PULSEVIEW_PV_VIEWITEM_HPP