]> sigrok.org Git - pulseview.git/blame - pv/view/signal.h
Use static signal offsets instead of offsets calculated on-the-fly
[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>
e3f65ace 28#include <QRect>
28a4c9c5 29#include <QString>
e3f65ace 30
28a4c9c5
JH
31#include <stdint.h>
32
51e77110
JH
33namespace pv {
34
28a4c9c5
JH
35class SignalData;
36
a2f71ef0
JH
37namespace view {
38
28a4c9c5
JH
39class Signal
40{
3e46726a 41private:
a29bb7fb 42 static const int LabelHitPadding;
3e46726a 43
28a4c9c5 44protected:
2858b391 45 Signal(QString name);
28a4c9c5
JH
46
47public:
49f8ff3f
JH
48 /**
49 * Gets the name of this signal.
50 */
28a4c9c5
JH
51 QString get_name() const;
52
49f8ff3f
JH
53 /**
54 * Sets the name of the signal.
55 */
56 void set_name(QString name);
57
b3b57abc
JH
58 /**
59 * Get the colour of the signal.
60 */
61 QColor get_colour() const;
62
63 /**
64 * Set the colour of the signal.
65 */
66 void set_colour(QColor colour);
67
2e575351
JH
68 /**
69 * Gets the vertical layout offset of this signal.
70 */
71 int get_v_offset() const;
72
73 /**
74 * Sets the vertical layout offset of this signal.
75 */
76 void set_v_offset(int v_offset);
77
3b18c57d 78 /**
64b60583
JH
79 * Paints the signal with a QPainter
80 * @param p the QPainter to paint into.
3b18c57d 81 * @param rect the rectangular area to draw the trace into.
fb0d32cb 82 * @param scale the scale in seconds per pixel.
3b18c57d 83 * @param offset the time to show at the left hand edge of
fb0d32cb 84 * the view in seconds.
3b18c57d 85 **/
64b60583
JH
86 virtual void paint(QPainter &p, const QRect &rect, double scale,
87 double offset) = 0;
e3f65ace 88
a29bb7fb
JH
89
90 /**
91 * Paints the signal label into a QGLWidget.
92 * @param p the QPainter to paint into.
93 * @param rect the rectangular area to draw the label into.
94 * @param hover true if the label is being hovered over by the mouse.
95 */
96 virtual void paint_label(QPainter &p, const QRect &rect,
97 bool hover);
98
99 /**
100 * Determines if a point is in the header label rect.
a29bb7fb
JH
101 * @param rect the rectangular area to draw the label into.
102 * @param point the point to test.
103 */
ed6f0f4f 104 bool pt_in_label_rect(const QRect &rect, const QPoint &point);
a29bb7fb
JH
105
106private:
ed6f0f4f
JH
107
108 /**
109 * Computes an caches the size of the label text.
110 */
111 void compute_text_size(QPainter &p);
112
3b258424
JH
113 /**
114 * Computes the outline rectangle of a label.
115 * @param p the QPainter to lay out text with.
116 * @param rect The rectangle of the signal header.
117 * @return Returns the rectangle of the signal label.
118 */
ed6f0f4f 119 QRectF get_label_rect(const QRect &rect);
3e46726a
JH
120
121protected:
3e46726a
JH
122 /**
123 * When painting into the rectangle, calculate the y
124 * offset of the zero point.
125 **/
126 virtual int get_nominal_offset(const QRect &rect) const = 0;
127
28a4c9c5
JH
128protected:
129 QString _name;
b3b57abc 130 QColor _colour;
2e575351 131 int _v_offset;
b3b57abc 132
ed6f0f4f 133 QSizeF _text_size;
28a4c9c5 134};
51e77110 135
8d634081 136} // namespace view
51e77110 137} // namespace pv
640d091b
UH
138
139#endif // PULSEVIEW_PV_SIGNAL_H