]> sigrok.org Git - pulseview.git/blob - pv/view/cursor.cpp
Fix #849 by making sure no references to the DecodeTrace instance remain
[pulseview.git] / pv / view / cursor.cpp
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
21 #include "cursor.hpp"
22
23 #include "ruler.hpp"
24 #include "view.hpp"
25 #include "pv/util.hpp"
26
27 #include <QApplication>
28 #include <QBrush>
29 #include <QPainter>
30 #include <QPointF>
31 #include <QRect>
32 #include <QRectF>
33
34 #include <cassert>
35 #include <cstdio>
36 #include <limits>
37
38 using std::abs;
39 using std::shared_ptr;
40 using std::numeric_limits;
41
42 namespace pv {
43 namespace views {
44 namespace TraceView {
45
46 const QColor Cursor::FillColour(52, 101, 164);
47
48 Cursor::Cursor(View &view, double time) :
49         TimeMarker(view, FillColour, time)
50 {
51 }
52
53 bool Cursor::enabled() const
54 {
55         return view_.cursors_shown();
56 }
57
58 QString Cursor::get_text() const
59 {
60         const shared_ptr<Cursor> other = get_other_cursor();
61         const pv::util::Timestamp& diff = abs(time_ - other->time_);
62
63         return Ruler::format_time_with_distance(
64                 diff, time_, view_.tick_prefix(), view_.time_unit(), view_.tick_precision());
65 }
66
67 QRectF Cursor::label_rect(const QRectF &rect) const
68 {
69         const shared_ptr<Cursor> other(get_other_cursor());
70         assert(other);
71
72         const float x = ((time_ - view_.offset())/ view_.scale()).convert_to<float>();
73
74         QFontMetrics m(QApplication::font());
75         QSize text_size = m.boundingRect(get_text()).size();
76
77         const QSizeF label_size(
78                 text_size.width() + LabelPadding.width() * 2,
79                 text_size.height() + LabelPadding.height() * 2);
80         const float top = rect.height() - label_size.height() -
81                 TimeMarker::ArrowSize - 0.5f;
82         const float height = label_size.height();
83
84         const pv::util::Timestamp& other_time = other->time();
85
86         if (time_ > other_time ||
87                 (abs(time_ - other_time).is_zero() && this > other.get()))
88                 return QRectF(x, top, label_size.width(), height);
89         else
90                 return QRectF(x - label_size.width(), top, label_size.width(), height);
91 }
92
93 shared_ptr<Cursor> Cursor::get_other_cursor() const
94 {
95         const shared_ptr<CursorPair> cursors(view_.cursors());
96         assert(cursors);
97         return (cursors->first().get() == this) ?
98                 cursors->second() : cursors->first();
99 }
100
101 } // namespace TraceView
102 } // namespace views
103 } // namespace pv