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