]> sigrok.org Git - pulseview.git/blame - pv/views/trace/viewitem.hpp
Implement annotation export from the DecodeTrace context menu
[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
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 */
a3d5a7c7 102 virtual QPoint drag_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 */
60938e04 133 virtual void paint_back(QPainter &p, ViewItemPaintParams &pp);
d4e39570
JH
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 */
60938e04 140 virtual void paint_mid(QPainter &p, ViewItemPaintParams &pp);
d4e39570
JH
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 */
60938e04 147 virtual void paint_fore(QPainter &p, ViewItemPaintParams &pp);
d4e39570 148
d8d724cc
JH
149public:
150 /**
641574bc
SA
151 * Gets the text color.
152 * @remarks This color is computed by comparing the lightness
153 * of the trace color against a threshold to determine whether
d8d724cc
JH
154 * white or black would be more visible.
155 */
641574bc 156 static QColor select_text_color(QColor background);
d8d724cc 157
a55c544b 158public:
9e773fec 159 virtual QMenu* create_header_context_menu(QWidget *parent);
9b6378f1 160
be843692 161 virtual QMenu* create_view_context_menu(QWidget *parent, QPoint &click_pos);
d9b55cc8 162
0f2f14a4 163 virtual pv::widgets::Popup* create_popup(QWidget *parent);
a28a212c 164
5ed1adf5
JH
165 virtual void delete_pressed();
166
d09674d4
JH
167protected:
168 static QPen highlight_pen();
169
9b6378f1 170protected:
8dbbc7f0 171 QWidget *context_parent_;
23e75650 172 QPoint drag_point_;
0c238923
JH
173
174private:
8dbbc7f0 175 bool selected_;
e0e90d80
JH
176};
177
1573bf16 178} // namespace trace
f4e57597 179} // namespace views
e0e90d80
JH
180} // namespace pv
181
7a01bd36 182#endif // PULSEVIEW_PV_VIEWITEM_HPP