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