]> sigrok.org Git - pulseview.git/blame - pv/view/signal.h
Added empty context bar
[pulseview.git] / pv / view / signal.h
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
3 *
4 * Copyright (C) 2012 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
640d091b
UH
21#ifndef PULSEVIEW_PV_SIGNAL_H
22#define PULSEVIEW_PV_SIGNAL_H
23
28a4c9c5 24#include <boost/shared_ptr.hpp>
e3f65ace 25
b3b57abc 26#include <QColor>
3e46726a 27#include <QPainter>
3ef6182a 28#include <QPen>
e3f65ace 29#include <QRect>
28a4c9c5 30#include <QString>
e3f65ace 31
28a4c9c5
JH
32#include <stdint.h>
33
cec48d16
JH
34#include <libsigrok/libsigrok.h>
35
51e77110
JH
36namespace pv {
37
1b1ec774 38namespace data {
28a4c9c5 39class SignalData;
1b1ec774 40}
28a4c9c5 41
a2f71ef0
JH
42namespace view {
43
28a4c9c5
JH
44class Signal
45{
3e46726a 46private:
a29bb7fb 47 static const int LabelHitPadding;
e3374498 48 static const int LabelHighlightRadius;
3e46726a 49
3ef6182a
JH
50 static const QPen SignalAxisPen;
51
28a4c9c5 52protected:
cec48d16 53 Signal(const sr_probe *const probe);
28a4c9c5
JH
54
55public:
49f8ff3f
JH
56 /**
57 * Gets the name of this signal.
58 */
28a4c9c5
JH
59 QString get_name() const;
60
49f8ff3f
JH
61 /**
62 * Sets the name of the signal.
63 */
64 void set_name(QString name);
65
b3b57abc
JH
66 /**
67 * Get the colour of the signal.
68 */
69 QColor get_colour() const;
70
71 /**
72 * Set the colour of the signal.
73 */
74 void set_colour(QColor colour);
75
2e575351
JH
76 /**
77 * Gets the vertical layout offset of this signal.
78 */
79 int get_v_offset() const;
80
81 /**
82 * Sets the vertical layout offset of this signal.
83 */
84 void set_v_offset(int v_offset);
85
e3374498
JH
86 /**
87 * Returns true if the signal has been selected by the user.
88 */
89 bool selected() const;
90
91 /**
92 * Selects or deselects the signal.
93 */
94 void select(bool select = true);
95
3b18c57d 96 /**
64b60583
JH
97 * Paints the signal with a QPainter
98 * @param p the QPainter to paint into.
2658961b
JH
99 * @param y the y-coordinate to draw the signal at
100 * @param left the x-coordinate of the left edge of the signal
101 * @param right the x-coordinate of the right edge of the signal
fb0d32cb 102 * @param scale the scale in seconds per pixel.
3b18c57d 103 * @param offset the time to show at the left hand edge of
fb0d32cb 104 * the view in seconds.
3b18c57d 105 **/
2658961b
JH
106 virtual void paint(QPainter &p, int y, int left, int right,
107 double scale, double offset) = 0;
a29bb7fb
JH
108
109 /**
110 * Paints the signal label into a QGLWidget.
111 * @param p the QPainter to paint into.
2658961b
JH
112 * @param y the y-coordinate of the signal.
113 * @param right the x-coordinate of the right edge of the header
114 * area.
a29bb7fb
JH
115 * @param hover true if the label is being hovered over by the mouse.
116 */
2658961b 117 virtual void paint_label(QPainter &p, int y, int right,
a29bb7fb
JH
118 bool hover);
119
120 /**
121 * Determines if a point is in the header label rect.
2658961b
JH
122 * @param y the y-coordinate of the signal.
123 * @param left the x-coordinate of the left edge of the header
124 * area.
125 * @param right the x-coordinate of the right edge of the header
126 * area.
a29bb7fb
JH
127 * @param point the point to test.
128 */
2658961b
JH
129 bool pt_in_label_rect(int y, int left, int right,
130 const QPoint &point);
a29bb7fb 131
3ef6182a
JH
132protected:
133
134 /**
135 * Paints a zero axis across the viewport.
136 * @param p the QPainter to paint into.
137 * @param y the y-offset of the axis.
138 * @param left the x-coordinate of the left edge of the view.
139 * @param right the x-coordinate of the right edge of the view.
140 */
141 void paint_axis(QPainter &p, int y, int left, int right);
142
a29bb7fb 143private:
ed6f0f4f
JH
144
145 /**
146 * Computes an caches the size of the label text.
147 */
148 void compute_text_size(QPainter &p);
149
3b258424
JH
150 /**
151 * Computes the outline rectangle of a label.
152 * @param p the QPainter to lay out text with.
2658961b
JH
153 * @param y the y-coordinate of the signal.
154 * @param right the x-coordinate of the right edge of the header
155 * area.
3b258424
JH
156 * @return Returns the rectangle of the signal label.
157 */
2658961b 158 QRectF get_label_rect(int y, int right);
3e46726a 159
28a4c9c5 160protected:
cec48d16
JH
161 const sr_probe *const _probe;
162
28a4c9c5 163 QString _name;
b3b57abc 164 QColor _colour;
2e575351 165 int _v_offset;
b3b57abc 166
e3374498
JH
167 bool _selected;
168
ed6f0f4f 169 QSizeF _text_size;
28a4c9c5 170};
51e77110 171
8d634081 172} // namespace view
51e77110 173} // namespace pv
640d091b
UH
174
175#endif // PULSEVIEW_PV_SIGNAL_H