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