]> sigrok.org Git - pulseview.git/blame - pv/view/viewitem.hpp
Ruler: Recombined with CursorHeader
[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
26e3af6b
JH
21#ifndef PULSEVIEW_PV_VIEWITEM_H
22#define PULSEVIEW_PV_VIEWITEM_H
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
e0e90d80
JH
40namespace view {
41
26e3af6b 42class ViewItem : public QObject
e0e90d80 43{
2a2512b2
JH
44 Q_OBJECT
45
819e2e95 46public:
d09674d4
JH
47 static const int HighlightRadius;
48
f1283456 49public:
26e3af6b 50 ViewItem();
f1283456
JH
51
52public:
096fb584
JH
53 /**
54 * Returns true if the item is visible and enabled.
55 */
56 virtual bool enabled() const = 0;
57
f1283456 58 /**
7ccd5a64 59 * Returns true if the item has been selected by the user.
f1283456
JH
60 */
61 bool selected() const;
62
63 /**
64 * Selects or deselects the signal.
65 */
66 void select(bool select = true);
67
0dda6fe5
JH
68 /**
69 * Returns true if the item is being dragged.
70 */
71 bool dragging() const;
72
73 /**
74 * Retunrns the current drag point.
75 */
76 QPoint drag_point() const;
77
78 /**
79 * Sets this item into the dragged state.
80 */
81 void drag();
82
83 /**
84 * Sets this item into the un-dragged state.
85 */
86 void drag_release();
87
88 /**
89 * Get the drag point.
90 */
91 virtual QPoint point() const = 0;
92
4a5c385e
JH
93 /**
94 * Computes the outline rectangle of a label.
95 * @param rect the rectangle of the header area.
96 * @return Returns the rectangle of the signal label.
97 */
98 virtual QRectF label_rect(const QRectF &rect) const = 0;
99
d4e39570
JH
100 /**
101 * Paints the background layer of the item with a QPainter
102 * @param p the QPainter to paint into.
103 * @param pp the painting parameters object to paint with.
104 **/
105 virtual void paint_back(QPainter &p, const ViewItemPaintParams &pp);
106
107 /**
108 * Paints the mid-layer of the item with a QPainter
109 * @param p the QPainter to paint into.
110 * @param pp the painting parameters object to paint with.
111 **/
112 virtual void paint_mid(QPainter &p, const ViewItemPaintParams &pp);
113
114 /**
115 * Paints the foreground layer of the item with a QPainter
116 * @param p the QPainter to paint into.
117 * @param pp the painting parameters object to paint with.
118 **/
119 virtual void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
120
d8d724cc
JH
121public:
122 /**
123 * Gets the text colour.
124 * @remarks This colour is computed by comparing the lightness
125 * of the trace colour against a threshold to determine whether
126 * white or black would be more visible.
127 */
128 static QColor select_text_colour(QColor background);
129
a55c544b 130public:
9b6378f1
JH
131 virtual QMenu* create_context_menu(QWidget *parent);
132
a28a212c
JH
133 virtual pv::widgets::Popup* create_popup(QWidget *parent) = 0;
134
5ed1adf5
JH
135 virtual void delete_pressed();
136
d09674d4
JH
137protected:
138 static QPen highlight_pen();
139
9b6378f1 140protected:
8dbbc7f0 141 QWidget *context_parent_;
9b6378f1 142
f1283456 143private:
8dbbc7f0
JH
144 bool selected_;
145 QPoint drag_point_;
e0e90d80
JH
146};
147
148} // namespace view
149} // namespace pv
150
26e3af6b 151#endif // PULSEVIEW_PV_VIEWITEM_H