]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/cursorpair.cpp
TraceTreeItem: Separated from RowItem
[pulseview.git] / pv / view / cursorpair.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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 "cursorpair.hpp"
22
23#include "ruler.hpp"
24#include "view.hpp"
25#include "pv/util.hpp"
26
27#include <cassert>
28#include <algorithm>
29
30using std::max;
31using std::make_pair;
32using std::min;
33using std::shared_ptr;
34using std::pair;
35
36namespace pv {
37namespace view {
38
39const int CursorPair::DeltaPadding = 8;
40const QColor CursorPair::ViewportFillColour(220, 231, 243);
41
42CursorPair::CursorPair(View &view) :
43 TimeItem(view),
44 first_(new Cursor(view, 0.0)),
45 second_(new Cursor(view, 1.0))
46{
47}
48
49bool CursorPair::enabled() const
50{
51 return view_.cursors_shown();
52}
53
54shared_ptr<Cursor> CursorPair::first() const
55{
56 return first_;
57}
58
59shared_ptr<Cursor> CursorPair::second() const
60{
61 return second_;
62}
63
64void CursorPair::set_time(const pv::util::Timestamp& time) {
65 const pv::util::Timestamp delta = second_->time() - first_->time();
66 first_->set_time(time);
67 second_->set_time(time + delta);
68}
69
70float CursorPair::get_x() const
71{
72 return (first_->get_x() + second_->get_x()) / 2.0f;
73}
74
75QPoint CursorPair::point(const QRect &rect) const
76{
77 return first_->point(rect);
78}
79
80pv::widgets::Popup* CursorPair::create_popup(QWidget *parent)
81{
82 (void)parent;
83 return nullptr;
84}
85
86QRectF CursorPair::label_rect(const QRectF &rect) const
87{
88 const QSizeF label_size(text_size_ + LabelPadding * 2);
89 const pair<float, float> offsets(get_cursor_offsets());
90 const pair<float, float> normal_offsets(
91 (offsets.first < offsets.second) ? offsets :
92 make_pair(offsets.second, offsets.first));
93
94 const float height = label_size.height();
95 const float left = max(normal_offsets.first + DeltaPadding, -height);
96 const float right = min(normal_offsets.second - DeltaPadding,
97 (float)rect.width() + height);
98
99 return QRectF(left, rect.height() - label_size.height() -
100 TimeMarker::ArrowSize - 0.5f,
101 right - left, height);
102}
103
104void CursorPair::paint_label(QPainter &p, const QRect &rect, bool hover)
105{
106 assert(first_);
107 assert(second_);
108
109 if (!enabled())
110 return;
111
112 const QColor text_colour =
113 ViewItem::select_text_colour(Cursor::FillColour);
114
115 p.setPen(text_colour);
116 compute_text_size(p);
117 QRectF delta_rect(label_rect(rect));
118
119 const int radius = delta_rect.height() / 2;
120 const QRectF text_rect(delta_rect.intersected(
121 rect).adjusted(radius, 0, -radius, 0));
122 if (text_rect.width() >= text_size_.width())
123 {
124 const int highlight_radius = delta_rect.height() / 2 - 2;
125
126 if (selected()) {
127 p.setBrush(Qt::transparent);
128 p.setPen(highlight_pen());
129 p.drawRoundedRect(delta_rect, radius, radius);
130 }
131
132 p.setBrush(hover ? Cursor::FillColour.lighter() :
133 Cursor::FillColour);
134 p.setPen(Cursor::FillColour.darker());
135 p.drawRoundedRect(delta_rect, radius, radius);
136
137 delta_rect.adjust(1, 1, -1, -1);
138 p.setPen(Cursor::FillColour.lighter());
139 p.drawRoundedRect(delta_rect, highlight_radius, highlight_radius);
140
141 p.setPen(text_colour);
142 p.drawText(text_rect, Qt::AlignCenter | Qt::AlignVCenter,
143 format_string());
144 }
145}
146
147void CursorPair::paint_back(QPainter &p, const ViewItemPaintParams &pp) {
148 if (!enabled())
149 return;
150
151 p.setPen(Qt::NoPen);
152 p.setBrush(QBrush(ViewportFillColour));
153
154 const pair<float, float> offsets(get_cursor_offsets());
155 const int l = (int)max(min(
156 offsets.first, offsets.second), 0.0f);
157 const int r = (int)min(max(
158 offsets.first, offsets.second), (float)pp.width());
159
160 p.drawRect(l, pp.top(), r - l, pp.height());
161}
162
163QString CursorPair::format_string()
164{
165 const pv::util::SIPrefix prefix = view_.tick_prefix();
166 const pv::util::Timestamp diff = abs(second_->time() - first_->time());
167
168 const QString s1 = Ruler::format_time_with_distance(
169 diff, diff, prefix, view_.time_unit(), view_.tick_precision(), false);
170 const QString s2 = util::format_time_si(
171 1 / diff, pv::util::SIPrefix::unspecified, 4, "Hz", false);
172
173 return QString("%1 / %2").arg(s1).arg(s2);
174}
175
176void CursorPair::compute_text_size(QPainter &p)
177{
178 assert(first_);
179 assert(second_);
180
181 text_size_ = p.boundingRect(QRectF(), 0, format_string()).size();
182}
183
184pair<float, float> CursorPair::get_cursor_offsets() const
185{
186 assert(first_);
187 assert(second_);
188
189 return pair<float, float>(
190 ((first_->time() - view_.offset()) / view_.scale()).convert_to<float>(),
191 ((second_->time() - view_.offset()) / view_.scale()).convert_to<float>());
192}
193
194} // namespace view
195} // namespace pv