]> sigrok.org Git - pulseview.git/blame - pv/views/trace/cursorpair.cpp
Disable antialiasing on high-DPI displays
[pulseview.git] / pv / views / trace / cursorpair.cpp
CommitLineData
b42d25c4
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
b42d25c4
JH
18 */
19
581724de
SA
20#include <algorithm>
21#include <cassert>
22
c04f5a29 23#include <QColor>
581724de
SA
24#include <QToolTip>
25
2acdb232 26#include "cursorpair.hpp"
b42d25c4 27
c04f5a29 28#include "pv/globalsettings.hpp"
aca9aa83 29#include "pv/util.hpp"
3ccf0f7f 30#include "ruler.hpp"
2acdb232 31#include "view.hpp"
b42d25c4 32
819f4c25
JH
33using std::max;
34using std::make_pair;
35using std::min;
f9abf97e 36using std::shared_ptr;
819f4c25 37using std::pair;
0ba172cf 38
b42d25c4 39namespace pv {
f4e57597 40namespace views {
1573bf16 41namespace trace {
b42d25c4 42
5139748b
JH
43const int CursorPair::DeltaPadding = 8;
44
8debe10d 45CursorPair::CursorPair(View &view) :
5a0192d4 46 TimeItem(view),
8dbbc7f0 47 first_(new Cursor(view, 0.0)),
5a0192d4 48 second_(new Cursor(view, 1.0))
b42d25c4 49{
c04f5a29
SA
50 GlobalSettings::add_change_handler(this);
51
52 GlobalSettings settings;
53 fill_color_ = QColor::fromRgba(settings.value(
54 GlobalSettings::Key_View_CursorFillColor).value<uint32_t>());
55
581724de
SA
56 connect(&view_, SIGNAL(hover_point_changed(const QWidget*, QPoint)),
57 this, SLOT(on_hover_point_changed(const QWidget*, QPoint)));
b42d25c4
JH
58}
59
c04f5a29
SA
60CursorPair::~CursorPair()
61{
62 GlobalSettings::remove_change_handler(this);
63}
64
5a0192d4
JH
65bool CursorPair::enabled() const
66{
67 return view_.cursors_shown();
68}
69
58864c5c 70shared_ptr<Cursor> CursorPair::first() const
b42d25c4 71{
8dbbc7f0 72 return first_;
b42d25c4
JH
73}
74
58864c5c 75shared_ptr<Cursor> CursorPair::second() const
b42d25c4 76{
8dbbc7f0 77 return second_;
b42d25c4
JH
78}
79
2ad82c2e
UH
80void CursorPair::set_time(const pv::util::Timestamp& time)
81{
60d9b99a 82 const pv::util::Timestamp delta = second_->time() - first_->time();
3b9c4a0d
JH
83 first_->set_time(time);
84 second_->set_time(time + delta);
85}
86
5165bb34
JH
87float CursorPair::get_x() const
88{
89 return (first_->get_x() + second_->get_x()) / 2.0f;
90}
91
a3d5a7c7 92QPoint CursorPair::drag_point(const QRect &rect) const
5a0192d4 93{
a3d5a7c7 94 return first_->drag_point(rect);
5a0192d4
JH
95}
96
97pv::widgets::Popup* CursorPair::create_popup(QWidget *parent)
98{
99 (void)parent;
100 return nullptr;
101}
102
689dea92 103QRectF CursorPair::label_rect(const QRectF &rect) const
5139748b 104{
3fed1f31 105 const QSizeF label_size(text_size_ + LabelPadding * 2);
5139748b
JH
106 const pair<float, float> offsets(get_cursor_offsets());
107 const pair<float, float> normal_offsets(
108 (offsets.first < offsets.second) ? offsets :
109 make_pair(offsets.second, offsets.first));
110
111 const float height = label_size.height();
112 const float left = max(normal_offsets.first + DeltaPadding, -height);
113 const float right = min(normal_offsets.second - DeltaPadding,
114 (float)rect.width() + height);
115
116 return QRectF(left, rect.height() - label_size.height() -
6abffa97 117 TimeMarker::ArrowSize - 0.5f,
5139748b
JH
118 right - left, height);
119}
120
49028d6c 121void CursorPair::paint_label(QPainter &p, const QRect &rect, bool hover)
332afa74 122{
8dbbc7f0
JH
123 assert(first_);
124 assert(second_);
58864c5c 125
9a377493
JH
126 if (!enabled())
127 return;
128
581724de 129 const QColor text_color = ViewItem::select_text_color(Cursor::FillColor);
641574bc 130 p.setPen(text_color);
5139748b 131
581724de
SA
132 QString text = format_string();
133 text_size_ = p.boundingRect(QRectF(), 0, text).size();
134
135 QRectF delta_rect(label_rect(rect));
5139748b 136 const int radius = delta_rect.height() / 2;
581724de
SA
137 QRectF text_rect(delta_rect.intersected(rect).adjusted(radius, 0, -radius, 0));
138
139 if (text_rect.width() < text_size_.width()) {
140 text = "...";
141 text_size_ = p.boundingRect(QRectF(), 0, text).size();
142 label_incomplete_ = true;
143 } else
144 label_incomplete_ = false;
145
146 if (selected()) {
147 p.setBrush(Qt::transparent);
148 p.setPen(highlight_pen());
5139748b 149 p.drawRoundedRect(delta_rect, radius, radius);
581724de 150 }
5139748b 151
581724de
SA
152 p.setBrush(hover ? Cursor::FillColor.lighter() : Cursor::FillColor);
153 p.setPen(Cursor::FillColor.darker());
154 p.drawRoundedRect(delta_rect, radius, radius);
5139748b 155
581724de
SA
156 delta_rect.adjust(1, 1, -1, -1);
157 p.setPen(Cursor::FillColor.lighter());
158 const int highlight_radius = delta_rect.height() / 2 - 2;
159 p.drawRoundedRect(delta_rect, highlight_radius, highlight_radius);
160 label_area_ = delta_rect;
161
162 p.setPen(text_color);
163 p.drawText(text_rect, Qt::AlignCenter | Qt::AlignVCenter, text);
332afa74
JH
164}
165
60938e04 166void CursorPair::paint_back(QPainter &p, ViewItemPaintParams &pp)
2ad82c2e 167{
beb897c6
JH
168 if (!enabled())
169 return;
170
0ba172cf 171 p.setPen(Qt::NoPen);
c04f5a29 172 p.setBrush(fill_color_);
0ba172cf 173
199441e4 174 const pair<float, float> offsets(get_cursor_offsets());
581724de
SA
175 const int l = (int)max(min(offsets.first, offsets.second), 0.0f);
176 const int r = (int)min(max(offsets.first, offsets.second), (float)pp.width());
58864c5c 177
beb897c6 178 p.drawRect(l, pp.top(), r - l, pp.height());
0ba172cf
JH
179}
180
32045253
JH
181QString CursorPair::format_string()
182{
d001f416 183 const pv::util::SIPrefix prefix = view_.tick_prefix();
3ccf0f7f
JS
184 const pv::util::Timestamp diff = abs(second_->time() - first_->time());
185
186 const QString s1 = Ruler::format_time_with_distance(
581724de 187 diff, diff, prefix, view_.time_unit(), 12, false); /* Always use 12 precision digits */
3ccf0f7f
JS
188 const QString s2 = util::format_time_si(
189 1 / diff, pv::util::SIPrefix::unspecified, 4, "Hz", false);
190
076ce70c 191 return QString("%1 / %2").arg(s1, s2);
32045253
JH
192}
193
581724de 194pair<float, float> CursorPair::get_cursor_offsets() const
5139748b 195{
8dbbc7f0
JH
196 assert(first_);
197 assert(second_);
58864c5c 198
581724de 199 return pair<float, float>(first_->get_x(), second_->get_x());
5139748b
JH
200}
201
c04f5a29
SA
202void CursorPair::on_setting_changed(const QString &key, const QVariant &value)
203{
204 if (key == GlobalSettings::Key_View_CursorFillColor)
205 fill_color_ = QColor::fromRgba(value.value<uint32_t>());
206}
207
581724de 208void CursorPair::on_hover_point_changed(const QWidget* widget, const QPoint& hp)
199441e4 209{
581724de
SA
210 if (widget != view_.ruler())
211 return;
58864c5c 212
581724de
SA
213 if (!label_incomplete_)
214 return;
215
216 if (label_area_.contains(hp))
217 QToolTip::showText(view_.mapToGlobal(hp), format_string());
218 else
219 QToolTip::hideText(); // TODO Will break other tooltips when there can be others
199441e4
JH
220}
221
1573bf16 222} // namespace trace
f4e57597 223} // namespace views
b42d25c4 224} // namespace pv