]> sigrok.org Git - pulseview.git/blame - pv/views/trace/decodetrace.cpp
DecodeTrace: Honor a decoder's shown flag
[pulseview.git] / pv / views / trace / decodetrace.cpp
CommitLineData
55d3603d
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
55d3603d
JH
18 */
19
20extern "C" {
21#include <libsigrokdecode/libsigrokdecode.h>
22}
23
99ba5f28 24#include <limits>
c3a740dd 25#include <mutex>
5c48ce32 26#include <tuple>
c3a740dd 27
06bb4e6a
JH
28#include <extdef.h>
29
a855d71e 30#include <boost/functional/hash.hpp>
b213ef09 31
c51482b3 32#include <QAction>
d7c0ca4a 33#include <QApplication>
c764c995 34#include <QClipboard>
4e5a4405 35#include <QComboBox>
be843692 36#include <QFileDialog>
4e5a4405
JH
37#include <QFormLayout>
38#include <QLabel>
b213ef09 39#include <QMenu>
be843692 40#include <QMessageBox>
ce94e4fd 41#include <QPushButton>
be843692 42#include <QTextStream>
e2f90c50 43#include <QToolTip>
c51482b3 44
2acdb232 45#include "decodetrace.hpp"
1573bf16
SA
46#include "view.hpp"
47#include "viewport.hpp"
2acdb232 48
1cc1c8de 49#include <pv/globalsettings.hpp>
ad908057
SA
50#include <pv/session.hpp>
51#include <pv/strnatcmp.hpp>
52#include <pv/data/decodesignal.hpp>
aca9aa83 53#include <pv/data/decode/annotation.hpp>
2acdb232
JH
54#include <pv/data/decode/decoder.hpp>
55#include <pv/data/logic.hpp>
f3d66e52 56#include <pv/data/logicsegment.hpp>
2acdb232
JH
57#include <pv/widgets/decodergroupbox.hpp>
58#include <pv/widgets/decodermenu.hpp>
119aff65 59
5c48ce32 60using std::abs;
84002113
SA
61using std::find_if;
62using std::lock_guard;
7f8517f6 63using std::make_pair;
819f4c25 64using std::max;
819f4c25 65using std::min;
99ba5f28 66using std::numeric_limits;
6f925ba9 67using std::out_of_range;
7f8517f6 68using std::pair;
f9abf97e 69using std::shared_ptr;
53e35b2d 70using std::tie;
819f4c25 71using std::vector;
55d3603d 72
ecd07c20
SA
73using pv::data::decode::Annotation;
74using pv::data::decode::Row;
a82325d1 75using pv::data::decode::DecodeChannel;
9f97b357 76using pv::data::DecodeSignal;
ecd07c20 77
55d3603d 78namespace pv {
f4e57597 79namespace views {
1573bf16 80namespace trace {
55d3603d 81
9ba13f5e
SA
82
83#define DECODETRACE_COLOR_SATURATION (180) /* 0-255 */
84#define DECODETRACE_COLOR_VALUE (170) /* 0-255 */
06bb4e6a 85
641574bc
SA
86const QColor DecodeTrace::ErrorBgColor = QColor(0xEF, 0x29, 0x29);
87const QColor DecodeTrace::NoDecodeColor = QColor(0x88, 0x8A, 0x85);
ad50ac1a 88
84002113 89const int DecodeTrace::ArrowSize = 7;
06e810f2 90const double DecodeTrace::EndCapWidth = 5;
aee9dcf3 91const int DecodeTrace::RowTitleMargin = 10;
06e810f2
JH
92const int DecodeTrace::DrawPadding = 100;
93
5b6ae103
SA
94const int DecodeTrace::MaxTraceUpdateRate = 1; // No more than 1 Hz
95
2b81ae46 96DecodeTrace::DecodeTrace(pv::Session &session,
bb7dd726 97 shared_ptr<data::SignalBase> signalbase, int index) :
bf0edd2b 98 Trace(signalbase),
8dbbc7f0 99 session_(session),
eee89ff8 100 max_visible_rows_(0),
8dbbc7f0
JH
101 delete_mapper_(this),
102 show_hide_mapper_(this)
55d3603d 103{
ad908057 104 decode_signal_ = dynamic_pointer_cast<data::DecodeSignal>(base_);
e0fc5810 105
ab185f78
SA
106 GlobalSettings settings;
107 always_show_all_rows_ = settings.value(GlobalSettings::Key_Dec_AlwaysShowAllRows).toBool();
108
109 GlobalSettings::add_change_handler(this);
110
752281db
SA
111 // Determine shortest string we want to see displayed in full
112 QFontMetrics m(QApplication::font());
113 min_useful_label_width_ = m.width("XX"); // e.g. two hex characters
114
84002113
SA
115 default_row_height_ = (ViewItemPaintParams::text_height() * 6) / 4;
116
9ba13f5e
SA
117 // For the base color, we want to start at a very different color for
118 // every decoder stack, so multiply the index with a number that is
119 // rather close to 180 degrees of the color circle but not a dividend of 360
120 // Note: The offset equals the color of the first annotation
121 QColor color;
122 const int h = (120 + 160 * index) % 360;
123 const int s = DECODETRACE_COLOR_SATURATION;
124 const int v = DECODETRACE_COLOR_VALUE;
125 color.setHsv(h, s, v);
126 base_->set_color(color);
9cef9567 127
ad908057
SA
128 connect(decode_signal_.get(), SIGNAL(new_annotations()),
129 this, SLOT(on_new_annotations()));
eee3eab9
SA
130 connect(decode_signal_.get(), SIGNAL(decode_reset()),
131 this, SLOT(on_decode_reset()));
1b56c646
SA
132 connect(decode_signal_.get(), SIGNAL(decode_finished()),
133 this, SLOT(on_decode_finished()));
9f97b357
SA
134 connect(decode_signal_.get(), SIGNAL(channels_updated()),
135 this, SLOT(on_channels_updated()));
136
8dbbc7f0 137 connect(&delete_mapper_, SIGNAL(mapped(int)),
613d097c 138 this, SLOT(on_delete_decoder(int)));
8dbbc7f0 139 connect(&show_hide_mapper_, SIGNAL(mapped(int)),
dd048a7e 140 this, SLOT(on_show_hide_decoder(int)));
5b6ae103
SA
141
142 connect(&delayed_trace_updater_, SIGNAL(timeout()),
143 this, SLOT(on_delayed_trace_update()));
144 delayed_trace_updater_.setSingleShot(true);
145 delayed_trace_updater_.setInterval(1000 / MaxTraceUpdateRate);
55d3603d
JH
146}
147
ab185f78
SA
148DecodeTrace::~DecodeTrace()
149{
150 GlobalSettings::remove_change_handler(this);
151}
152
b9329558 153bool DecodeTrace::enabled() const
55d3603d
JH
154{
155 return true;
156}
157
6f925ba9 158shared_ptr<data::SignalBase> DecodeTrace::base() const
b6b267bb 159{
bb7dd726 160 return base_;
b6b267bb
JH
161}
162
a5d93c27
JH
163pair<int, int> DecodeTrace::v_extents() const
164{
e40a79cb 165 // Make an empty decode trace appear symmetrical
84002113
SA
166 if (max_visible_rows_ == 0)
167 return make_pair(-default_row_height_, default_row_height_);
168
169 unsigned int height = 0;
170 for (const RowData& r : rows_)
171 if (r.currently_visible)
172 height += r.height;
e40a79cb 173
84002113 174 return make_pair(-default_row_height_, height);
a5d93c27
JH
175}
176
60938e04 177void DecodeTrace::paint_back(QPainter &p, ViewItemPaintParams &pp)
fe08b6e8 178{
3eb29afd 179 Trace::paint_back(p, pp);
97904bf7 180 paint_axis(p, pp, get_visual_y());
fe08b6e8
JH
181}
182
60938e04 183void DecodeTrace::paint_mid(QPainter &p, ViewItemPaintParams &pp)
55d3603d 184{
84002113
SA
185 lock_guard<mutex> lock(row_modification_mutex_);
186
0ce3d18c 187 const int text_height = ViewItemPaintParams::text_height();
0ce3d18c 188 const int annotation_height = (text_height * 5) / 4;
5dfeb70f 189
cd0c558b
SA
190 // Set default pen to allow for text width calculation
191 p.setPen(Qt::black);
192
67fb15bf 193 pair<uint64_t, uint64_t> sample_range = get_view_sample_range(pp.left(), pp.right());
b82908ab
SA
194
195 // Just because the view says we see a certain sample range it
196 // doesn't mean we have this many decoded samples, too, so crop
197 // the range to what has been decoded already
198 sample_range.second = min((int64_t)sample_range.second,
199 decode_signal_->get_decoded_sample_count(current_segment_, false));
5dfeb70f 200
84002113
SA
201 for (RowData& r : rows_)
202 r.currently_visible = false;
203 visible_rows_ = 0;
204 int y = get_visual_y();
aee9dcf3 205
84002113 206 for (RowData& r : rows_) {
f9101a91 207 vector<Annotation> annotations;
84002113 208 decode_signal_->get_annotation_subset(annotations, r.decode_row,
72435789 209 current_segment_, sample_range.first, sample_range.second);
f994f496
SA
210
211 // Show row if there are visible annotations or when user wants to see
212 // all rows that have annotations somewhere and this one is one of them
84002113 213 size_t ann_count = decode_signal_->get_annotation_count(r.decode_row, current_segment_);
8b787f41
SA
214 r.currently_visible = (!annotations.empty() || (always_show_all_rows_ && (ann_count > 0)))
215 && (r.decode_row.decoder()->shown());
f994f496 216
84002113 217 if (r.currently_visible) {
50631798 218 draw_annotations(annotations, p, annotation_height, pp, y,
84002113
SA
219 get_row_color(r.decode_row.index()), r.title_width);
220 y += r.height;
221 visible_rows_++;
f9101a91 222 }
7e674e43 223 }
5dfeb70f 224
3eb29afd 225 draw_unresolved_period(p, annotation_height, pp.left(), pp.right());
eee89ff8 226
84002113
SA
227 if (visible_rows_ > max_visible_rows_) {
228 max_visible_rows_ = visible_rows_;
a303c2d8 229
6d2802aa
SA
230 // Call order is important, otherwise the lazy event handler won't work
231 owner_->extents_changed(false, true);
232 owner_->row_item_appearance_changed(false, true);
233 }
1ae18301
SA
234
235 const QString err = decode_signal_->error_message();
236 if (!err.isEmpty())
237 draw_error(p, err, pp);
55d3603d
JH
238}
239
60938e04 240void DecodeTrace::paint_fore(QPainter &p, ViewItemPaintParams &pp)
88908838 241{
84002113 242 unsigned int y = get_visual_y();
88908838 243
84002113
SA
244 for (const RowData& r : rows_) {
245 if (!r.currently_visible)
246 continue;
88908838
JH
247
248 p.setPen(QPen(Qt::NoPen));
88908838 249
84002113
SA
250 if (r.expand_marker_highlighted)
251 p.setBrush(QApplication::palette().brush(QPalette::HighlightedText));
252 else
253 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
254
255 // Draw expansion marker
256 const QPointF points[] = {
257 QPointF(pp.left(), y - ArrowSize),
258 QPointF(pp.left() + ArrowSize, y),
259 QPointF(pp.left(), y + ArrowSize)
260 };
261 p.drawPolygon(points, countof(points));
88908838 262
84002113
SA
263 p.setBrush(QApplication::palette().brush(QPalette::WindowText));
264
265 const QRect text_rect(pp.left() + ArrowSize * 2, y - r.height / 2,
266 pp.right() - pp.left(), r.height);
267 const QString h(r.decode_row.title());
88908838
JH
268 const int f = Qt::AlignLeft | Qt::AlignVCenter |
269 Qt::TextDontClip;
270
271 // Draw the outline
272 p.setPen(QApplication::palette().color(QPalette::Base));
273 for (int dx = -1; dx <= 1; dx++)
274 for (int dy = -1; dy <= 1; dy++)
275 if (dx != 0 && dy != 0)
84002113 276 p.drawText(text_rect.translated(dx, dy), f, h);
88908838
JH
277
278 // Draw the text
279 p.setPen(QApplication::palette().color(QPalette::WindowText));
84002113
SA
280 p.drawText(text_rect, f, h);
281
282 y += r.height;
88908838 283 }
1931b5f9
SA
284
285 if (show_hover_marker_)
286 paint_hover_marker(p);
88908838
JH
287}
288
cf0a3c9c
SA
289void DecodeTrace::update_stack_button()
290{
291 const vector< shared_ptr<data::decode::Decoder> > &stack = decode_signal_->decoder_stack();
292
293 // Only show decoders in the menu that can be stacked onto the last one in the stack
294 if (!stack.empty()) {
295 const srd_decoder* d = stack.back()->decoder();
296
297 if (d->outputs) {
298 pv::widgets::DecoderMenu *const decoder_menu =
299 new pv::widgets::DecoderMenu(stack_button_, (const char*)(d->outputs->data));
300 connect(decoder_menu, SIGNAL(decoder_selected(srd_decoder*)),
301 this, SLOT(on_stack_decoder(srd_decoder*)));
302
15784350
SA
303 decoder_menu->setStyleSheet("QMenu { menu-scrollable: 1; }");
304
cf0a3c9c
SA
305 stack_button_->setMenu(decoder_menu);
306 stack_button_->show();
307 return;
308 }
309 }
310
311 // No decoders available for stacking
312 stack_button_->setMenu(nullptr);
313 stack_button_->hide();
314}
315
b9329558 316void DecodeTrace::populate_popup_form(QWidget *parent, QFormLayout *form)
4e5a4405 317{
613d097c
JH
318 using pv::data::decode::Decoder;
319
4e5a4405 320 assert(form);
4e5a4405 321
7491a29f 322 // Add the standard options
4e5a4405
JH
323 Trace::populate_popup_form(parent, form);
324
7491a29f 325 // Add the decoder options
8dbbc7f0 326 bindings_.clear();
9f97b357
SA
327 channel_id_map_.clear();
328 init_state_map_.clear();
8dbbc7f0 329 decoder_forms_.clear();
4e5a4405 330
47747218 331 const vector< shared_ptr<Decoder> > &stack = decode_signal_->decoder_stack();
4e5a4405 332
2ad82c2e 333 if (stack.empty()) {
5069084a
JH
334 QLabel *const l = new QLabel(
335 tr("<p><i>No decoders in the stack</i></p>"));
336 l->setAlignment(Qt::AlignCenter);
337 form->addRow(l);
2ad82c2e 338 } else {
f46e495e 339 auto iter = stack.cbegin();
5069084a
JH
340 for (int i = 0; i < (int)stack.size(); i++, iter++) {
341 shared_ptr<Decoder> dec(*iter);
342 create_decoder_form(i, dec, parent, form);
343 }
344
345 form->addRow(new QLabel(
8bd26d8b 346 tr("<i>* Required channels</i>"), parent));
5069084a 347 }
4e5a4405 348
ce94e4fd 349 // Add stacking button
cf0a3c9c
SA
350 stack_button_ = new QPushButton(tr("Stack Decoder"), parent);
351 stack_button_->setToolTip(tr("Stack a higher-level decoder on top of this one"));
352 update_stack_button();
ce94e4fd
JH
353
354 QHBoxLayout *stack_button_box = new QHBoxLayout;
cf0a3c9c 355 stack_button_box->addWidget(stack_button_, 0, Qt::AlignRight);
ce94e4fd 356 form->addRow(stack_button_box);
4e5a4405
JH
357}
358
9e773fec 359QMenu* DecodeTrace::create_header_context_menu(QWidget *parent)
c51482b3 360{
9e773fec 361 QMenu *const menu = Trace::create_header_context_menu(parent);
c51482b3
JH
362
363 menu->addSeparator();
364
365 QAction *const del = new QAction(tr("Delete"), this);
a2d21018 366 del->setShortcuts(QKeySequence::Delete);
c51482b3
JH
367 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
368 menu->addAction(del);
369
370 return menu;
371}
372
be843692
SA
373QMenu* DecodeTrace::create_view_context_menu(QWidget *parent, QPoint &click_pos)
374{
79b53a1a
SA
375 // Get entries from default menu before adding our own
376 QMenu *const menu = new QMenu(parent);
377
378 QMenu* default_menu = Trace::create_view_context_menu(parent, click_pos);
379 if (default_menu) {
7a0d99e6 380 for (QAction *action : default_menu->actions()) { // clazy:exclude=range-loop
79b53a1a
SA
381 menu->addAction(action);
382 if (action->parent() == default_menu)
383 action->setParent(menu);
384 }
385 delete default_menu;
386
387 // Add separator if needed
388 if (menu->actions().length() > 0)
389 menu->addSeparator();
390 }
391
84002113
SA
392 selected_row_ = nullptr;
393 const RowData* r = get_row_at_point(click_pos);
394 if (r)
395 selected_row_ = &(r->decode_row);
be843692 396
c764c995
SA
397 const View *const view = owner_->view();
398 assert(view);
399 QPoint pos = view->viewport()->mapFrom(parent, click_pos);
400
99ba5f28 401 // Default sample range is "from here"
c764c995 402 const pair<uint64_t, uint64_t> sample_range = get_view_sample_range(pos.x(), pos.x() + 1);
99ba5f28 403 selected_sample_range_ = make_pair(sample_range.first, numeric_limits<uint64_t>::max());
be843692 404
556259d2
SA
405 if (decode_signal_->is_paused()) {
406 QAction *const resume =
407 new QAction(tr("Resume decoding"), this);
408 resume->setIcon(QIcon::fromTheme("media-playback-start",
409 QIcon(":/icons/media-playback-start.png")));
410 connect(resume, SIGNAL(triggered()), this, SLOT(on_pause_decode()));
411 menu->addAction(resume);
412 } else {
413 QAction *const pause =
414 new QAction(tr("Pause decoding"), this);
415 pause->setIcon(QIcon::fromTheme("media-playback-pause",
416 QIcon(":/icons/media-playback-pause.png")));
417 connect(pause, SIGNAL(triggered()), this, SLOT(on_pause_decode()));
418 menu->addAction(pause);
419 }
420
c764c995
SA
421 QAction *const copy_annotation_to_clipboard =
422 new QAction(tr("Copy annotation text to clipboard"), this);
423 copy_annotation_to_clipboard->setIcon(QIcon::fromTheme("edit-paste",
d01fcb19 424 QIcon(":/icons/edit-paste.svg")));
c764c995
SA
425 connect(copy_annotation_to_clipboard, SIGNAL(triggered()), this, SLOT(on_copy_annotation_to_clipboard()));
426 menu->addAction(copy_annotation_to_clipboard);
427
556259d2
SA
428 menu->addSeparator();
429
5a914348 430 QAction *const export_all_rows =
556259d2 431 new QAction(tr("Export all annotations"), this);
5a914348
SA
432 export_all_rows->setIcon(QIcon::fromTheme("document-save-as",
433 QIcon(":/icons/document-save-as.png")));
434 connect(export_all_rows, SIGNAL(triggered()), this, SLOT(on_export_all_rows()));
435 menu->addAction(export_all_rows);
436
be843692 437 QAction *const export_row =
556259d2 438 new QAction(tr("Export all annotations for this row"), this);
be843692
SA
439 export_row->setIcon(QIcon::fromTheme("document-save-as",
440 QIcon(":/icons/document-save-as.png")));
5a914348 441 connect(export_row, SIGNAL(triggered()), this, SLOT(on_export_row()));
be843692
SA
442 menu->addAction(export_row);
443
5a914348
SA
444 menu->addSeparator();
445
446 QAction *const export_all_rows_from_here =
447 new QAction(tr("Export all annotations, starting here"), this);
448 export_all_rows_from_here->setIcon(QIcon::fromTheme("document-save-as",
449 QIcon(":/icons/document-save-as.png")));
450 connect(export_all_rows_from_here, SIGNAL(triggered()), this, SLOT(on_export_all_rows_from_here()));
451 menu->addAction(export_all_rows_from_here);
452
be843692
SA
453 QAction *const export_row_from_here =
454 new QAction(tr("Export annotations for this row, starting here"), this);
455 export_row_from_here->setIcon(QIcon::fromTheme("document-save-as",
456 QIcon(":/icons/document-save-as.png")));
5a914348 457 connect(export_row_from_here, SIGNAL(triggered()), this, SLOT(on_export_row_from_here()));
be843692
SA
458 menu->addAction(export_row_from_here);
459
99ba5f28
SA
460 menu->addSeparator();
461
462 QAction *const export_all_rows_with_cursor =
463 new QAction(tr("Export all annotations within cursor range"), this);
464 export_all_rows_with_cursor->setIcon(QIcon::fromTheme("document-save-as",
465 QIcon(":/icons/document-save-as.png")));
466 connect(export_all_rows_with_cursor, SIGNAL(triggered()), this, SLOT(on_export_all_rows_with_cursor()));
467 menu->addAction(export_all_rows_with_cursor);
468
469 QAction *const export_row_with_cursor =
470 new QAction(tr("Export annotations for this row within cursor range"), this);
471 export_row_with_cursor->setIcon(QIcon::fromTheme("document-save-as",
472 QIcon(":/icons/document-save-as.png")));
473 connect(export_row_with_cursor, SIGNAL(triggered()), this, SLOT(on_export_row_with_cursor()));
474 menu->addAction(export_row_with_cursor);
475
99ba5f28
SA
476 if (!view->cursors()->enabled()) {
477 export_all_rows_with_cursor->setEnabled(false);
478 export_row_with_cursor->setEnabled(false);
479 }
480
be843692
SA
481 return menu;
482}
483
50631798
SA
484void DecodeTrace::draw_annotations(vector<pv::data::decode::Annotation> annotations,
485 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 486 QColor row_color, int row_title_width)
50631798
SA
487{
488 using namespace pv::data::decode;
489
20d90d22
SA
490 Annotation::Class block_class = 0;
491 bool block_class_uniform = true;
5c48ce32 492 qreal block_start = 0;
20d90d22
SA
493 int block_ann_count = 0;
494
495 const Annotation *prev_ann;
5c48ce32 496 qreal prev_end = INT_MIN;
20d90d22 497
5c48ce32 498 qreal a_end;
50631798
SA
499
500 double samples_per_pixel, pixels_offset;
501 tie(pixels_offset, samples_per_pixel) =
502 get_pixels_offset_samples_per_pixel();
503
bdc2a99b
SA
504 // Sort the annotations by start sample so that decoders
505 // can't confuse us by creating annotations out of order
506 stable_sort(annotations.begin(), annotations.end(),
507 [](const Annotation &a, const Annotation &b) {
508 return a.start_sample() < b.start_sample(); });
509
50631798
SA
510 // Gather all annotations that form a visual "block" and draw them as such
511 for (const Annotation &a : annotations) {
512
5c48ce32
SA
513 const qreal abs_a_start = a.start_sample() / samples_per_pixel;
514 const qreal abs_a_end = a.end_sample() / samples_per_pixel;
bdc2a99b 515
5c48ce32 516 const qreal a_start = abs_a_start - pixels_offset;
20d90d22
SA
517 a_end = abs_a_end - pixels_offset;
518
5c48ce32
SA
519 const qreal a_width = a_end - a_start;
520 const qreal delta = a_end - prev_end;
bdc2a99b
SA
521
522 bool a_is_separate = false;
523
524 // Annotation wider than the threshold for a useful label width?
752281db 525 if (a_width >= min_useful_label_width_) {
bdc2a99b 526 for (const QString &ann_text : a.annotations()) {
5c48ce32 527 const qreal w = p.boundingRect(QRectF(), 0, ann_text).width();
bdc2a99b
SA
528 // Annotation wide enough to fit a label? Don't put it in a block then
529 if (w <= a_width) {
530 a_is_separate = true;
531 break;
532 }
533 }
534 }
50631798 535
bdc2a99b
SA
536 // Were the previous and this annotation more than a pixel apart?
537 if ((abs(delta) > 1) || a_is_separate) {
538 // Block was broken, draw annotations that form the current block
20d90d22
SA
539 if (block_ann_count == 1)
540 draw_annotation(*prev_ann, p, h, pp, y, row_color,
aee9dcf3 541 row_title_width);
20d90d22
SA
542 else if (block_ann_count > 0)
543 draw_annotation_block(block_start, prev_end, block_class,
544 block_class_uniform, p, h, y, row_color);
50631798 545
20d90d22 546 block_ann_count = 0;
50631798
SA
547 }
548
bdc2a99b 549 if (a_is_separate) {
9ba13f5e 550 draw_annotation(a, p, h, pp, y, row_color, row_title_width);
bdc2a99b 551 // Next annotation must start a new block. delta will be > 1
20d90d22
SA
552 // because we set prev_end to INT_MIN but that's okay since
553 // block_ann_count will be 0 and nothing will be drawn
554 prev_end = INT_MIN;
5c48ce32 555 block_ann_count = 0;
bdc2a99b 556 } else {
20d90d22
SA
557 prev_end = a_end;
558 prev_ann = &a;
559
560 if (block_ann_count == 0) {
561 block_start = a_start;
562 block_class = a.ann_class();
563 block_class_uniform = true;
564 } else
565 if (a.ann_class() != block_class)
566 block_class_uniform = false;
567
568 block_ann_count++;
bdc2a99b 569 }
50631798
SA
570 }
571
20d90d22
SA
572 if (block_ann_count == 1)
573 draw_annotation(*prev_ann, p, h, pp, y, row_color, row_title_width);
574 else if (block_ann_count > 0)
575 draw_annotation_block(block_start, prev_end, block_class,
576 block_class_uniform, p, h, y, row_color);
50631798
SA
577}
578
287d607f 579void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a,
5b5fa4da 580 QPainter &p, int h, const ViewItemPaintParams &pp, int y,
9ba13f5e 581 QColor row_color, int row_title_width) const
06e810f2 582{
53e35b2d
JH
583 double samples_per_pixel, pixels_offset;
584 tie(pixels_offset, samples_per_pixel) =
585 get_pixels_offset_samples_per_pixel();
7f8517f6 586
06e810f2
JH
587 const double start = a.start_sample() / samples_per_pixel -
588 pixels_offset;
c063290a 589 const double end = a.end_sample() / samples_per_pixel - pixels_offset;
287d607f 590
f228f00e 591 QColor color = get_annotation_color(row_color, a.ann_class());
9ba13f5e
SA
592 p.setPen(color.darker());
593 p.setBrush(color);
06e810f2 594
3eb29afd 595 if (start > pp.right() + DrawPadding || end < pp.left() - DrawPadding)
06e810f2
JH
596 return;
597
598 if (a.start_sample() == a.end_sample())
f765c3db 599 draw_instant(a, p, h, start, y);
06e810f2 600 else
c063290a 601 draw_range(a, p, h, start, end, y, pp, row_title_width);
06e810f2
JH
602}
603
5c48ce32 604void DecodeTrace::draw_annotation_block(qreal start, qreal end,
20d90d22 605 Annotation::Class ann_class, bool use_ann_format, QPainter &p, int h,
9ba13f5e 606 int y, QColor row_color) const
50631798 607{
33707990
SA
608 const double top = y + .5 - h / 2;
609 const double bottom = y + .5 + h / 2;
33707990 610
3082ee93
JH
611 const QRectF rect(start, top, end - start, bottom - top);
612 const int r = h / 4;
613
614 p.setPen(QPen(Qt::NoPen));
615 p.setBrush(Qt::white);
616 p.drawRoundedRect(rect, r, r);
617
20d90d22
SA
618 // If all annotations in this block are of the same type, we can use the
619 // one format that all of these annotations have. Otherwise, we should use
620 // a neutral color (i.e. gray)
621 if (use_ann_format) {
622 const QColor color = get_annotation_color(row_color, ann_class);
623 p.setPen(color.darker());
624 p.setBrush(QBrush(color, Qt::Dense4Pattern));
625 } else {
626 p.setPen(Qt::gray);
627 p.setBrush(QBrush(Qt::gray, Qt::Dense4Pattern));
628 }
629
3082ee93 630 p.drawRoundedRect(rect, r, r);
50631798
SA
631}
632
06e810f2 633void DecodeTrace::draw_instant(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 634 int h, qreal x, int y) const
06e810f2
JH
635{
636 const QString text = a.annotations().empty() ?
637 QString() : a.annotations().back();
5c48ce32 638 const qreal w = min((qreal)p.boundingRect(QRectF(), 0, text).width(),
06e810f2
JH
639 0.0) + h;
640 const QRectF rect(x - w / 2, y - h / 2, w, h);
641
06e810f2
JH
642 p.drawRoundedRect(rect, h / 2, h / 2);
643
2a56e448 644 p.setPen(Qt::black);
06e810f2
JH
645 p.drawText(rect, Qt::AlignCenter | Qt::AlignVCenter, text);
646}
647
648void DecodeTrace::draw_range(const pv::data::decode::Annotation &a, QPainter &p,
5c48ce32 649 int h, qreal start, qreal end, int y, const ViewItemPaintParams &pp,
f765c3db 650 int row_title_width) const
06e810f2 651{
5c48ce32
SA
652 const qreal top = y + .5 - h / 2;
653 const qreal bottom = y + .5 + h / 2;
06e810f2
JH
654 const vector<QString> annotations = a.annotations();
655
06e810f2 656 // If the two ends are within 1 pixel, draw a vertical line
2ad82c2e 657 if (start + 1.0 > end) {
06e810f2
JH
658 p.drawLine(QPointF(start, top), QPointF(start, bottom));
659 return;
660 }
661
5c48ce32 662 const qreal cap_width = min((end - start) / 4, EndCapWidth);
06e810f2
JH
663
664 QPointF pts[] = {
665 QPointF(start, y + .5f),
666 QPointF(start + cap_width, top),
667 QPointF(end - cap_width, top),
668 QPointF(end, y + .5f),
669 QPointF(end - cap_width, bottom),
670 QPointF(start + cap_width, bottom)
671 };
672
673 p.drawConvexPolygon(pts, countof(pts));
674
675 if (annotations.empty())
676 return;
677
7352be72
SA
678 const int ann_start = start + cap_width;
679 const int ann_end = end - cap_width;
680
6f925ba9
UH
681 const int real_start = max(ann_start, pp.left() + row_title_width);
682 const int real_end = min(ann_end, pp.right());
7352be72
SA
683 const int real_width = real_end - real_start;
684
685 QRectF rect(real_start, y - h / 2, real_width, h);
0f290e9b
JH
686 if (rect.width() <= 4)
687 return;
688
2a56e448 689 p.setPen(Qt::black);
06e810f2
JH
690
691 // Try to find an annotation that will fit
692 QString best_annotation;
693 int best_width = 0;
694
d9aecf1f 695 for (const QString &a : annotations) {
06e810f2
JH
696 const int w = p.boundingRect(QRectF(), 0, a).width();
697 if (w <= rect.width() && w > best_width)
698 best_annotation = a, best_width = w;
699 }
700
701 if (best_annotation.isEmpty())
702 best_annotation = annotations.back();
703
704 // If not ellide the last in the list
705 p.drawText(rect, Qt::AlignCenter, p.fontMetrics().elidedText(
706 best_annotation, Qt::ElideRight, rect.width()));
707}
708
b9329558 709void DecodeTrace::draw_error(QPainter &p, const QString &message,
5b5fa4da 710 const ViewItemPaintParams &pp)
ad50ac1a 711{
be9e7b4b 712 const int y = get_visual_y();
ad50ac1a 713
1ae18301
SA
714 double samples_per_pixel, pixels_offset;
715 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
716
641574bc
SA
717 p.setPen(ErrorBgColor.darker());
718 p.setBrush(ErrorBgColor);
ad50ac1a 719
1ae18301
SA
720 const QRectF bounding_rect = QRectF(pp.left(), INT_MIN / 2 + y, pp.right(), INT_MAX);
721
722 const QRectF text_rect = p.boundingRect(bounding_rect, Qt::AlignCenter, message);
5c48ce32 723 const qreal r = text_rect.height() / 4;
ad50ac1a 724
1ae18301 725 p.drawRoundedRect(text_rect.adjusted(-r, -r, r, r), r, r, Qt::AbsoluteSize);
ad50ac1a 726
2a56e448 727 p.setPen(Qt::black);
ad50ac1a
JH
728 p.drawText(text_rect, message);
729}
730
ff83d980 731void DecodeTrace::draw_unresolved_period(QPainter &p, int h, int left, int right) const
5dfeb70f
JH
732{
733 using namespace pv::data;
734 using pv::data::decode::Decoder;
735
53e35b2d
JH
736 double samples_per_pixel, pixels_offset;
737
5ecf957f 738 const int64_t sample_count = decode_signal_->get_working_sample_count(current_segment_);
5dfeb70f
JH
739 if (sample_count == 0)
740 return;
741
b82908ab 742 const int64_t samples_decoded = decode_signal_->get_decoded_sample_count(current_segment_, true);
5dfeb70f
JH
743 if (sample_count == samples_decoded)
744 return;
745
be9e7b4b 746 const int y = get_visual_y();
7f8517f6 747
ff83d980 748 tie(pixels_offset, samples_per_pixel) = get_pixels_offset_samples_per_pixel();
7f8517f6 749
5dfeb70f
JH
750 const double start = max(samples_decoded /
751 samples_per_pixel - pixels_offset, left - 1.0);
752 const double end = min(sample_count / samples_per_pixel -
753 pixels_offset, right + 1.0);
e06cf18d 754 const QRectF no_decode_rect(start, y - (h / 2) - 0.5, end - start, h);
5dfeb70f
JH
755
756 p.setPen(QPen(Qt::NoPen));
757 p.setBrush(Qt::white);
758 p.drawRect(no_decode_rect);
759
641574bc
SA
760 p.setPen(NoDecodeColor);
761 p.setBrush(QBrush(NoDecodeColor, Qt::Dense6Pattern));
5dfeb70f
JH
762 p.drawRect(no_decode_rect);
763}
764
53e35b2d 765pair<double, double> DecodeTrace::get_pixels_offset_samples_per_pixel() const
7f8517f6 766{
8dbbc7f0 767 assert(owner_);
7f8517f6 768
8dbbc7f0 769 const View *view = owner_->view();
eae6e30a
JH
770 assert(view);
771
772 const double scale = view->scale();
7f8517f6
SA
773 assert(scale > 0);
774
53e35b2d 775 const double pixels_offset =
ff83d980 776 ((view->offset() - decode_signal_->start_time()) / scale).convert_to<double>();
7f8517f6 777
ff83d980 778 double samplerate = decode_signal_->samplerate();
7f8517f6
SA
779
780 // Show sample rate as 1Hz when it is unknown
781 if (samplerate == 0.0)
782 samplerate = 1.0;
783
53e35b2d 784 return make_pair(pixels_offset, samplerate * scale);
7f8517f6
SA
785}
786
67fb15bf 787pair<uint64_t, uint64_t> DecodeTrace::get_view_sample_range(
db1bf6bf 788 int x_start, int x_end) const
7f8517f6 789{
53e35b2d
JH
790 double samples_per_pixel, pixels_offset;
791 tie(pixels_offset, samples_per_pixel) =
792 get_pixels_offset_samples_per_pixel();
7f8517f6 793
db1bf6bf
JH
794 const uint64_t start = (uint64_t)max(
795 (x_start + pixels_offset) * samples_per_pixel, 0.0);
796 const uint64_t end = (uint64_t)max(
797 (x_end + pixels_offset) * samples_per_pixel, 0.0);
7f8517f6
SA
798
799 return make_pair(start, end);
800}
801
9ba13f5e
SA
802QColor DecodeTrace::get_row_color(int row_index) const
803{
804 // For each row color, use the base color hue and add an offset that's
805 // not a dividend of 360
806
807 QColor color;
808 const int h = (base_->color().toHsv().hue() + 20 * row_index) % 360;
809 const int s = DECODETRACE_COLOR_SATURATION;
810 const int v = DECODETRACE_COLOR_VALUE;
811 color.setHsl(h, s, v);
812
813 return color;
814}
815
816QColor DecodeTrace::get_annotation_color(QColor row_color, int annotation_index) const
817{
818 // For each row color, use the base color hue and add an offset that's
819 // not a dividend of 360 and not a multiple of the row offset
820
821 QColor color(row_color);
822 const int h = (color.toHsv().hue() + 55 * annotation_index) % 360;
823 const int s = DECODETRACE_COLOR_SATURATION;
824 const int v = DECODETRACE_COLOR_VALUE;
825 color.setHsl(h, s, v);
826
827 return color;
828}
829
84002113 830unsigned int DecodeTrace::get_row_y(const RowData* row) const
e2f90c50 831{
84002113 832 assert(row);
e2f90c50 833
84002113 834 unsigned int y = get_visual_y();
99029fda 835
84002113
SA
836 for (const RowData& r : rows_)
837 if (row != &r)
838 y += r.height;
839 else
840 break;
99029fda 841
84002113
SA
842 return y;
843}
99029fda 844
84002113
SA
845RowData* DecodeTrace::get_row_at_point(const QPoint &point)
846{
847 int y = get_visual_y();
848
849 for (RowData& r : rows_) {
850 if (!r.currently_visible)
851 continue;
852
853 if ((point.y() >= y) && (point.y() < (int)(y + r.height)))
854 return &r;
855
856 y += r.height;
857 }
e2f90c50 858
84002113 859 return nullptr;
e2f90c50
SA
860}
861
117cdea3 862const QString DecodeTrace::get_annotation_at_point(const QPoint &point)
e2f90c50
SA
863{
864 using namespace pv::data::decode;
865
117cdea3
JH
866 if (!enabled())
867 return QString();
e2f90c50 868
117cdea3 869 const pair<uint64_t, uint64_t> sample_range =
67fb15bf 870 get_view_sample_range(point.x(), point.x() + 1);
84002113
SA
871 const RowData* r = get_row_at_point(point);
872
873 if (!r)
117cdea3 874 return QString();
e2f90c50 875
be843692 876 vector<Annotation> annotations;
e2f90c50 877
84002113 878 decode_signal_->get_annotation_subset(annotations, r->decode_row,
72435789 879 current_segment_, sample_range.first, sample_range.second);
e2f90c50
SA
880
881 return (annotations.empty()) ?
882 QString() : annotations[0].annotations().front();
883}
884
873e8035 885void DecodeTrace::hover_point_changed(const QPoint &hp)
117cdea3 886{
0cbadf1c
SA
887 Trace::hover_point_changed(hp);
888
8dbbc7f0 889 assert(owner_);
eae6e30a 890
84002113 891 RowData* hover_row = get_row_at_point(hp);
eae6e30a 892
84002113
SA
893 // Row/class visibility button handling
894 for (RowData& r : rows_)
895 r.expand_marker_highlighted = false;
896
897 if (hover_row) {
898 int row_y = get_row_y(hover_row);
899 if ((hp.x() > 0) && (hp.x() < ArrowSize) &&
900 (hp.y() > (int)(row_y - ArrowSize)) && (hp.y() < (int)(row_y + ArrowSize)))
901 hover_row->expand_marker_highlighted = true;
53b652bd
SA
902 }
903
84002113
SA
904 // Tooltip handling
905 if (hp.x() > 0) {
906 QString ann = get_annotation_at_point(hp);
e2f90c50 907
84002113
SA
908 if (ann.isEmpty()) {
909 QToolTip::hideText();
910 return;
911 }
6e6881e2 912
84002113
SA
913 QFontMetrics m(QToolTip::font());
914 const QRect text_size = m.boundingRect(QRect(), 0, ann);
6e6881e2 915
84002113
SA
916 // This is OS-specific and unfortunately we can't query it, so
917 // use an approximation to at least try to minimize the error.
918 const int padding = 8;
e2f90c50 919
84002113
SA
920 // Make sure the tool tip doesn't overlap with the mouse cursor.
921 // If it did, the tool tip would constantly hide and re-appear.
922 // We also push it up by one row so that it appears above the
923 // decode trace, not below.
924 QPoint p = hp;
925 p.setX(hp.x() - (text_size.width() / 2) - padding);
6e6881e2 926
84002113
SA
927 p.setY(get_row_y(hover_row) - hover_row->height - default_row_height_ -
928 text_size.height() - padding);
6e6881e2 929
84002113
SA
930 const View *const view = owner_->view();
931 assert(view);
932 QToolTip::showText(view->viewport()->mapToGlobal(p), ann);
e2f90c50 933
84002113
SA
934 } else
935 QToolTip::hideText();
9555ca8b
SA
936}
937
613d097c
JH
938void DecodeTrace::create_decoder_form(int index,
939 shared_ptr<data::decode::Decoder> &dec, QWidget *parent,
940 QFormLayout *form)
7491a29f 941{
1cc1c8de 942 GlobalSettings settings;
7491a29f
JH
943
944 assert(dec);
945 const srd_decoder *const decoder = dec->decoder();
946 assert(decoder);
947
ff59fa2c
SA
948 const bool decoder_deletable = index > 0;
949
204bae45 950 pv::widgets::DecoderGroupBox *const group =
27e8df22 951 new pv::widgets::DecoderGroupBox(
580b4f25
UH
952 QString::fromUtf8(decoder->name),
953 tr("%1:\n%2").arg(QString::fromUtf8(decoder->longname),
954 QString::fromUtf8(decoder->desc)),
955 nullptr, decoder_deletable);
dd048a7e 956 group->set_decoder_visible(dec->shown());
613d097c 957
ff59fa2c
SA
958 if (decoder_deletable) {
959 delete_mapper_.setMapping(group, index);
960 connect(group, SIGNAL(delete_decoder()), &delete_mapper_, SLOT(map()));
961 }
613d097c 962
8dbbc7f0 963 show_hide_mapper_.setMapping(group, index);
dd048a7e 964 connect(group, SIGNAL(show_hide_decoder()),
8dbbc7f0 965 &show_hide_mapper_, SLOT(map()));
dd048a7e 966
204bae45
JH
967 QFormLayout *const decoder_form = new QFormLayout;
968 group->add_layout(decoder_form);
7491a29f 969
47747218 970 const vector<DecodeChannel> channels = decode_signal_->get_channels();
407c9ebe 971
9f97b357 972 // Add the channels
7a0d99e6 973 for (const DecodeChannel& ch : channels) {
9f97b357
SA
974 // Ignore channels not part of the decoder we create the form for
975 if (ch.decoder_ != dec)
976 continue;
407c9ebe 977
9f97b357
SA
978 QComboBox *const combo = create_channel_selector(parent, &ch);
979 QComboBox *const combo_init_state = create_channel_selector_init_state(parent, &ch);
407c9ebe 980
9f97b357
SA
981 channel_id_map_[combo] = ch.id;
982 init_state_map_[combo_init_state] = ch.id;
407c9ebe 983
7491a29f 984 connect(combo, SIGNAL(currentIndexChanged(int)),
6ac6242b 985 this, SLOT(on_channel_selected(int)));
9f97b357
SA
986 connect(combo_init_state, SIGNAL(currentIndexChanged(int)),
987 this, SLOT(on_init_state_changed(int)));
407c9ebe
UH
988
989 QHBoxLayout *const hlayout = new QHBoxLayout;
990 hlayout->addWidget(combo);
9f97b357 991 hlayout->addWidget(combo_init_state);
407c9ebe 992
1cc1c8de 993 if (!settings.value(GlobalSettings::Key_Dec_InitialStateConfigurable).toBool())
9f97b357 994 combo_init_state->hide();
7491a29f 995
9f97b357
SA
996 const QString required_flag = ch.is_optional ? QString() : QString("*");
997 decoder_form->addRow(tr("<b>%1</b> (%2) %3")
998 .arg(ch.name, ch.desc, required_flag), hlayout);
7491a29f
JH
999 }
1000
1001 // Add the options
3cc9ad7b 1002 shared_ptr<binding::Decoder> binding(
946b52e1 1003 new binding::Decoder(decode_signal_, dec));
204bae45 1004 binding->add_properties_to_form(decoder_form, true);
7491a29f 1005
8dbbc7f0 1006 bindings_.push_back(binding);
204bae45
JH
1007
1008 form->addRow(group);
8dbbc7f0 1009 decoder_forms_.push_back(group);
7491a29f
JH
1010}
1011
9f97b357 1012QComboBox* DecodeTrace::create_channel_selector(QWidget *parent, const DecodeChannel *ch)
4e5a4405 1013{
47e9e7bb 1014 const auto sigs(session_.signalbases());
78b0af3e 1015
9f97b357 1016 // Sort signals in natural order
47e9e7bb 1017 vector< shared_ptr<data::SignalBase> > sig_list(sigs.begin(), sigs.end());
6f925ba9 1018 sort(sig_list.begin(), sig_list.end(),
47e9e7bb
SA
1019 [](const shared_ptr<data::SignalBase> &a,
1020 const shared_ptr<data::SignalBase> &b) {
1021 return strnatcasecmp(a->name().toStdString(),
1022 b->name().toStdString()) < 0; });
4e5a4405 1023
4e5a4405
JH
1024 QComboBox *selector = new QComboBox(parent);
1025
4c60462b 1026 selector->addItem("-", qVariantFromValue((void*)nullptr));
4e5a4405 1027
9f97b357 1028 if (!ch->assigned_signal)
4e5a4405
JH
1029 selector->setCurrentIndex(0);
1030
47e9e7bb
SA
1031 for (const shared_ptr<data::SignalBase> &b : sig_list) {
1032 assert(b);
79c4a9c8 1033 if (b->logic_data() && b->enabled()) {
47e9e7bb
SA
1034 selector->addItem(b->name(),
1035 qVariantFromValue((void*)b.get()));
5da5d081 1036
9f97b357
SA
1037 if (ch->assigned_signal == b.get())
1038 selector->setCurrentIndex(selector->count() - 1);
4e5a4405
JH
1039 }
1040 }
1041
1042 return selector;
1043}
1044
9f97b357
SA
1045QComboBox* DecodeTrace::create_channel_selector_init_state(QWidget *parent,
1046 const DecodeChannel *ch)
407c9ebe
UH
1047{
1048 QComboBox *selector = new QComboBox(parent);
1049
1050 selector->addItem("0", qVariantFromValue((int)SRD_INITIAL_PIN_LOW));
1051 selector->addItem("1", qVariantFromValue((int)SRD_INITIAL_PIN_HIGH));
7df44935 1052 selector->addItem("X", qVariantFromValue((int)SRD_INITIAL_PIN_SAME_AS_SAMPLE0));
407c9ebe 1053
9f97b357 1054 selector->setCurrentIndex(ch->initial_pin_state);
407c9ebe
UH
1055
1056 selector->setToolTip("Initial (assumed) pin value before the first sample");
1057
1058 return selector;
1059}
1060
5a914348
SA
1061void DecodeTrace::export_annotations(vector<Annotation> *annotations) const
1062{
1063 using namespace pv::data::decode;
1064
1065 GlobalSettings settings;
1066 const QString dir = settings.value("MainWindow/SaveDirectory").toString();
1067
1068 const QString file_name = QFileDialog::getSaveFileName(
1069 owner_->view(), tr("Export annotations"), dir, tr("Text Files (*.txt);;All Files (*)"));
1070
1071 if (file_name.isEmpty())
1072 return;
1073
1074 QString format = settings.value(GlobalSettings::Key_Dec_ExportFormat).toString();
1075 const QString quote = format.contains("%q") ? "\"" : "";
1076 format = format.remove("%q");
1077
1078 QFile file(file_name);
1079 if (file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {
1080 QTextStream out_stream(&file);
1081
1082 for (Annotation &ann : *annotations) {
1083 const QString sample_range = QString("%1-%2") \
1084 .arg(QString::number(ann.start_sample()), QString::number(ann.end_sample()));
1085
1086 const QString class_name = quote + ann.row()->class_name() + quote;
1087
1088 QString all_ann_text;
1089 for (const QString &s : ann.annotations())
1090 all_ann_text = all_ann_text + quote + s + quote + ",";
1091 all_ann_text.chop(1);
1092
1093 const QString first_ann_text = quote + ann.annotations().front() + quote;
1094
1095 QString out_text = format;
1096 out_text = out_text.replace("%s", sample_range);
1097 out_text = out_text.replace("%d",
cbb2e4da 1098 quote + QString::fromUtf8(ann.row()->decoder()->name()) + quote);
5a914348
SA
1099 out_text = out_text.replace("%c", class_name);
1100 out_text = out_text.replace("%1", first_ann_text);
1101 out_text = out_text.replace("%a", all_ann_text);
1102 out_stream << out_text << '\n';
1103 }
1104
1105 if (out_stream.status() == QTextStream::Ok)
1106 return;
1107 }
1108
1109 QMessageBox msg(owner_->view());
970fca0d 1110 msg.setText(tr("Error") + "\n\n" + tr("File %1 could not be written to.").arg(file_name));
5a914348
SA
1111 msg.setStandardButtons(QMessageBox::Ok);
1112 msg.setIcon(QMessageBox::Warning);
1113 msg.exec();
1114}
1115
84002113
SA
1116void DecodeTrace::update_rows()
1117{
1118 lock_guard<mutex> lock(row_modification_mutex_);
1119
1120 QFontMetrics m(QApplication::font());
1121
1122 for (RowData& r : rows_)
1123 r.exists = false;
1124
1125 for (const Row& decode_row : decode_signal_->get_rows()) {
1126 // Find row in our list
1127 auto r_it = find_if(rows_.begin(), rows_.end(),
1128 [&](RowData& r){ return r.decode_row == decode_row; });
1129
1130 RowData* r = nullptr;
1131 if (r_it == rows_.end()) {
1132 // Row doesn't exist yet, create and append it
1133 RowData nr;
1134 nr.decode_row = decode_row;
1135 nr.height = default_row_height_;
1136 nr.currently_visible = false;
1137 nr.expand_marker_highlighted = false;
1138 nr.expanded = false;
1139
1140 rows_.push_back(nr);
1141 r = &rows_.back();
1142 } else
1143 r = &(*r_it);
1144
1145 r->exists = true;
1146
1147 const int w = m.boundingRect(r->decode_row.title()).width() + RowTitleMargin;
1148 r->title_width = w;
1149 }
1150
1151 // Remove any rows that no longer exist, obeying that iterators are invalidated
1152 bool any_exists;
1153 do {
1154 any_exists = false;
1155
1156 for (unsigned int i = 0; i < rows_.size(); i++)
1157 if (!rows_[i].exists) {
1158 rows_.erase(rows_.begin() + i);
1159 any_exists = true;
1160 break;
1161 }
1162 } while (any_exists);
1163}
1164
ab185f78
SA
1165void DecodeTrace::on_setting_changed(const QString &key, const QVariant &value)
1166{
945238ca
SA
1167 Trace::on_setting_changed(key, value);
1168
ab185f78 1169 if (key == GlobalSettings::Key_Dec_AlwaysShowAllRows) {
ab185f78
SA
1170 max_visible_rows_ = 0;
1171 always_show_all_rows_ = value.toBool();
1172 }
1173}
1174
ad908057 1175void DecodeTrace::on_new_annotations()
5b6ae103
SA
1176{
1177 if (!delayed_trace_updater_.isActive())
1178 delayed_trace_updater_.start();
1179}
1180
1181void DecodeTrace::on_delayed_trace_update()
9cef9567 1182{
8dbbc7f0 1183 if (owner_)
6e2c3c85 1184 owner_->row_item_appearance_changed(false, true);
9cef9567
JH
1185}
1186
eee3eab9
SA
1187void DecodeTrace::on_decode_reset()
1188{
eee3eab9 1189 max_visible_rows_ = 0;
84002113 1190 update_rows();
eee3eab9
SA
1191
1192 if (owner_)
1193 owner_->row_item_appearance_changed(false, true);
1194}
1195
1b56c646
SA
1196void DecodeTrace::on_decode_finished()
1197{
1198 if (owner_)
1199 owner_->row_item_appearance_changed(false, true);
1200}
1201
556259d2
SA
1202void DecodeTrace::on_pause_decode()
1203{
1204 if (decode_signal_->is_paused())
1205 decode_signal_->resume_decode();
1206 else
1207 decode_signal_->pause_decode();
1208}
1209
b9329558 1210void DecodeTrace::delete_pressed()
5ed1adf5
JH
1211{
1212 on_delete();
1213}
1214
b9329558 1215void DecodeTrace::on_delete()
c51482b3 1216{
ad908057 1217 session_.remove_decode_signal(decode_signal_);
c51482b3
JH
1218}
1219
6ac6242b 1220void DecodeTrace::on_channel_selected(int)
4e5a4405 1221{
9f97b357
SA
1222 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
1223
1224 // Determine signal that was selected
1225 const data::SignalBase *signal =
1226 (data::SignalBase*)cb->itemData(cb->currentIndex()).value<void*>();
1227
1228 // Determine decode channel ID this combo box is the channel selector for
1229 const uint16_t id = channel_id_map_.at(cb);
1230
1231 decode_signal_->assign_signal(id, signal);
1232}
1233
1234void DecodeTrace::on_channels_updated()
1235{
1236 if (owner_)
1237 owner_->row_item_appearance_changed(false, true);
4e5a4405
JH
1238}
1239
9f97b357 1240void DecodeTrace::on_init_state_changed(int)
407c9ebe 1241{
9f97b357
SA
1242 QComboBox *cb = qobject_cast<QComboBox*>(QObject::sender());
1243
1244 // Determine inital pin state that was selected
1245 int init_state = cb->itemData(cb->currentIndex()).value<int>();
1246
1247 // Determine decode channel ID this combo box is the channel selector for
1248 const uint16_t id = init_state_map_.at(cb);
1249
1250 decode_signal_->set_initial_pin_state(id, init_state);
407c9ebe
UH
1251}
1252
7491a29f
JH
1253void DecodeTrace::on_stack_decoder(srd_decoder *decoder)
1254{
ad908057 1255 decode_signal_->stack_decoder(decoder);
84002113 1256 update_rows();
37fd11b1
JH
1257
1258 create_popup_form();
7491a29f
JH
1259}
1260
613d097c
JH
1261void DecodeTrace::on_delete_decoder(int index)
1262{
ad908057 1263 decode_signal_->remove_decoder(index);
84002113 1264 update_rows();
613d097c 1265
84002113 1266 // Force re-calculation of the trace height
ded43869
SA
1267 max_visible_rows_ = 0;
1268 owner_->extents_changed(false, true);
1269
c063290a 1270 create_popup_form();
613d097c
JH
1271}
1272
dd048a7e
JH
1273void DecodeTrace::on_show_hide_decoder(int index)
1274{
ad908057 1275 const bool state = decode_signal_->toggle_decoder_visibility(index);
dd048a7e 1276
8dbbc7f0 1277 assert(index < (int)decoder_forms_.size());
ad908057 1278 decoder_forms_[index]->set_decoder_visible(state);
dd048a7e 1279
ded43869
SA
1280 if (!state) {
1281 // Force re-calculation of the trace height, see paint_mid()
1282 max_visible_rows_ = 0;
1283 owner_->extents_changed(false, true);
1284 }
1285
8dbbc7f0 1286 if (owner_)
6e2c3c85 1287 owner_->row_item_appearance_changed(false, true);
dd048a7e
JH
1288}
1289
c764c995
SA
1290void DecodeTrace::on_copy_annotation_to_clipboard()
1291{
1292 using namespace pv::data::decode;
1293
1294 if (!selected_row_)
1295 return;
1296
1297 vector<Annotation> *annotations = new vector<Annotation>();
1298
1299 decode_signal_->get_annotation_subset(*annotations, *selected_row_,
1300 current_segment_, selected_sample_range_.first, selected_sample_range_.first);
1301
1302 if (annotations->empty())
1303 return;
1304
628b45cc 1305 QClipboard *clipboard = QApplication::clipboard();
41aaa675
SA
1306 clipboard->setText(annotations->front().annotations().front(), QClipboard::Clipboard);
1307
1308 if (clipboard->supportsSelection())
1309 clipboard->setText(annotations->front().annotations().front(), QClipboard::Selection);
c764c995
SA
1310
1311 delete annotations;
1312}
1313
be843692
SA
1314void DecodeTrace::on_export_row()
1315{
99ba5f28 1316 selected_sample_range_ = make_pair(0, numeric_limits<uint64_t>::max());
be843692
SA
1317 on_export_row_from_here();
1318}
1319
5a914348
SA
1320void DecodeTrace::on_export_all_rows()
1321{
99ba5f28
SA
1322 selected_sample_range_ = make_pair(0, numeric_limits<uint64_t>::max());
1323 on_export_all_rows_from_here();
1324}
1325
1326void DecodeTrace::on_export_row_with_cursor()
1327{
1328 const View *view = owner_->view();
1329 assert(view);
1330
1331 if (!view->cursors()->enabled())
1332 return;
1333
1334 const double samplerate = session_.get_samplerate();
1335
1336 const pv::util::Timestamp& start_time = view->cursors()->first()->time();
1337 const pv::util::Timestamp& end_time = view->cursors()->second()->time();
1338
1339 const uint64_t start_sample = (uint64_t)max(
a20c1fcc 1340 0.0, start_time.convert_to<double>() * samplerate);
99ba5f28 1341 const uint64_t end_sample = (uint64_t)max(
a20c1fcc 1342 0.0, end_time.convert_to<double>() * samplerate);
99ba5f28
SA
1343
1344 // Are both cursors negative and thus were clamped to 0?
1345 if ((start_sample == 0) && (end_sample == 0))
1346 return;
1347
1348 selected_sample_range_ = make_pair(start_sample, end_sample);
1349 on_export_row_from_here();
1350}
1351
1352void DecodeTrace::on_export_all_rows_with_cursor()
1353{
1354 const View *view = owner_->view();
1355 assert(view);
1356
1357 if (!view->cursors()->enabled())
1358 return;
1359
1360 const double samplerate = session_.get_samplerate();
1361
1362 const pv::util::Timestamp& start_time = view->cursors()->first()->time();
1363 const pv::util::Timestamp& end_time = view->cursors()->second()->time();
1364
1365 const uint64_t start_sample = (uint64_t)max(
a20c1fcc 1366 0.0, start_time.convert_to<double>() * samplerate);
99ba5f28 1367 const uint64_t end_sample = (uint64_t)max(
a20c1fcc 1368 0.0, end_time.convert_to<double>() * samplerate);
99ba5f28
SA
1369
1370 // Are both cursors negative and thus were clamped to 0?
1371 if ((start_sample == 0) && (end_sample == 0))
1372 return;
1373
1374 selected_sample_range_ = make_pair(start_sample, end_sample);
5a914348
SA
1375 on_export_all_rows_from_here();
1376}
1377
be843692
SA
1378void DecodeTrace::on_export_row_from_here()
1379{
1380 using namespace pv::data::decode;
1381
1382 if (!selected_row_)
1383 return;
1384
5a914348 1385 vector<Annotation> *annotations = new vector<Annotation>();
be843692 1386
5a914348 1387 decode_signal_->get_annotation_subset(*annotations, *selected_row_,
99ba5f28 1388 current_segment_, selected_sample_range_.first, selected_sample_range_.second);
be843692 1389
5a914348 1390 if (annotations->empty())
be843692
SA
1391 return;
1392
5a914348
SA
1393 export_annotations(annotations);
1394 delete annotations;
1395}
1ed996b4 1396
5a914348
SA
1397void DecodeTrace::on_export_all_rows_from_here()
1398{
1399 using namespace pv::data::decode;
1ed996b4 1400
5a914348 1401 vector<Annotation> *annotations = new vector<Annotation>();
1ed996b4 1402
5a914348 1403 decode_signal_->get_annotation_subset(*annotations, current_segment_,
99ba5f28 1404 selected_sample_range_.first, selected_sample_range_.second);
be843692 1405
5a914348
SA
1406 if (!annotations->empty())
1407 export_annotations(annotations);
be843692 1408
5a914348 1409 delete annotations;
be843692
SA
1410}
1411
1573bf16 1412} // namespace trace
f4e57597 1413} // namespace views
55d3603d 1414} // namespace pv