]> sigrok.org Git - pulseview.git/blame - pv/view/viewitem.hpp
MainWindow: Use regular pointer for QDockWidgets
[pulseview.git] / pv / view / viewitem.hpp
CommitLineData
e0e90d80
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
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.
10 *
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.
15 *
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
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEWITEM_HPP
22#define PULSEVIEW_PV_VIEWITEM_HPP
e0e90d80
JH
23
24#include <list>
25
d09674d4 26#include <QPen>
2a2512b2 27
d4e39570
JH
28#include "viewitempaintparams.hpp"
29
e0e90d80 30class QAction;
9b6378f1
JH
31class QMenu;
32class QWidget;
e0e90d80
JH
33
34namespace pv {
a28a212c
JH
35
36namespace widgets {
37class Popup;
38}
39
f4e57597
SA
40namespace views {
41namespace TraceView {
e0e90d80 42
c373f828
JH
43class ViewItemOwner;
44
26e3af6b 45class ViewItem : public QObject
e0e90d80 46{
2a2512b2
JH
47 Q_OBJECT
48
819e2e95 49public:
ec39632d 50 static const QSizeF LabelPadding;
d09674d4
JH
51 static const int HighlightRadius;
52
f1283456 53public:
26e3af6b 54 ViewItem();
f1283456
JH
55
56public:
096fb584
JH
57 /**
58 * Returns true if the item is visible and enabled.
59 */
60 virtual bool enabled() const = 0;
61
f1283456 62 /**
7ccd5a64 63 * Returns true if the item has been selected by the user.
f1283456
JH
64 */
65 bool selected() const;
66
67 /**
68 * Selects or deselects the signal.
69 */
365ae4e6 70 virtual void select(bool select = true);
f1283456 71
a009d219 72 /**
223d0c37 73 * Returns true if the item may be dragged/moved.
a009d219
TS
74 */
75 virtual bool is_draggable() const;
76
0dda6fe5
JH
77 /**
78 * Returns true if the item is being dragged.
79 */
80 bool dragging() const;
81
0dda6fe5
JH
82 /**
83 * Sets this item into the dragged state.
84 */
85 void drag();
86
87 /**
88 * Sets this item into the un-dragged state.
89 */
bf80cfa4 90 virtual void drag_release();
0dda6fe5 91
23e75650
JH
92 /**
93 * Drags the item to a delta relative to the drag point.
94 * @param delta the offset from the drag point.
95 */
96 virtual void drag_by(const QPoint &delta) = 0;
97
0dda6fe5
JH
98 /**
99 * Get the drag point.
be717066 100 * @param rect the rectangle of the widget area.
0dda6fe5 101 */
be717066 102 virtual QPoint point(const QRect &rect) const = 0;
0dda6fe5 103
4a5c385e
JH
104 /**
105 * Computes the outline rectangle of a label.
106 * @param rect the rectangle of the header area.
107 * @return Returns the rectangle of the signal label.
3cd51b50 108 * @remarks The default implementation returns an empty rectangle.
4a5c385e 109 */
3cd51b50 110 virtual QRectF label_rect(const QRectF &rect) const;
4a5c385e 111
7708eb92
JH
112 /**
113 * Computes the outline rectangle of the viewport hit-box.
114 * @param rect the rectangle of the viewport area.
115 * @return Returns the rectangle of the hit-box.
116 * @remarks The default implementation returns an empty hit-box.
117 */
cbf0f87e 118 virtual QRectF hit_box_rect(const ViewItemPaintParams &pp) const;
7708eb92 119
49028d6c
JH
120 /**
121 * Paints the signal label.
122 * @param p the QPainter to paint into.
123 * @param rect the rectangle of the header area.
124 * @param hover true if the label is being hovered over by the mouse.
125 */
fa792224 126 virtual void paint_label(QPainter &p, const QRect &rect, bool hover);
49028d6c 127
d4e39570
JH
128 /**
129 * Paints the background layer of the item with a QPainter
130 * @param p the QPainter to paint into.
131 * @param pp the painting parameters object to paint with.
223d0c37 132 */
d4e39570
JH
133 virtual void paint_back(QPainter &p, const ViewItemPaintParams &pp);
134
135 /**
136 * Paints the mid-layer of the item with a QPainter
137 * @param p the QPainter to paint into.
138 * @param pp the painting parameters object to paint with.
223d0c37 139 */
d4e39570
JH
140 virtual void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
141
142 /**
143 * Paints the foreground layer of the item with a QPainter
144 * @param p the QPainter to paint into.
145 * @param pp the painting parameters object to paint with.
223d0c37 146 */
d4e39570
JH
147 virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
148
d8d724cc
JH
149public:
150 /**
151 * Gets the text colour.
152 * @remarks This colour is computed by comparing the lightness
153 * of the trace colour against a threshold to determine whether
154 * white or black would be more visible.
155 */
156 static QColor select_text_colour(QColor background);
157
a55c544b 158public:
9b6378f1
JH
159 virtual QMenu* create_context_menu(QWidget *parent);
160
0f2f14a4 161 virtual pv::widgets::Popup* create_popup(QWidget *parent);
a28a212c 162
5ed1adf5
JH
163 virtual void delete_pressed();
164
d09674d4
JH
165protected:
166 static QPen highlight_pen();
167
9b6378f1 168protected:
8dbbc7f0 169 QWidget *context_parent_;
23e75650 170 QPoint drag_point_;
0c238923
JH
171
172private:
8dbbc7f0 173 bool selected_;
e0e90d80
JH
174};
175
f4e57597
SA
176} // namespace TraceView
177} // namespace views
e0e90d80
JH
178} // namespace pv
179
7a01bd36 180#endif // PULSEVIEW_PV_VIEWITEM_HPP