]> sigrok.org Git - pulseview.git/blame - pv/views/trace/viewitem.hpp
Fix item dragging
[pulseview.git] / pv / views / trace / 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>
be843692 26#include <QPoint>
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 40namespace views {
1573bf16 41namespace trace {
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
cbd9ec7f
SA
62 /**
63 * Returns true if the item may be selected.
64 */
65 virtual bool is_selectable(QPoint pos) const;
66
f1283456 67 /**
7ccd5a64 68 * Returns true if the item has been selected by the user.
f1283456
JH
69 */
70 bool selected() const;
71
72 /**
73 * Selects or deselects the signal.
74 */
365ae4e6 75 virtual void select(bool select = true);
f1283456 76
a009d219 77 /**
223d0c37 78 * Returns true if the item may be dragged/moved.
a009d219 79 */
119c5c23 80 virtual bool is_draggable(QPoint pos) const;
a009d219 81
0dda6fe5
JH
82 /**
83 * Returns true if the item is being dragged.
84 */
85 bool dragging() const;
86
0dda6fe5
JH
87 /**
88 * Sets this item into the dragged state.
89 */
90 void drag();
91
92 /**
93 * Sets this item into the un-dragged state.
94 */
bf80cfa4 95 virtual void drag_release();
0dda6fe5 96
23e75650
JH
97 /**
98 * Drags the item to a delta relative to the drag point.
99 * @param delta the offset from the drag point.
100 */
101 virtual void drag_by(const QPoint &delta) = 0;
102
0dda6fe5
JH
103 /**
104 * Get the drag point.
be717066 105 * @param rect the rectangle of the widget area.
0dda6fe5 106 */
a3d5a7c7 107 virtual QPoint drag_point(const QRect &rect) const = 0;
0dda6fe5 108
4a5c385e
JH
109 /**
110 * Computes the outline rectangle of a label.
111 * @param rect the rectangle of the header area.
112 * @return Returns the rectangle of the signal label.
3cd51b50 113 * @remarks The default implementation returns an empty rectangle.
4a5c385e 114 */
3cd51b50 115 virtual QRectF label_rect(const QRectF &rect) const;
4a5c385e 116
7708eb92
JH
117 /**
118 * Computes the outline rectangle of the viewport hit-box.
119 * @param rect the rectangle of the viewport area.
120 * @return Returns the rectangle of the hit-box.
121 * @remarks The default implementation returns an empty hit-box.
122 */
cbf0f87e 123 virtual QRectF hit_box_rect(const ViewItemPaintParams &pp) const;
7708eb92 124
49028d6c
JH
125 /**
126 * Paints the signal label.
127 * @param p the QPainter to paint into.
128 * @param rect the rectangle of the header area.
129 * @param hover true if the label is being hovered over by the mouse.
130 */
fa792224 131 virtual void paint_label(QPainter &p, const QRect &rect, bool hover);
49028d6c 132
d4e39570
JH
133 /**
134 * Paints the background 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.
223d0c37 137 */
60938e04 138 virtual void paint_back(QPainter &p, ViewItemPaintParams &pp);
d4e39570
JH
139
140 /**
141 * Paints the mid-layer of the item with a QPainter
142 * @param p the QPainter to paint into.
143 * @param pp the painting parameters object to paint with.
223d0c37 144 */
60938e04 145 virtual void paint_mid(QPainter &p, ViewItemPaintParams &pp);
d4e39570
JH
146
147 /**
148 * Paints the foreground layer of the item with a QPainter
149 * @param p the QPainter to paint into.
150 * @param pp the painting parameters object to paint with.
223d0c37 151 */
60938e04 152 virtual void paint_fore(QPainter &p, ViewItemPaintParams &pp);
d4e39570 153
d8d724cc
JH
154public:
155 /**
641574bc
SA
156 * Gets the text color.
157 * @remarks This color is computed by comparing the lightness
158 * of the trace color against a threshold to determine whether
d8d724cc
JH
159 * white or black would be more visible.
160 */
641574bc 161 static QColor select_text_color(QColor background);
d8d724cc 162
a55c544b 163public:
9e773fec 164 virtual QMenu* create_header_context_menu(QWidget *parent);
9b6378f1 165
be843692 166 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
d9b55cc8 167
0f2f14a4 168 virtual pv::widgets::Popup* create_popup(QWidget *parent);
a28a212c 169
5ed1adf5
JH
170 virtual void delete_pressed();
171
d09674d4
JH
172protected:
173 static QPen highlight_pen();
174
9b6378f1 175protected:
8dbbc7f0 176 QWidget *context_parent_;
23e75650 177 QPoint drag_point_;
0c238923
JH
178
179private:
8dbbc7f0 180 bool selected_;
e0e90d80
JH
181};
182
1573bf16 183} // namespace trace
f4e57597 184} // namespace views
e0e90d80
JH
185} // namespace pv
186
7a01bd36 187#endif // PULSEVIEW_PV_VIEWITEM_HPP