]> sigrok.org Git - pulseview.git/blame - pv/views/trace/cursor.cpp
DecodeTrace: Add fallback icon for edit-paste action
[pulseview.git] / pv / views / trace / cursor.cpp
CommitLineData
cabce982
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/>.
cabce982
JH
18 */
19
2acdb232 20#include "cursor.hpp"
cabce982 21
aca9aa83 22#include "pv/util.hpp"
3ccf0f7f 23#include "ruler.hpp"
2acdb232 24#include "view.hpp"
cabce982 25
4fabd61a 26#include <QApplication>
cabce982 27#include <QBrush>
0aabc15a 28#include <QMenu>
cabce982 29#include <QPainter>
34c1ef02 30#include <QPointF>
cabce982
JH
31#include <QRect>
32#include <QRectF>
33
f9abf97e
JH
34#include <cassert>
35#include <cstdio>
e899d8bd 36#include <limits>
34c1ef02 37
20f59e95 38using std::abs; // NOLINT. Force usage of std::abs() instead of C's abs().
f9abf97e 39using std::shared_ptr;
58864c5c 40
cabce982 41namespace pv {
f4e57597 42namespace views {
1573bf16 43namespace trace {
cabce982 44
641574bc 45const QColor Cursor::FillColor(52, 101, 164);
34c1ef02 46
8debe10d 47Cursor::Cursor(View &view, double time) :
641574bc 48 TimeMarker(view, FillColor, time)
cabce982
JH
49{
50}
51
096fb584
JH
52bool Cursor::enabled() const
53{
54 return view_.cursors_shown();
55}
56
3b84fd6d
JH
57QString Cursor::get_text() const
58{
3ccf0f7f
JS
59 const shared_ptr<Cursor> other = get_other_cursor();
60 const pv::util::Timestamp& diff = abs(time_ - other->time_);
61
62 return Ruler::format_time_with_distance(
4468ee42 63 diff, view_.ruler()->get_ruler_time_from_absolute_time(time_),
39173000 64 view_.tick_prefix(), view_.time_unit(), view_.tick_precision());
3b84fd6d
JH
65}
66
689dea92 67QRectF Cursor::label_rect(const QRectF &rect) const
cabce982 68{
58864c5c
JH
69 const shared_ptr<Cursor> other(get_other_cursor());
70 assert(other);
71
cb5a1216 72 const float x = get_x();
34c1ef02 73
4fabd61a 74 QFontMetrics m(QApplication::font());
3b84fd6d 75 QSize text_size = m.boundingRect(get_text()).size();
4fabd61a 76
34c1ef02 77 const QSizeF label_size(
ec39632d
JH
78 text_size.width() + LabelPadding.width() * 2,
79 text_size.height() + LabelPadding.height() * 2);
199441e4 80 const float top = rect.height() - label_size.height() -
6abffa97 81 TimeMarker::ArrowSize - 0.5f;
5139748b 82 const float height = label_size.height();
199441e4 83
60d9b99a
JS
84 const pv::util::Timestamp& other_time = other->time();
85
e899d8bd 86 if (time_ > other_time ||
60d9b99a 87 (abs(time_ - other_time).is_zero() && this > other.get()))
199441e4
JH
88 return QRectF(x, top, label_size.width(), height);
89 else
60d9b99a 90 return QRectF(x - label_size.width(), top, label_size.width(), height);
ca4ec3ea
JH
91}
92
0aabc15a
MM
93QMenu *Cursor::create_header_context_menu(QWidget *parent)
94{
95 QMenu *const menu = new QMenu(parent);
96
97 QAction *const snap_disable = new QAction(tr("Disable snapping"), this);
98 snap_disable->setCheckable(true);
99 snap_disable->setChecked(snapping_disabled_);
100 connect(snap_disable, &QAction::toggled, this, [=](bool checked){snapping_disabled_ = checked;});
101 menu->addAction(snap_disable);
102
103 return menu;
104}
105
58864c5c
JH
106shared_ptr<Cursor> Cursor::get_other_cursor() const
107{
5c5ce757
JH
108 const shared_ptr<CursorPair> cursors(view_.cursors());
109 assert(cursors);
110 return (cursors->first().get() == this) ?
111 cursors->second() : cursors->first();
58864c5c
JH
112}
113
1573bf16 114} // namespace trace
f4e57597 115} // namespace views
cabce982 116} // namespace pv