]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.cpp
Fix #771 by using black with alpha instead of an opaque grey
[pulseview.git] / pv / view / timemarker.cpp
CommitLineData
cd6c8ee2
JH
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
4fabd61a
JH
21#include <algorithm>
22
23#include <extdef.h>
24
2acdb232 25#include "timemarker.hpp"
cd6c8ee2 26
2acdb232 27#include "view.hpp"
806d3e1e 28#include "pv/widgets/timestampspinbox.hpp"
cd6c8ee2 29
ced0548e 30#include <QApplication>
b213ef09 31#include <QFormLayout>
ced0548e 32#include <QFontMetrics>
cd6c8ee2
JH
33#include <QPainter>
34
2acdb232 35#include <pv/widgets/popup.hpp>
a28a212c 36
4fabd61a
JH
37using std::max;
38using std::min;
39
cd6c8ee2
JH
40namespace pv {
41namespace view {
42
4fabd61a 43const int TimeMarker::ArrowSize = 4;
4fabd61a 44
60d9b99a
JS
45TimeMarker::TimeMarker(
46 View &view, const QColor &colour, const pv::util::Timestamp& time) :
ad341c3a 47 TimeItem(view),
8dbbc7f0
JH
48 colour_(colour),
49 time_(time),
4c60462b
JH
50 value_action_(nullptr),
51 value_widget_(nullptr),
8dbbc7f0 52 updating_value_widget_(false)
cd6c8ee2 53{
ef8311a4
JH
54}
55
60d9b99a 56const pv::util::Timestamp& TimeMarker::time() const
cd6c8ee2 57{
8dbbc7f0 58 return time_;
cd6c8ee2
JH
59}
60
60d9b99a 61void TimeMarker::set_time(const pv::util::Timestamp& time)
cd6c8ee2 62{
8dbbc7f0 63 time_ = time;
317008ba 64
8dbbc7f0
JH
65 if (value_widget_) {
66 updating_value_widget_ = true;
806d3e1e 67 value_widget_->setValue(time);
8dbbc7f0 68 updating_value_widget_ = false;
317008ba
JH
69 }
70
98cfe4e8 71 view_.time_item_appearance_changed(true, true);
cd6c8ee2
JH
72}
73
70a4886c
JH
74float TimeMarker::get_x() const
75{
60d9b99a 76 return ((time_ - view_.offset()) / view_.scale()).convert_to<float>();
70a4886c
JH
77}
78
be717066 79QPoint TimeMarker::point(const QRect &rect) const
70a4886c 80{
786b7678 81 return QPoint(get_x(), rect.bottom());
70a4886c
JH
82}
83
689dea92 84QRectF TimeMarker::label_rect(const QRectF &rect) const
ced0548e 85{
ced0548e 86 QFontMetrics m(QApplication::font());
8b855030
JH
87 const QSizeF text_size(
88 max(m.boundingRect(get_text()).size().width(), ArrowSize),
89 m.height());
90 const QSizeF label_size(text_size + LabelPadding * 2);
ced0548e 91 const float top = rect.height() - label_size.height() -
6abffa97 92 TimeMarker::ArrowSize - 0.5f;
7708eb92 93 const float x = get_x();
ced0548e 94
8b855030 95 return QRectF(QPointF(x - label_size.width() / 2, top), label_size);
ced0548e
JH
96}
97
cbf0f87e 98QRectF TimeMarker::hit_box_rect(const ViewItemPaintParams &pp) const
7708eb92
JH
99{
100 const float x = get_x();
101 const float h = QFontMetrics(QApplication::font()).height();
cbf0f87e 102 return QRectF(x - h / 2.0f, pp.top(), h, pp.height());
7708eb92
JH
103}
104
49028d6c 105void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover)
4fabd61a 106{
096fb584
JH
107 if (!enabled())
108 return;
109
60d9b99a 110 const qreal x = ((time_ - view_.offset()) / view_.scale()).convert_to<qreal>();
689dea92 111 const QRectF r(label_rect(rect));
4fabd61a
JH
112
113 const QPointF points[] = {
114 r.topLeft(),
115 r.bottomLeft(),
116 QPointF(max(r.left(), x - ArrowSize), r.bottom()),
117 QPointF(x, rect.bottom()),
118 QPointF(min(r.right(), x + ArrowSize), r.bottom()),
119 r.bottomRight(),
120 r.topRight()
121 };
122
123 const QPointF highlight_points[] = {
124 QPointF(r.left() + 1, r.top() + 1),
125 QPointF(r.left() + 1, r.bottom() - 1),
126 QPointF(max(r.left() + 1, x - ArrowSize), r.bottom() - 1),
127 QPointF(min(max(r.left() + 1, x), r.right() - 1),
128 rect.bottom() - 1),
129 QPointF(min(r.right() - 1, x + ArrowSize), r.bottom() - 1),
130 QPointF(r.right() - 1, r.bottom() - 1),
131 QPointF(r.right() - 1, r.top() + 1),
132 };
133
134 if (selected()) {
135 p.setPen(highlight_pen());
136 p.setBrush(Qt::transparent);
137 p.drawPolygon(points, countof(points));
138 }
139
140 p.setPen(Qt::transparent);
49028d6c 141 p.setBrush(hover ? colour_.lighter() : colour_);
4fabd61a
JH
142 p.drawPolygon(points, countof(points));
143
144 p.setPen(colour_.lighter());
145 p.setBrush(Qt::transparent);
146 p.drawPolygon(highlight_points, countof(highlight_points));
147
148 p.setPen(colour_.darker());
149 p.setBrush(Qt::transparent);
150 p.drawPolygon(points, countof(points));
151
152 p.setPen(select_text_colour(colour_));
3b84fd6d 153 p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter, get_text());
4fabd61a
JH
154}
155
beb897c6
JH
156void TimeMarker::paint_fore(QPainter &p, const ViewItemPaintParams &pp)
157{
158 if (!enabled())
159 return;
160
161 const float x = get_x();
162 p.setPen(colour_.darker());
163 p.drawLine(QPointF(x, pp.top()), QPointF(x, pp.bottom()));
164}
165
a28a212c
JH
166pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent)
167{
168 using pv::widgets::Popup;
169
170 Popup *const popup = new Popup(parent);
786b7678
JH
171 popup->set_position(parent->mapToGlobal(
172 point(parent->rect())), Popup::Bottom);
173
a28a212c
JH
174 QFormLayout *const form = new QFormLayout(popup);
175 popup->setLayout(form);
176
806d3e1e
JS
177 value_widget_ = new pv::widgets::TimestampSpinBox(parent);
178 value_widget_->setValue(time_);
a28a212c 179
806d3e1e
JS
180 connect(value_widget_, SIGNAL(valueChanged(const pv::util::Timestamp&)),
181 this, SLOT(on_value_changed(const pv::util::Timestamp&)));
a28a212c 182
8dbbc7f0 183 form->addRow(tr("Time"), value_widget_);
a28a212c
JH
184
185 return popup;
186}
187
806d3e1e 188void TimeMarker::on_value_changed(const pv::util::Timestamp& value)
1e256e16 189{
98cfe4e8
JH
190 if (!updating_value_widget_)
191 set_time(value);
1e256e16
JH
192}
193
cd6c8ee2
JH
194} // namespace view
195} // namespace pv