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