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