]> sigrok.org Git - pulseview.git/blame - pv/view/trace.h
Probes popup now live applies properly
[pulseview.git] / pv / view / trace.h
CommitLineData
931f20b0
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
6739e8a5
JH
21#ifndef PULSEVIEW_PV_VIEW_TRACE_H
22#define PULSEVIEW_PV_VIEW_TRACE_H
931f20b0
JH
23
24#include <QColor>
25#include <QPainter>
fe08b6e8 26#include <QPen>
931f20b0
JH
27#include <QRect>
28#include <QString>
29
30#include <stdint.h>
31
32#include "selectableitem.h"
33
34namespace pv {
35
36class SigSession;
37
38namespace view {
39
01fd3263
JH
40class View;
41
931f20b0
JH
42class Trace : public SelectableItem
43{
44 Q_OBJECT
45
46private:
fe08b6e8 47 static const QPen AxisPen;
931f20b0
JH
48 static const int LabelHitPadding;
49
50protected:
51 Trace(SigSession &session, QString name);
52
53public:
54 /**
55 * Gets the name of this signal.
56 */
57 QString get_name() const;
58
59 /**
60 * Sets the name of the signal.
61 */
62 virtual void set_name(QString name);
63
64 /**
65 * Get the colour of the signal.
66 */
67 QColor get_colour() const;
68
69 /**
70 * Set the colour of the signal.
71 */
72 void set_colour(QColor colour);
73
74 /**
75 * Gets the vertical layout offset of this signal.
76 */
77 int get_v_offset() const;
78
79 /**
80 * Sets the vertical layout offset of this signal.
81 */
82 void set_v_offset(int v_offset);
83
84 /**
85 * Returns true if the trace is visible and enabled.
86 */
87 virtual bool enabled() const = 0;
88
e0fc5810 89 virtual void set_view(pv::view::View *view);
01fd3263 90
931f20b0 91 /**
fe08b6e8 92 * Paints the background layer of the trace with a QPainter
931f20b0 93 * @param p the QPainter to paint into.
931f20b0
JH
94 * @param left the x-coordinate of the left edge of the signal
95 * @param right the x-coordinate of the right edge of the signal
931f20b0 96 **/
fe08b6e8
JH
97 virtual void paint_back(QPainter &p, int left, int right);
98
99 /**
100 * Paints the mid-layer of the trace with a QPainter
101 * @param p the QPainter to paint into.
102 * @param left the x-coordinate of the left edge of the signal
103 * @param right the x-coordinate of the right edge of the signal
104 **/
105 virtual void paint_mid(QPainter &p, int left, int right);
106
107 /**
108 * Paints the foreground layer of the trace with a QPainter
109 * @param p the QPainter to paint into.
110 * @param left the x-coordinate of the left edge of the signal
111 * @param right the x-coordinate of the right edge of the signal
112 **/
113 virtual void paint_fore(QPainter &p, int left, int right);
931f20b0
JH
114
115 /**
116 * Paints the signal label into a QGLWidget.
117 * @param p the QPainter to paint into.
931f20b0
JH
118 * @param right the x-coordinate of the right edge of the header
119 * area.
120 * @param hover true if the label is being hovered over by the mouse.
121 */
01fd3263 122 virtual void paint_label(QPainter &p, int right, bool hover);
931f20b0
JH
123
124 /**
125 * Determines if a point is in the header label rect.
931f20b0
JH
126 * @param left the x-coordinate of the left edge of the header
127 * area.
128 * @param right the x-coordinate of the right edge of the header
129 * area.
130 * @param point the point to test.
131 */
01fd3263 132 bool pt_in_label_rect(int left, int right, const QPoint &point);
931f20b0 133
9b6378f1
JH
134 virtual QMenu* create_context_menu(QWidget *parent);
135
569d1e41
JH
136 pv::widgets::Popup* create_popup(QWidget *parent);
137
fe08b6e8
JH
138 /**
139 * Gets the y-offset of the axis.
140 */
141 int get_y() const;
142
569d1e41 143protected:
410f9c81
JH
144 /**
145 * Gets the text colour.
146 * @remarks This colour is computed by comparing the lightness
147 * of the trace colour against a threshold to determine whether
148 * white or black would be more visible.
149 */
150 QColor get_text_colour() const;
151
fe08b6e8
JH
152 /**
153 * Paints a zero axis across the viewport.
154 * @param p the QPainter to paint into.
155 * @param y the y-offset of the axis.
156 * @param left the x-coordinate of the left edge of the view.
157 * @param right the x-coordinate of the right edge of the view.
158 */
159 void paint_axis(QPainter &p, int y, int left, int right);
160
91e8bf08
JH
161 void add_colour_option(QWidget *parent, QFormLayout *form);
162
569d1e41
JH
163 virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
164
931f20b0
JH
165private:
166
167 /**
168 * Computes an caches the size of the label text.
169 */
170 void compute_text_size(QPainter &p);
171
172 /**
173 * Computes the outline rectangle of a label.
174 * @param p the QPainter to lay out text with.
931f20b0
JH
175 * @param right the x-coordinate of the right edge of the header
176 * area.
177 * @return Returns the rectangle of the signal label.
178 */
01fd3263 179 QRectF get_label_rect(int right);
931f20b0 180
9b6378f1 181private slots:
68456dab
JH
182 void on_text_changed(const QString &text);
183
91e8bf08
JH
184 void on_colour_changed(const QColor &colour);
185
931f20b0 186signals:
aca00b1e 187 void visibility_changed();
931f20b0 188 void text_changed();
91e8bf08 189 void colour_changed();
931f20b0
JH
190
191protected:
192 pv::SigSession &_session;
01fd3263 193 pv::view::View *_view;
931f20b0
JH
194
195 QString _name;
196 QColor _colour;
197 int _v_offset;
198
199 QSizeF _text_size;
200};
201
202} // namespace view
203} // namespace pv
204
6739e8a5 205#endif // PULSEVIEW_PV_VIEW_TRACE_H