]> sigrok.org Git - pulseview.git/blame - pv/views/trace/ruler.cpp
TabularDecView: Allow return/enter press and don't change scale
[pulseview.git] / pv / views / trace / ruler.cpp
CommitLineData
ccdd3ef5 1/*
b3f22de0 2 * This file is part of the PulseView project.
ccdd3ef5
JH
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/>.
ccdd3ef5
JH
18 */
19
819e2e95 20#include <extdef.h>
ca4ec3ea 21
819e2e95 22#include <QFontMetrics>
2543cd4e 23#include <QMenu>
819e2e95
JH
24#include <QMouseEvent>
25
4bc9230c
SA
26#include <pv/globalsettings.hpp>
27
819e2e95 28#include "ruler.hpp"
2acdb232 29#include "view.hpp"
ccdd3ef5 30
819f4c25 31using namespace Qt;
f76af637 32
6f925ba9 33using std::function;
5408524d
C
34using std::max;
35using std::min;
819e2e95
JH
36using std::shared_ptr;
37using std::vector;
38
ccdd3ef5 39namespace pv {
f4e57597 40namespace views {
1573bf16 41namespace trace {
ccdd3ef5 42
3d79f521 43const float Ruler::RulerHeight = 2.5f; // x Text Height
ccdd3ef5 44
3d79f521 45const float Ruler::HoverArrowSize = 0.5f; // x Text Height
b3a7c013 46
ccdd3ef5 47Ruler::Ruler(View &parent) :
e456e8e1 48 MarginWidget(parent)
ccdd3ef5 49{
b3a7c013
JH
50 setMouseTracking(true);
51
581724de
SA
52 connect(&view_, SIGNAL(hover_point_changed(const QWidget*, QPoint)),
53 this, SLOT(on_hover_point_changed(const QWidget*, QPoint)));
4b0af0b6
JS
54 connect(&view_, SIGNAL(offset_changed()),
55 this, SLOT(invalidate_tick_position_cache()));
56 connect(&view_, SIGNAL(scale_changed()),
57 this, SLOT(invalidate_tick_position_cache()));
58 connect(&view_, SIGNAL(tick_prefix_changed()),
59 this, SLOT(invalidate_tick_position_cache()));
60 connect(&view_, SIGNAL(tick_precision_changed()),
61 this, SLOT(invalidate_tick_position_cache()));
62 connect(&view_, SIGNAL(tick_period_changed()),
63 this, SLOT(invalidate_tick_position_cache()));
64 connect(&view_, SIGNAL(time_unit_changed()),
65 this, SLOT(invalidate_tick_position_cache()));
ccdd3ef5
JH
66}
67
a6c1726e
JH
68QSize Ruler::sizeHint() const
69{
249229ec
JH
70 const int text_height = calculate_text_height();
71 return QSize(0, RulerHeight * text_height);
a6c1726e
JH
72}
73
819e2e95
JH
74QSize Ruler::extended_size_hint() const
75{
f5b833c6 76 QRectF max_rect;
6f925ba9 77 vector< shared_ptr<TimeItem> > items(view_.time_items());
f5b833c6
JH
78 for (auto &i : items)
79 max_rect = max_rect.united(i->label_rect(QRect()));
80 return QSize(0, sizeHint().height() - max_rect.top() / 2 +
81 ViewItem::HighlightRadius);
819e2e95
JH
82}
83
3ccf0f7f
JS
84QString Ruler::format_time_with_distance(
85 const pv::util::Timestamp& distance,
86 const pv::util::Timestamp& t,
87 pv::util::SIPrefix prefix,
88 pv::util::TimeUnit unit,
89 unsigned precision,
66279897 90 bool sign)
3ccf0f7f
JS
91{
92 const unsigned limit = 60;
93
94 if (t.is_zero())
95 return "0";
96
97 // If we have to use samples then we have no alternative formats
98 if (unit == pv::util::TimeUnit::Samples)
66279897
SA
99 return pv::util::format_time_si_adjusted(t, prefix, precision, "sa", sign);
100
101 QString unit_string;
102 if (unit == pv::util::TimeUnit::Time)
103 unit_string = "s";
104 // Note: In case of pv::util::TimeUnit::None, unit_string remains empty
3ccf0f7f
JS
105
106 // View zoomed way out -> low precision (0), big distance (>=60s)
107 // -> DD:HH:MM
108 if ((precision == 0) && (distance >= limit))
109 return pv::util::format_time_minutes(t, 0, sign);
110
111 // View in "normal" range -> medium precision, medium step size
112 // -> HH:MM:SS.mmm... or xxxx (si unit) if less than limit seconds
113 // View zoomed way in -> high precision (>3), low step size (<1s)
114 // -> HH:MM:SS.mmm... or xxxx (si unit) if less than limit seconds
115 if (abs(t) < limit)
66279897 116 return pv::util::format_time_si_adjusted(t, prefix, precision, unit_string, sign);
3ccf0f7f
JS
117 else
118 return pv::util::format_time_minutes(t, precision, sign);
119}
120
fe68068b
SA
121pv::util::Timestamp Ruler::get_absolute_time_from_x_pos(uint32_t x) const
122{
123 return view_.offset() + ((double)x + 0.5) * view_.scale();
124}
125
126pv::util::Timestamp Ruler::get_ruler_time_from_x_pos(uint32_t x) const
2543cd4e
SA
127{
128 return view_.ruler_offset() + ((double)x + 0.5) * view_.scale();
129}
130
4468ee42
SA
131pv::util::Timestamp Ruler::get_ruler_time_from_absolute_time(const pv::util::Timestamp& abs_time) const
132{
133 return abs_time + view_.zero_offset();
134}
135
136pv::util::Timestamp Ruler::get_absolute_time_from_ruler_time(const pv::util::Timestamp& ruler_time) const
137{
138 return ruler_time - view_.zero_offset();
139}
140
2543cd4e
SA
141void Ruler::contextMenuEvent(QContextMenuEvent *event)
142{
dde5aab3
SA
143 MarginWidget::contextMenuEvent(event);
144
145 // Don't show a context menu if the MarginWidget found a widget that shows one
146 if (event->isAccepted())
147 return;
148
2543cd4e
SA
149 context_menu_x_pos_ = event->pos().x();
150
151 QMenu *const menu = new QMenu(this);
152
153 QAction *const create_marker = new QAction(tr("Create marker here"), this);
154 connect(create_marker, SIGNAL(triggered()), this, SLOT(on_createMarker()));
155 menu->addAction(create_marker);
156
e23567ed
SA
157 QAction *const set_zero_position = new QAction(tr("Set as zero point"), this);
158 connect(set_zero_position, SIGNAL(triggered()), this, SLOT(on_setZeroPosition()));
159 menu->addAction(set_zero_position);
160
e887fe9e
SA
161 if (view_.zero_offset().convert_to<double>() != 0) {
162 QAction *const reset_zero_position = new QAction(tr("Reset zero point"), this);
163 connect(reset_zero_position, SIGNAL(triggered()), this, SLOT(on_resetZeroPosition()));
164 menu->addAction(reset_zero_position);
165 }
166
4bc9230c
SA
167 QAction *const toggle_hover_marker = new QAction(this);
168 connect(toggle_hover_marker, SIGNAL(triggered()), this, SLOT(on_toggleHoverMarker()));
169 menu->addAction(toggle_hover_marker);
170
171 GlobalSettings settings;
172 const bool hover_marker_shown =
173 settings.value(GlobalSettings::Key_View_ShowHoverMarker).toBool();
174 toggle_hover_marker->setText(hover_marker_shown ?
175 tr("Disable mouse hover marker") : tr("Enable mouse hover marker"));
176
dde5aab3 177 event->setAccepted(true);
2543cd4e
SA
178 menu->popup(event->globalPos());
179}
180
181void Ruler::resizeEvent(QResizeEvent*)
182{
183 // the tick calculation depends on the width of this widget
184 invalidate_tick_position_cache();
185}
186
3e124bee
JH
187vector< shared_ptr<ViewItem> > Ruler::items()
188{
189 const vector< shared_ptr<TimeItem> > time_items(view_.time_items());
190 return vector< shared_ptr<ViewItem> >(
191 time_items.begin(), time_items.end());
192}
193
710c2a18 194void Ruler::item_hover(const shared_ptr<ViewItem> &item, QPoint pos)
195{
9f094349
SA
196 (void)pos;
197
710c2a18 198 hover_item_ = dynamic_pointer_cast<TimeItem>(item);
199}
200
9f094349 201shared_ptr<TimeItem> Ruler::get_reference_item() const
710c2a18 202{
e4e951b7
SA
203 // Note: time() returns 0 if item returns no valid time
204
710c2a18 205 if (mouse_modifiers_ & Qt::ShiftModifier)
206 return nullptr;
207
e4e951b7 208 if (hover_item_ && (hover_item_->time() != 0))
710c2a18 209 return hover_item_;
210
9f094349 211 shared_ptr<TimeItem> ref_item;
710c2a18 212 const vector< shared_ptr<TimeItem> > items(view_.time_items());
9f094349 213
710c2a18 214 for (auto i = items.rbegin(); i != items.rend(); i++) {
215 if ((*i)->enabled() && (*i)->selected()) {
9f094349
SA
216 if (!ref_item)
217 ref_item = *i;
218 else {
219 // Return nothing if multiple items are selected
220 ref_item.reset();
221 break;
222 }
710c2a18 223 }
224 }
225
e4e951b7
SA
226 if (ref_item && (ref_item->time() == 0))
227 ref_item.reset();
228
9f094349 229 return ref_item;
710c2a18 230}
231
6871ee9f 232shared_ptr<ViewItem> Ruler::get_mouse_over_item(const QPoint &pt)
25a0d47c
JH
233{
234 const vector< shared_ptr<TimeItem> > items(view_.time_items());
9f094349 235
25a0d47c
JH
236 for (auto i = items.rbegin(); i != items.rend(); i++)
237 if ((*i)->enabled() && (*i)->label_rect(rect()).contains(pt))
238 return *i;
9f094349 239
25a0d47c
JH
240 return nullptr;
241}
242
2543cd4e
SA
243void Ruler::mouseDoubleClickEvent(QMouseEvent *event)
244{
710c2a18 245 hover_item_ = view_.add_flag(get_absolute_time_from_x_pos(event->x()));
2543cd4e
SA
246}
247
e314eca4 248void Ruler::paintEvent(QPaintEvent*)
ccdd3ef5 249{
4b0af0b6 250 if (!tick_position_cache_) {
2ad82c2e 251 auto ffunc = [this](const pv::util::Timestamp& t) {
3ccf0f7f
JS
252 return format_time_with_distance(
253 this->view_.tick_period(),
4b0af0b6
JS
254 t,
255 this->view_.tick_prefix(),
256 this->view_.time_unit(),
257 this->view_.tick_precision());
258 };
259
7c6cbdda 260 tick_position_cache_ = calculate_tick_positions(
4b0af0b6 261 view_.tick_period(),
ffc00fdd 262 view_.ruler_offset(),
4b0af0b6
JS
263 view_.scale(),
264 width(),
4a076157 265 view_.minor_tick_count(),
7c6cbdda 266 ffunc);
4b0af0b6 267 }
ccdd3ef5 268
4b0af0b6 269 const int ValueMargin = 3;
f260e3bf 270
e456e8e1 271 const int text_height = calculate_text_height();
249229ec 272 const int ruler_height = RulerHeight * text_height;
e456e8e1 273 const int major_tick_y1 = text_height + ValueMargin * 2;
249229ec 274 const int minor_tick_y1 = (major_tick_y1 + ruler_height) / 2;
f260e3bf 275
4b0af0b6 276 QPainter p(this);
ccdd3ef5 277
4b0af0b6
JS
278 // Draw the tick marks
279 p.setPen(palette().color(foregroundRole()));
ccdd3ef5 280
4b0af0b6 281 for (const auto& tick: tick_position_cache_->major) {
5408524d
C
282 const int leftedge = 0;
283 const int rightedge = width();
284 const int x_tick = tick.first;
285 if ((x_tick > leftedge) && (x_tick < rightedge)) {
286 const int x_left_bound = QFontMetrics(font()).width(tick.second) / 2;
287 const int x_right_bound = rightedge - x_left_bound;
288 const int x_legend = min(max(x_tick, x_left_bound), x_right_bound);
289 p.drawText(x_legend, ValueMargin, 0, text_height,
4b0af0b6 290 AlignCenter | AlignTop | TextDontClip, tick.second);
5408524d 291 p.drawLine(QPointF(x_tick, major_tick_y1),
4b0af0b6 292 QPointF(tick.first, ruler_height));
5408524d 293 }
4b0af0b6 294 }
ccdd3ef5 295
4b0af0b6
JS
296 for (const auto& tick: tick_position_cache_->minor) {
297 p.drawLine(QPointF(tick, minor_tick_y1),
298 QPointF(tick, ruler_height));
299 }
ccdd3ef5 300
b3a7c013 301 // Draw the hover mark
249229ec 302 draw_hover_mark(p, text_height);
819e2e95 303
97f71253
JS
304 p.setRenderHint(QPainter::Antialiasing);
305
819e2e95
JH
306 // The cursor labels are not drawn with the arrows exactly on the
307 // bottom line of the widget, because then the selection shadow
308 // would be clipped away.
09d5df11 309 const QRect r = rect().adjusted(0, 0, 0, -ViewItem::HighlightRadius);
819e2e95
JH
310
311 // Draw the items
312 const vector< shared_ptr<TimeItem> > items(view_.time_items());
49028d6c 313 for (auto &i : items) {
803cdac4 314 const bool highlight = !item_dragging_ &&
49028d6c
JH
315 i->label_rect(r).contains(mouse_point_);
316 i->paint_label(p, r, highlight);
317 }
819e2e95
JH
318}
319
2543cd4e
SA
320void Ruler::draw_hover_mark(QPainter &p, int text_height)
321{
322 const int x = view_.hover_point().x();
323
324 if (x == -1)
325 return;
326
327 p.setPen(QPen(Qt::NoPen));
328 p.setBrush(QBrush(palette().color(foregroundRole())));
329
330 const int b = RulerHeight * text_height;
331 const float hover_arrow_size = HoverArrowSize * text_height;
332 const QPointF points[] = {
333 QPointF(x, b),
334 QPointF(x - hover_arrow_size, b - hover_arrow_size),
335 QPointF(x + hover_arrow_size, b - hover_arrow_size)
336 };
337 p.drawPolygon(points, countof(points));
338}
339
340int Ruler::calculate_text_height() const
341{
342 return QFontMetrics(font()).ascent();
343}
344
345TickPositions Ruler::calculate_tick_positions(
c677193d 346 const pv::util::Timestamp& major_period,
4b0af0b6
JS
347 const pv::util::Timestamp& offset,
348 const double scale,
349 const int width,
4a076157 350 const unsigned int minor_tick_count,
6f925ba9 351 function<QString(const pv::util::Timestamp&)> format_function)
4b0af0b6
JS
352{
353 TickPositions tp;
354
4a076157 355 const pv::util::Timestamp minor_period = major_period / minor_tick_count;
4b0af0b6
JS
356 const pv::util::Timestamp first_major_division = floor(offset / major_period);
357 const pv::util::Timestamp first_minor_division = ceil(offset / minor_period);
358 const pv::util::Timestamp t0 = first_major_division * major_period;
359
360 int division = (round(first_minor_division -
4a076157 361 first_major_division * minor_tick_count)).convert_to<int>() - 1;
4b0af0b6
JS
362
363 double x;
364
365 do {
c677193d 366 pv::util::Timestamp t = t0 + division * minor_period;
4b0af0b6
JS
367 x = ((t - offset) / scale).convert_to<double>();
368
4a076157 369 if (division % minor_tick_count == 0) {
2d141937 370 // Recalculate 't' without using 'minor_period' which is a fraction
4a076157 371 t = t0 + division / minor_tick_count * major_period;
4b0af0b6
JS
372 tp.major.emplace_back(x, format_function(t));
373 } else {
374 tp.minor.emplace_back(x);
375 }
376
377 division++;
378 } while (x < width);
379
380 return tp;
381}
382
581724de 383void Ruler::on_hover_point_changed(const QWidget* widget, const QPoint &hp)
b3a7c013 384{
581724de 385 (void)widget;
873e8035
SA
386 (void)hp;
387
b3a7c013
JH
388 update();
389}
390
4b0af0b6
JS
391void Ruler::invalidate_tick_position_cache()
392{
393 tick_position_cache_ = boost::none;
394}
395
2543cd4e 396void Ruler::on_createMarker()
4b0af0b6 397{
710c2a18 398 hover_item_ = view_.add_flag(get_absolute_time_from_x_pos(mouse_down_point_.x()));
4b0af0b6
JS
399}
400
e23567ed
SA
401void Ruler::on_setZeroPosition()
402{
fe68068b 403 view_.set_zero_position(get_absolute_time_from_x_pos(mouse_down_point_.x()));
e23567ed
SA
404}
405
e887fe9e
SA
406void Ruler::on_resetZeroPosition()
407{
408 view_.reset_zero_position();
409}
410
4bc9230c
SA
411void Ruler::on_toggleHoverMarker()
412{
413 GlobalSettings settings;
414 const bool state = settings.value(GlobalSettings::Key_View_ShowHoverMarker).toBool();
415 settings.setValue(GlobalSettings::Key_View_ShowHoverMarker, !state);
416}
417
1573bf16 418} // namespace trace
f4e57597 419} // namespace views
ccdd3ef5 420} // namespace pv