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