1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/*
* This file is part of the PulseView project.
*
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "cursor.hpp"
#include "pv/util.hpp"
#include "ruler.hpp"
#include "view.hpp"
#include <QApplication>
#include <QBrush>
#include <QMenu>
#include <QPainter>
#include <QPointF>
#include <QRect>
#include <QRectF>
#include <cassert>
#include <cstdio>
#include <limits>
using std::abs; // NOLINT. Force usage of std::abs() instead of C's abs().
using std::shared_ptr;
namespace pv {
namespace views {
namespace trace {
const QColor Cursor::FillColor(52, 101, 164);
Cursor::Cursor(View &view, double time) :
TimeMarker(view, FillColor, time)
{
}
bool Cursor::enabled() const
{
return view_.cursors_shown();
}
QString Cursor::get_text() const
{
const shared_ptr<Cursor> other = get_other_cursor();
const pv::util::Timestamp& diff = abs(time_ - other->time_);
return Ruler::format_time_with_distance(
diff, view_.ruler()->get_ruler_time_from_absolute_time(time_),
view_.tick_prefix(), view_.time_unit(), view_.tick_precision());
}
QRectF Cursor::label_rect(const QRectF &rect) const
{
const shared_ptr<Cursor> other(get_other_cursor());
assert(other);
const float x = get_x();
QFontMetrics m(QApplication::font());
QSize text_size = m.boundingRect(get_text()).size();
const QSizeF label_size(
text_size.width() + LabelPadding.width() * 2,
text_size.height() + LabelPadding.height() * 2);
const float top = rect.height() - label_size.height() -
TimeMarker::ArrowSize - 0.5f;
const float height = label_size.height();
const pv::util::Timestamp& other_time = other->time();
if (time_ > other_time ||
(abs(time_ - other_time).is_zero() && this > other.get()))
return QRectF(x, top, label_size.width(), height);
else
return QRectF(x - label_size.width(), top, label_size.width(), height);
}
QMenu *Cursor::create_header_context_menu(QWidget *parent)
{
QMenu *const menu = new QMenu(parent);
QAction *const snap_disable = new QAction(tr("Disable snapping"), this);
snap_disable->setCheckable(true);
snap_disable->setChecked(snapping_disabled_);
connect(snap_disable, &QAction::toggled, this, [=](bool checked){snapping_disabled_ = checked;});
menu->addAction(snap_disable);
return menu;
}
shared_ptr<Cursor> Cursor::get_other_cursor() const
{
const shared_ptr<CursorPair> cursors(view_.cursors());
assert(cursors);
return (cursors->first().get() == this) ?
cursors->second() : cursors->first();
}
} // namespace trace
} // namespace views
} // namespace pv
|