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