]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
Use static signal offsets instead of offsets calculated on-the-fly
[pulseview.git] / pv / view / signal.cpp
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
cef18fc6 21#include <extdef.h>
28a4c9c5 22
cef18fc6 23#include "signal.h"
8d634081 24#include "view.h"
3e46726a 25
51e77110 26namespace pv {
8d634081 27namespace view {
51e77110 28
a29bb7fb 29const int Signal::LabelHitPadding = 2;
28a4c9c5 30
2858b391 31Signal::Signal(QString name) :
2e575351
JH
32 _name(name),
33 _v_offset(0)
28a4c9c5
JH
34{
35}
36
37QString Signal::get_name() const
38{
39 return _name;
40}
3e46726a 41
49f8ff3f
JH
42void Signal::set_name(QString name)
43{
44 _name = name;
45}
46
b3b57abc
JH
47QColor Signal::get_colour() const
48{
49 return _colour;
50}
51
52void Signal::set_colour(QColor colour)
53{
54 _colour = colour;
55}
56
2e575351
JH
57int Signal::get_v_offset() const
58{
59 return _v_offset;
60}
61
62void Signal::set_v_offset(int v_offset)
63{
64 _v_offset = v_offset;
65}
66
a29bb7fb 67void Signal::paint_label(QPainter &p, const QRect &rect, bool hover)
3b258424 68{
b3b57abc 69 p.setBrush(_colour);
3b258424
JH
70
71 const QColor colour = get_colour();
72 const float nominal_offset = get_nominal_offset(rect);
ed6f0f4f
JH
73
74 compute_text_size(p);
75 const QRectF label_rect = get_label_rect(rect);
3e46726a
JH
76
77 // Paint the label
78 const QPointF points[] = {
79 label_rect.topLeft(),
80 label_rect.topRight(),
81 QPointF(rect.right(), nominal_offset),
82 label_rect.bottomRight(),
83 label_rect.bottomLeft()
84 };
85
c9b6acc1
JH
86 const QPointF highlight_points[] = {
87 QPointF(label_rect.left() + 1, label_rect.top() + 1),
88 QPointF(label_rect.right(), label_rect.top() + 1),
89 QPointF(rect.right() - 1, nominal_offset),
90 QPointF(label_rect.right(), label_rect.bottom() - 1),
91 QPointF(label_rect.left() + 1, label_rect.bottom() - 1)
92 };
93
94 p.setPen(Qt::transparent);
a29bb7fb 95 p.setBrush(hover ? colour.lighter() : colour);
3e46726a
JH
96 p.drawPolygon(points, countof(points));
97
c9b6acc1
JH
98 p.setPen(colour.lighter());
99 p.setBrush(Qt::transparent);
100 p.drawPolygon(highlight_points, countof(highlight_points));
101
102 p.setPen(colour.darker());
103 p.setBrush(Qt::transparent);
104 p.drawPolygon(points, countof(points));
105
3e46726a
JH
106 // Paint the text
107 p.setPen((colour.lightness() > 64) ? Qt::black : Qt::white);
3b258424 108 p.drawText(label_rect, Qt::AlignCenter | Qt::AlignVCenter, _name);
3e46726a 109}
51e77110 110
ed6f0f4f 111bool Signal::pt_in_label_rect(const QRect &rect, const QPoint &point)
a29bb7fb 112{
ed6f0f4f 113 const QRectF label = get_label_rect(rect);
a29bb7fb
JH
114 return QRectF(
115 QPointF(label.left() - LabelHitPadding,
116 label.top() - LabelHitPadding),
117 QPointF(rect.right(),
118 label.bottom() + LabelHitPadding)
119 ).contains(point);
120}
121
ed6f0f4f 122void Signal::compute_text_size(QPainter &p)
a29bb7fb 123{
ed6f0f4f
JH
124 _text_size = p.boundingRect(QRectF(), 0, _name).size();
125}
a29bb7fb 126
ed6f0f4f
JH
127QRectF Signal::get_label_rect(const QRect &rect)
128{
2e04f9bd
JH
129 using pv::view::View;
130
bb781376 131 const float nominal_offset = get_nominal_offset(rect) + 0.5;
a29bb7fb 132 const QSizeF label_size(
2e04f9bd
JH
133 _text_size.width() + View::LabelPadding.width() * 2,
134 _text_size.height() + View::LabelPadding.height() * 2);
a29bb7fb
JH
135 const float label_arrow_length = label_size.height() / 2;
136 return QRectF(
bb781376
JH
137 rect.right() - label_arrow_length -
138 label_size.width() - 0.5,
a29bb7fb
JH
139 nominal_offset - label_size.height() / 2,
140 label_size.width(), label_size.height());
141}
142
8d634081 143} // namespace view
51e77110 144} // namespace pv