]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/decodetrace.cpp
AnalogSignal: Display value under cursor
[pulseview.git] / pv / views / trace / decodetrace.cpp
... / ...
CommitLineData
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, see <http://www.gnu.org/licenses/>.
18 */
19
20extern "C" {
21#include <libsigrokdecode/libsigrokdecode.h>
22}
23
24#include <mutex>
25#include <tuple>
26
27#include <extdef.h>
28
29#include <boost/functional/hash.hpp>
30
31#include <QAction>
32#include <QApplication>
33#include <QComboBox>
34#include <QFormLayout>
35#include <QLabel>
36#include <QMenu>
37#include <QPushButton>
38#include <QToolTip>
39
40#include "decodetrace.hpp"
41#include "view.hpp"
42#include "viewport.hpp"
43
44#include <pv/globalsettings.hpp>
45#include <pv/session.hpp>
46#include <pv/strnatcmp.hpp>
47#include <pv/data/decodesignal.hpp>
48#include <pv/data/decode/annotation.hpp>
49#include <pv/data/decode/decoder.hpp>
50#include <pv/data/logic.hpp>
51#include <pv/data/logicsegment.hpp>
52#include <pv/widgets/decodergroupbox.hpp>
53#include <pv/widgets/decodermenu.hpp>
54
55using std::abs;
56using std::make_pair;
57using std::max;
58using std::min;
59using std::out_of_range;
60using std::pair;
61using std::shared_ptr;
62using std::tie;
63using std::vector;
64
65using pv::data::decode::Annotation;
66using pv::data::decode::Row;
67using pv::data::DecodeChannel;
68using pv::data::DecodeSignal;
69
70namespace pv {
71namespace views {
72namespace trace {
73
74
75#define DECODETRACE_COLOR_SATURATION (180) /* 0-255 */
76#define DECODETRACE_COLOR_VALUE (170) /* 0-255 */
77
78const QColor DecodeTrace::ErrorBgColor = QColor(0xEF, 0x29, 0x29);
79const QColor DecodeTrace::NoDecodeColor = QColor(0x88, 0x8A, 0x85);
80
81const int DecodeTrace::ArrowSize = 4;
82const double DecodeTrace::EndCapWidth = 5;
83const int DecodeTrace::RowTitleMargin = 10;
84const int DecodeTrace::DrawPadding = 100;
85
86const int DecodeTrace::MaxTraceUpdateRate = 1; // No more than 1 Hz
87
88DecodeTrace::DecodeTrace(pv::Session &session,
89 shared_ptr<data::SignalBase> signalbase, int index) :
90 Trace(signalbase),
91 session_(session),
92 row_height_(0),
93 max_visible_rows_(0),
94 delete_mapper_(this),
95 show_hide_mapper_(this)
96{
97 decode_signal_ = dynamic_pointer_cast<data::DecodeSignal>(base_);
98
99 // Determine shortest string we want to see displayed in full
100 QFontMetrics m(QApplication::font());
101 min_useful_label_width_ = m.width("XX"); // e.g. two hex characters
102
103 // For the base color, we want to start at a very different color for
104 // every decoder stack, so multiply the index with a number that is
105 // rather close to 180 degrees of the color circle but not a dividend of 360
106 // Note: The offset equals the color of the first annotation
107 QColor color;
108 const int h = (120 + 160 * index) % 360;
109 const int s = DECODETRACE_COLOR_SATURATION;
110 const int v = DECODETRACE_COLOR_VALUE;
111 color.setHsv(h, s, v);
112 base_->set_color(color);
113
114 connect(decode_signal_.get(), SIGNAL(new_annotations()),
115 this, SLOT(on_new_annotations()));
116 connect(decode_signal_.get(), SIGNAL(decode_reset()),
117 this, SLOT(on_decode_reset()));
118 connect(decode_signal_.get(), SIGNAL(decode_finished()),
119 this, SLOT(on_decode_finished()));
120 connect(decode_signal_.get(), SIGNAL(channels_updated()),
121 this, SLOT(on_channels_updated()));
122
123 connect(&delete_mapper_, SIGNAL(mapped(int)),
124 this, SLOT(on_delete_decoder(int)));
125 connect(&show_hide_mapper_, SIGNAL(mapped(int)),
126 this, SLOT(on_show_hide_decoder(int)));
127
128 connect(&delayed_trace_updater_, SIGNAL(timeout()),
129 this, SLOT(on_delayed_trace_update()));
130 delayed_trace_updater_.setSingleShot(true);
131 delayed_trace_updater_.setInterval(1000 / MaxTraceUpdateRate);
132}
133
134bool DecodeTrace::enabled() const
135{
136 return true;
137}
138
139shared_ptr<data::SignalBase> DecodeTrace::base() const
140{
141 return base_;
142}
143
144pair<int, int> DecodeTrace::v_extents() const
145{
146 const int row_height = (ViewItemPaintParams::text_height() * 6) / 4;
147
148 // Make an empty decode trace appear symmetrical
149 const int row_count = max(1, max_visible_rows_);
150
151 return make_pair(-row_height, row_height * row_count);
152}
153
154void DecodeTrace::paint_back(QPainter &p, ViewItemPaintParams &pp)
155{
156 Trace::paint_back(p, pp);
157 paint_axis(p, pp, get_visual_y());
158}
159
160void DecodeTrace::paint_mid(QPainter &p, ViewItemPaintParams &pp)
161{
162 const int text_height = ViewItemPaintParams::text_height();
163 row_height_ = (text_height * 6) / 4;
164 const int annotation_height = (text_height * 5) / 4;
165
166 const QString err = decode_signal_->error_message();
167 if (!err.isEmpty()) {
168 draw_unresolved_period(
169 p, annotation_height, pp.left(), pp.right());
170 draw_error(p, err, pp);
171 return;
172 }
173
174 // Set default pen to allow for text width calculation
175 p.setPen(Qt::black);
176
177 // Iterate through the rows
178 int y = get_visual_y();
179 pair<uint64_t, uint64_t> sample_range = get_sample_range(
180 pp.left(), pp.right());
181
182 const vector<Row> rows = decode_signal_->visible_rows();
183
184 visible_rows_.clear();
185 for (const Row& row : rows) {
186 // Cache the row title widths
187 int row_title_width;
188 try {
189 row_title_width = row_title_widths_.at(row);
190 } catch (out_of_range&) {
191 const int w = p.boundingRect(QRectF(), 0, row.title()).width() +
192 RowTitleMargin;
193 row_title_widths_[row] = w;
194 row_title_width = w;
195 }
196
197 vector<Annotation> annotations;
198 decode_signal_->get_annotation_subset(annotations, row,
199 current_segment_, sample_range.first, sample_range.second);
200 if (!annotations.empty()) {
201 draw_annotations(annotations, p, annotation_height, pp, y,
202 get_row_color(visible_rows_.size()), row_title_width);
203
204 y += row_height_;
205
206 visible_rows_.push_back(row);
207 }
208 }
209
210 // Draw the hatching
211 draw_unresolved_period(p, annotation_height, pp.left(), pp.right());
212
213 if ((int)visible_rows_.size() > max_visible_rows_) {
214 max_visible_rows_ = (int)visible_rows_.size();
215
216 // Call order is important, otherwise the lazy event handler won't work
217 owner_->extents_changed(false, true);
218 owner_->row_item_appearance_changed(false, true);
219 }
220}
221
222void DecodeTrace::paint_fore(QPainter &p, ViewItemPaintParams &pp)
223{
224 assert(row_height_);
225
226 for (size_t i = 0; i < visible_rows_.size(); i++) {
227 const int y = i * row_height_ + get_visual_y();
228
229 p.setPen(QPen(Qt::NoPen));
230 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
231
232 if (i != 0) {
233 const QPointF points[] = {
234 QPointF(pp.left(), y - ArrowSize),
235 QPointF(pp.left() + ArrowSize, y),
236 QPointF(pp.left(), y + ArrowSize)
237 };
238 p.drawPolygon(points, countof(points));
239 }
240
241 const QRect r(pp.left() + ArrowSize * 2, y - row_height_ / 2,
242 pp.right() - pp.left(), row_height_);
243 const QString h(visible_rows_[i].title());
244 const int f = Qt::AlignLeft | Qt::AlignVCenter |
245 Qt::TextDontClip;
246
247 // Draw the outline
248 p.setPen(QApplication::palette().color(QPalette::Base));
249 for (int dx = -1; dx <= 1; dx++)
250 for (int dy = -1; dy <= 1; dy++)
251 if (dx != 0 && dy != 0)
252 p.drawText(r.translated(dx, dy), f, h);
253
254 // Draw the text
255 p.setPen(QApplication::palette().color(QPalette::WindowText));
256 p.drawText(r, f, h);
257 }
258
259 if (show_hover_marker_)
260 paint_hover_marker(p);
261}
262
263void DecodeTrace::populate_popup_form(QWidget *parent, QFormLayout *form)
264{
265 using pv::data::decode::Decoder;
266
267 assert(form);
268
269 // Add the standard options
270 Trace::populate_popup_form(parent, form);
271
272 // Add the decoder options
273 bindings_.clear();
274 channel_id_map_.clear();
275 init_state_map_.clear();
276 decoder_forms_.clear();
277
278 const vector< shared_ptr<Decoder> > &stack = decode_signal_->decoder_stack();
279
280 if (stack.empty()) {
281 QLabel *const l = new QLabel(
282 tr("<p><i>No decoders in the stack</i></p>"));
283 l->setAlignment(Qt::AlignCenter);
284 form->addRow(l);
285 } else {
286 auto iter = stack.cbegin();
287 for (int i = 0; i < (int)stack.size(); i++, iter++) {
288 shared_ptr<Decoder> dec(*iter);
289 create_decoder_form(i, dec, parent, form);
290 }
291
292 form->addRow(new QLabel(
293 tr("<i>* Required channels</i>"), parent));
294 }
295
296 // Add stacking button
297 pv::widgets::DecoderMenu *const decoder_menu =
298 new pv::widgets::DecoderMenu(parent);
299 connect(decoder_menu, SIGNAL(decoder_selected(srd_decoder*)),
300 this, SLOT(on_stack_decoder(srd_decoder*)));
301
302 QPushButton *const stack_button =
303 new QPushButton(tr("Stack Decoder"), parent);
304 stack_button->setMenu(decoder_menu);
305 stack_button->setToolTip(tr("Stack a higher-level decoder on top of this one"));
306
307 QHBoxLayout *stack_button_box = new QHBoxLayout;
308 stack_button_box->addWidget(stack_button, 0, Qt::AlignRight);
309 form->addRow(stack_button_box);
310}
311
312QMenu* DecodeTrace::create_context_menu(QWidget *parent)
313{
314 QMenu *const menu = Trace::create_context_menu(parent);
315
316 menu->addSeparator();
317
318 QAction *const del = new QAction(tr("Delete"), this);
319 del->setShortcuts(QKeySequence::Delete);
320 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
321 menu->addAction(del);
322
323 return menu;
324}
325
326void DecodeTrace::draw_annotations(vector<pv::data::decode::Annotation> annotations,
327 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
328 QColor row_color, int row_title_width)
329{
330 using namespace pv::data::decode;
331
332 Annotation::Class block_class = 0;
333 bool block_class_uniform = true;
334 qreal block_start = 0;
335 int block_ann_count = 0;
336
337 const Annotation *prev_ann;
338 qreal prev_end = INT_MIN;
339
340 qreal a_end;
341
342 double samples_per_pixel, pixels_offset;
343 tie(pixels_offset, samples_per_pixel) =
344 get_pixels_offset_samples_per_pixel();
345
346 // Sort the annotations by start sample so that decoders
347 // can't confuse us by creating annotations out of order
348 stable_sort(annotations.begin(), annotations.end(),
349 [](const Annotation &a, const Annotation &b) {
350 return a.start_sample() < b.start_sample(); });
351
352 // Gather all annotations that form a visual "block" and draw them as such
353 for (const Annotation &a : annotations) {
354
355 const qreal abs_a_start = a.start_sample() / samples_per_pixel;
356 const qreal abs_a_end = a.end_sample() / samples_per_pixel;
357
358 const qreal a_start = abs_a_start - pixels_offset;
359 a_end = abs_a_end - pixels_offset;
360
361 const qreal a_width = a_end - a_start;
362 const qreal delta = a_end - prev_end;
363
364 bool a_is_separate = false;
365
366 // Annotation wider than the threshold for a useful label width?
367 if (a_width >= min_useful_label_width_) {
368 for (const QString &ann_text : a.annotations()) {
369 const qreal w = p.boundingRect(QRectF(), 0, ann_text).width();
370 // Annotation wide enough to fit a label? Don't put it in a block then
371 if (w <= a_width) {
372 a_is_separate = true;
373 break;
374 }
375 }
376 }
377
378 // Were the previous and this annotation more than a pixel apart?
379 if ((abs(delta) > 1) || a_is_separate) {
380 // Block was broken, draw annotations that form the current block
381 if (block_ann_count == 1)
382 draw_annotation(*prev_ann, p, h, pp, y, row_color,
383 row_title_width);
384 else if (block_ann_count > 0)
385 draw_annotation_block(block_start, prev_end, block_class,
386 block_class_uniform, p, h, y, row_color);
387
388 block_ann_count = 0;
389 }
390
391 if (a_is_separate) {
392 draw_annotation(a, p, h, pp, y, row_color, row_title_width);
393 // Next annotation must start a new block. delta will be > 1
394 // because we set prev_end to INT_MIN but that's okay since
395 // block_ann_count will be 0 and nothing will be drawn
396 prev_end = INT_MIN;
397 block_ann_count = 0;
398 } else {
399 prev_end = a_end;
400 prev_ann = &a;
401
402 if (block_ann_count == 0) {
403 block_start = a_start;
404 block_class = a.ann_class();
405 block_class_uniform = true;
406 } else
407 if (a.ann_class() != block_class)
408 block_class_uniform = false;
409
410 block_ann_count++;
411 }
412 }
413
414 if (block_ann_count == 1)
415 draw_annotation(*prev_ann, p, h, pp, y, row_color, row_title_width);
416 else if (block_ann_count > 0)
417 draw_annotation_block(block_start, prev_end, block_class,
418 block_class_uniform, p, h, y, row_color);
419}
420
421void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a,
422 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
423 QColor row_color, int row_title_width) const
424{
425 double samples_per_pixel, pixels_offset;
426 tie(pixels_offset, samples_per_pixel) =
427 get_pixels_offset_samples_per_pixel();
428
429 const double start = a.start_sample() / samples_per_pixel -
430 pixels_offset;
431 const double end = a.end_sample() / samples_per_pixel - pixels_offset;
432
433 QColor color = get_annotation_color(row_color, a.ann_class());
434 p.setPen(color.darker());
435 p.setBrush(color);
436
437 if (start > pp.right() + DrawPadding || end < pp.left() - DrawPadding)
438 return;
439
440 if (a.start_sample() == a.end_sample())
441 draw_instant(a, p, h, start, y);
442 else
443 draw_range(a, p, h, start, end, y, pp, row_title_width);
444}
445
446void DecodeTrace::draw_annotation_block(qreal start, qreal end,
447 Annotation::Class ann_class, bool use_ann_format, QPainter &p, int h,
448 int y, QColor row_color) const
449{
450 const double top = y + .5 - h / 2;
451 const double bottom = y + .5 + h / 2;
452
453 const QRectF rect(start, top, end - start, bottom - top);
454 const int r = h / 4;
455
456 p.setPen(QPen(Qt::NoPen));
457 p.setBrush(Qt::white);
458 p.drawRoundedRect(rect, r, r);
459
460 // If all annotations in this block are of the same type, we can use the
461 // one format that all of these annotations have. Otherwise, we should use
462 // a neutral color (i.e. gray)
463 if (use_ann_format) {
464 const QColor color = get_annotation_color(row_color, ann_class);
465 p.setPen(color.darker());
466 p.setBrush(QBrush(color, Qt::Dense4Pattern));
467 } else {
468 p.setPen(Qt::gray);
469 p.setBrush(QBrush(Qt::gray, Qt::Dense4Pattern));
470 }
471
472 p.drawRoundedRect(rect, r, r);
473}
474
475void DecodeTrace::draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
476 int h, qreal x, int y) const
477{
478 const QString text = a.annotations().empty() ?
479 QString() : a.annotations().back();
480 const qreal w = min((qreal)p.boundingRect(QRectF(), 0, text).width(),
481 0.0) + h;
482 const QRectF rect(x - w / 2, y - h / 2, w, h);
483
484 p.drawRoundedRect(rect, h / 2, h / 2);
485
486 p.setPen(Qt::black);
487 p.drawText(rect, Qt::AlignCenter | Qt::AlignVCenter, text);
488}
489
490void DecodeTrace::draw_range(const pv::data::decode::Annotation &a, QPainter &p,
491 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
492 int row_title_width) const
493{
494 const qreal top = y + .5 - h / 2;
495 const qreal bottom = y + .5 + h / 2;
496 const vector<QString> annotations = a.annotations();
497
498 // If the two ends are within 1 pixel, draw a vertical line
499 if (start + 1.0 > end) {
500 p.drawLine(QPointF(start, top), QPointF(start, bottom));
501 return;
502 }
503
504 const qreal cap_width = min((end - start) / 4, EndCapWidth);
505
506 QPointF pts[] = {
507 QPointF(start, y + .5f),
508 QPointF(start + cap_width, top),
509 QPointF(end - cap_width, top),
510 QPointF(end, y + .5f),
511 QPointF(end - cap_width, bottom),
512 QPointF(start + cap_width, bottom)
513 };
514
515 p.drawConvexPolygon(pts, countof(pts));
516
517 if (annotations.empty())
518 return;
519
520 const int ann_start = start + cap_width;
521 const int ann_end = end - cap_width;
522
523 const int real_start = max(ann_start, pp.left() + row_title_width);
524 const int real_end = min(ann_end, pp.right());
525 const int real_width = real_end - real_start;
526
527 QRectF rect(real_start, y - h / 2, real_width, h);
528 if (rect.width() <= 4)
529 return;
530
531 p.setPen(Qt::black);
532
533 // Try to find an annotation that will fit
534 QString best_annotation;
535 int best_width = 0;
536
537 for (const QString &a : annotations) {
538 const int w = p.boundingRect(QRectF(), 0, a).width();
539 if (w <= rect.width() && w > best_width)
540 best_annotation = a, best_width = w;
541 }
542
543 if (best_annotation.isEmpty())
544 best_annotation = annotations.back();
545
546 // If not ellide the last in the list
547 p.drawText(rect, Qt::AlignCenter, p.fontMetrics().elidedText(
548 best_annotation, Qt::ElideRight, rect.width()));
549}
550
551void DecodeTrace::draw_error(QPainter &p, const QString &message,
552 const ViewItemPaintParams &pp)
553{
554 const int y = get_visual_y();
555
556 p.setPen(ErrorBgColor.darker());
557 p.setBrush(ErrorBgColor);
558
559 const QRectF bounding_rect =
560 QRectF(pp.left(), INT_MIN / 2 + y, pp.right(), INT_MAX);
561 const QRectF text_rect = p.boundingRect(bounding_rect,
562 Qt::AlignCenter, message);
563 const qreal r = text_rect.height() / 4;
564
565 p.drawRoundedRect(text_rect.adjusted(-r, -r, r, r), r, r,
566 Qt::AbsoluteSize);
567
568 p.setPen(Qt::black);
569 p.drawText(text_rect, message);
570}
571
572void DecodeTrace::draw_unresolved_period(QPainter &p, int h, int left, int right) const
573{
574 using namespace pv::data;
575 using pv::data::decode::Decoder;
576
577 double samples_per_pixel, pixels_offset;
578
579 const int64_t sample_count = decode_signal_->get_working_sample_count(current_segment_);
580 if (sample_count == 0)
581 return;
582
583 const int64_t samples_decoded = decode_signal_->get_decoded_sample_count(current_segment_);
584 if (sample_count == samples_decoded)
585 return;
586
587 const int y = get_visual_y();
588
589 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
590
591 const double start = max(samples_decoded /
592 samples_per_pixel - pixels_offset, left - 1.0);
593 const double end = min(sample_count / samples_per_pixel -
594 pixels_offset, right + 1.0);
595 const QRectF no_decode_rect(start, y - (h / 2) - 0.5, end - start, h);
596
597 p.setPen(QPen(Qt::NoPen));
598 p.setBrush(Qt::white);
599 p.drawRect(no_decode_rect);
600
601 p.setPen(NoDecodeColor);
602 p.setBrush(QBrush(NoDecodeColor, Qt::Dense6Pattern));
603 p.drawRect(no_decode_rect);
604}
605
606pair<double, double> DecodeTrace::get_pixels_offset_samples_per_pixel() const
607{
608 assert(owner_);
609
610 const View *view = owner_->view();
611 assert(view);
612
613 const double scale = view->scale();
614 assert(scale > 0);
615
616 const double pixels_offset =
617 ((view->offset() - decode_signal_->start_time()) / scale).convert_to<double>();
618
619 double samplerate = decode_signal_->samplerate();
620
621 // Show sample rate as 1Hz when it is unknown
622 if (samplerate == 0.0)
623 samplerate = 1.0;
624
625 return make_pair(pixels_offset, samplerate * scale);
626}
627
628pair<uint64_t, uint64_t> DecodeTrace::get_sample_range(
629 int x_start, int x_end) const
630{
631 double samples_per_pixel, pixels_offset;
632 tie(pixels_offset, samples_per_pixel) =
633 get_pixels_offset_samples_per_pixel();
634
635 const uint64_t start = (uint64_t)max(
636 (x_start + pixels_offset) * samples_per_pixel, 0.0);
637 const uint64_t end = (uint64_t)max(
638 (x_end + pixels_offset) * samples_per_pixel, 0.0);
639
640 return make_pair(start, end);
641}
642
643QColor DecodeTrace::get_row_color(int row_index) const
644{
645 // For each row color, use the base color hue and add an offset that's
646 // not a dividend of 360
647
648 QColor color;
649 const int h = (base_->color().toHsv().hue() + 20 * row_index) % 360;
650 const int s = DECODETRACE_COLOR_SATURATION;
651 const int v = DECODETRACE_COLOR_VALUE;
652 color.setHsl(h, s, v);
653
654 return color;
655}
656
657QColor DecodeTrace::get_annotation_color(QColor row_color, int annotation_index) const
658{
659 // For each row color, use the base color hue and add an offset that's
660 // not a dividend of 360 and not a multiple of the row offset
661
662 QColor color(row_color);
663 const int h = (color.toHsv().hue() + 55 * annotation_index) % 360;
664 const int s = DECODETRACE_COLOR_SATURATION;
665 const int v = DECODETRACE_COLOR_VALUE;
666 color.setHsl(h, s, v);
667
668 return color;
669}
670
671int DecodeTrace::get_row_at_point(const QPoint &point)
672{
673 if (!row_height_)
674 return -1;
675
676 const int y = (point.y() - get_visual_y() + row_height_ / 2);
677
678 /* Integer divison of (x-1)/x would yield 0, so we check for this. */
679 if (y < 0)
680 return -1;
681
682 const int row = y / row_height_;
683
684 if (row >= (int)visible_rows_.size())
685 return -1;
686
687 return row;
688}
689
690const QString DecodeTrace::get_annotation_at_point(const QPoint &point)
691{
692 using namespace pv::data::decode;
693
694 if (!enabled())
695 return QString();
696
697 const pair<uint64_t, uint64_t> sample_range =
698 get_sample_range(point.x(), point.x() + 1);
699 const int row = get_row_at_point(point);
700 if (row < 0)
701 return QString();
702
703 vector<pv::data::decode::Annotation> annotations;
704
705 decode_signal_->get_annotation_subset(annotations, visible_rows_[row],
706 current_segment_, sample_range.first, sample_range.second);
707
708 return (annotations.empty()) ?
709 QString() : annotations[0].annotations().front();
710}
711
712void DecodeTrace::hover_point_changed(const QPoint &hp)
713{
714 Trace::hover_point_changed(hp);
715
716 assert(owner_);
717
718 const View *const view = owner_->view();
719 assert(view);
720
721 if (hp.x() == 0) {
722 QToolTip::hideText();
723 return;
724 }
725
726 QString ann = get_annotation_at_point(hp);
727
728 assert(view);
729
730 if (!row_height_ || ann.isEmpty()) {
731 QToolTip::hideText();
732 return;
733 }
734
735 const int hover_row = get_row_at_point(hp);
736
737 QFontMetrics m(QToolTip::font());
738 const QRect text_size = m.boundingRect(QRect(), 0, ann);
739
740 // This is OS-specific and unfortunately we can't query it, so
741 // use an approximation to at least try to minimize the error.
742 const int padding = 8;
743
744 // Make sure the tool tip doesn't overlap with the mouse cursor.
745 // If it did, the tool tip would constantly hide and re-appear.
746 // We also push it up by one row so that it appears above the
747 // decode trace, not below.
748 QPoint p = hp;
749 p.setX(hp.x() - (text_size.width() / 2) - padding);
750
751 p.setY(get_visual_y() - (row_height_ / 2) +
752 (hover_row * row_height_) -
753 row_height_ - text_size.height() - padding);
754
755 QToolTip::showText(view->viewport()->mapToGlobal(p), ann);
756}
757
758void DecodeTrace::create_decoder_form(int index,
759 shared_ptr<data::decode::Decoder> &dec, QWidget *parent,
760 QFormLayout *form)
761{
762 GlobalSettings settings;
763
764 assert(dec);
765 const srd_decoder *const decoder = dec->decoder();
766 assert(decoder);
767
768 const bool decoder_deletable = index > 0;
769
770 pv::widgets::DecoderGroupBox *const group =
771 new pv::widgets::DecoderGroupBox(
772 QString::fromUtf8(decoder->name),
773 tr("%1:\n%2").arg(QString::fromUtf8(decoder->longname),
774 QString::fromUtf8(decoder->desc)),
775 nullptr, decoder_deletable);
776 group->set_decoder_visible(dec->shown());
777
778 if (decoder_deletable) {
779 delete_mapper_.setMapping(group, index);
780 connect(group, SIGNAL(delete_decoder()), &delete_mapper_, SLOT(map()));
781 }
782
783 show_hide_mapper_.setMapping(group, index);
784 connect(group, SIGNAL(show_hide_decoder()),
785 &show_hide_mapper_, SLOT(map()));
786
787 QFormLayout *const decoder_form = new QFormLayout;
788 group->add_layout(decoder_form);
789
790 const vector<DecodeChannel> channels = decode_signal_->get_channels();
791
792 // Add the channels
793 for (DecodeChannel ch : channels) {
794 // Ignore channels not part of the decoder we create the form for
795 if (ch.decoder_ != dec)
796 continue;
797
798 QComboBox *const combo = create_channel_selector(parent, &ch);
799 QComboBox *const combo_init_state = create_channel_selector_init_state(parent, &ch);
800
801 channel_id_map_[combo] = ch.id;
802 init_state_map_[combo_init_state] = ch.id;
803
804 connect(combo, SIGNAL(currentIndexChanged(int)),
805 this, SLOT(on_channel_selected(int)));
806 connect(combo_init_state, SIGNAL(currentIndexChanged(int)),
807 this, SLOT(on_init_state_changed(int)));
808
809 QHBoxLayout *const hlayout = new QHBoxLayout;
810 hlayout->addWidget(combo);
811 hlayout->addWidget(combo_init_state);
812
813 if (!settings.value(GlobalSettings::Key_Dec_InitialStateConfigurable).toBool())
814 combo_init_state->hide();
815
816 const QString required_flag = ch.is_optional ? QString() : QString("*");
817 decoder_form->addRow(tr("<b>%1</b> (%2) %3")
818 .arg(ch.name, ch.desc, required_flag), hlayout);
819 }
820
821 // Add the options
822 shared_ptr<binding::Decoder> binding(
823 new binding::Decoder(decode_signal_, dec));
824 binding->add_properties_to_form(decoder_form, true);
825
826 bindings_.push_back(binding);
827
828 form->addRow(group);
829 decoder_forms_.push_back(group);
830}
831
832QComboBox* DecodeTrace::create_channel_selector(QWidget *parent, const DecodeChannel *ch)
833{
834 const auto sigs(session_.signalbases());
835
836 // Sort signals in natural order
837 vector< shared_ptr<data::SignalBase> > sig_list(sigs.begin(), sigs.end());
838 sort(sig_list.begin(), sig_list.end(),
839 [](const shared_ptr<data::SignalBase> &a,
840 const shared_ptr<data::SignalBase> &b) {
841 return strnatcasecmp(a->name().toStdString(),
842 b->name().toStdString()) < 0; });
843
844 QComboBox *selector = new QComboBox(parent);
845
846 selector->addItem("-", qVariantFromValue((void*)nullptr));
847
848 if (!ch->assigned_signal)
849 selector->setCurrentIndex(0);
850
851 for (const shared_ptr<data::SignalBase> &b : sig_list) {
852 assert(b);
853 if (b->logic_data() && b->enabled()) {
854 selector->addItem(b->name(),
855 qVariantFromValue((void*)b.get()));
856
857 if (ch->assigned_signal == b.get())
858 selector->setCurrentIndex(selector->count() - 1);
859 }
860 }
861
862 return selector;
863}
864
865QComboBox* DecodeTrace::create_channel_selector_init_state(QWidget *parent,
866 const DecodeChannel *ch)
867{
868 QComboBox *selector = new QComboBox(parent);
869
870 selector->addItem("0", qVariantFromValue((int)SRD_INITIAL_PIN_LOW));
871 selector->addItem("1", qVariantFromValue((int)SRD_INITIAL_PIN_HIGH));
872 selector->addItem("X", qVariantFromValue((int)SRD_INITIAL_PIN_SAME_AS_SAMPLE0));
873
874 selector->setCurrentIndex(ch->initial_pin_state);
875
876 selector->setToolTip("Initial (assumed) pin value before the first sample");
877
878 return selector;
879}
880
881void DecodeTrace::on_new_annotations()
882{
883 if (!delayed_trace_updater_.isActive())
884 delayed_trace_updater_.start();
885}
886
887void DecodeTrace::on_delayed_trace_update()
888{
889 if (owner_)
890 owner_->row_item_appearance_changed(false, true);
891}
892
893void DecodeTrace::on_decode_reset()
894{
895 visible_rows_.clear();
896 max_visible_rows_ = 0;
897
898 if (owner_)
899 owner_->row_item_appearance_changed(false, true);
900}
901
902void DecodeTrace::on_decode_finished()
903{
904 if (owner_)
905 owner_->row_item_appearance_changed(false, true);
906}
907
908void DecodeTrace::delete_pressed()
909{
910 on_delete();
911}
912
913void DecodeTrace::on_delete()
914{
915 session_.remove_decode_signal(decode_signal_);
916}
917
918void DecodeTrace::on_channel_selected(int)
919{
920 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
921
922 // Determine signal that was selected
923 const data::SignalBase *signal =
924 (data::SignalBase*)cb->itemData(cb->currentIndex()).value<void*>();
925
926 // Determine decode channel ID this combo box is the channel selector for
927 const uint16_t id = channel_id_map_.at(cb);
928
929 decode_signal_->assign_signal(id, signal);
930}
931
932void DecodeTrace::on_channels_updated()
933{
934 if (owner_)
935 owner_->row_item_appearance_changed(false, true);
936}
937
938void DecodeTrace::on_init_state_changed(int)
939{
940 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
941
942 // Determine inital pin state that was selected
943 int init_state = cb->itemData(cb->currentIndex()).value<int>();
944
945 // Determine decode channel ID this combo box is the channel selector for
946 const uint16_t id = init_state_map_.at(cb);
947
948 decode_signal_->set_initial_pin_state(id, init_state);
949}
950
951void DecodeTrace::on_stack_decoder(srd_decoder *decoder)
952{
953 decode_signal_->stack_decoder(decoder);
954
955 create_popup_form();
956}
957
958void DecodeTrace::on_delete_decoder(int index)
959{
960 decode_signal_->remove_decoder(index);
961
962 // Force re-calculation of the trace height, see paint_mid()
963 max_visible_rows_ = 0;
964 owner_->extents_changed(false, true);
965
966 // Update the popup
967 create_popup_form();
968}
969
970void DecodeTrace::on_show_hide_decoder(int index)
971{
972 const bool state = decode_signal_->toggle_decoder_visibility(index);
973
974 assert(index < (int)decoder_forms_.size());
975 decoder_forms_[index]->set_decoder_visible(state);
976
977 if (!state) {
978 // Force re-calculation of the trace height, see paint_mid()
979 max_visible_rows_ = 0;
980 owner_->extents_changed(false, true);
981 }
982
983 if (owner_)
984 owner_->row_item_appearance_changed(false, true);
985}
986
987} // namespace trace
988} // namespace views
989} // namespace pv