]> sigrok.org Git - pulseview.git/blame - pv/view/view.cpp
TimeMarker: Replaced time_changed signal with View::time_item_apparance_changed
[pulseview.git] / pv / view / view.cpp
CommitLineData
adb4b10c 1/*
b3f22de0 2 * This file is part of the PulseView project.
adb4b10c
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
269528f5 21#ifdef ENABLE_DECODE
4e5a4405 22#include <libsigrokdecode/libsigrokdecode.h>
269528f5 23#endif
4e5a4405 24
361c560e
JH
25#include <extdef.h>
26
c3a740dd
JH
27#include <cassert>
28#include <climits>
29#include <cmath>
30#include <mutex>
7ff0145f 31#include <unordered_set>
adb4b10c 32
361c560e 33#include <QApplication>
adb4b10c 34#include <QEvent>
361c560e 35#include <QFontMetrics>
cbd80f64 36#include <QMouseEvent>
adb4b10c
JH
37#include <QScrollBar>
38
448a72cf
JH
39#include <libsigrok/libsigrok.hpp>
40
2acdb232
JH
41#include "cursorheader.hpp"
42#include "decodetrace.hpp"
43#include "header.hpp"
44#include "logicsignal.hpp"
45#include "ruler.hpp"
46#include "signal.hpp"
47#include "tracegroup.hpp"
48#include "view.hpp"
49#include "viewport.hpp"
adb4b10c 50
f65cd27b 51#include "pv/session.hpp"
2acdb232 52#include "pv/data/logic.hpp"
f3d66e52 53#include "pv/data/logicsegment.hpp"
361c560e 54#include "pv/util.hpp"
adb4b10c 55
aca64cac
JH
56using boost::shared_lock;
57using boost::shared_mutex;
361c560e 58
1bc6525b 59using pv::data::SignalData;
f3d66e52 60using pv::data::Segment;
361c560e
JH
61using pv::util::format_time;
62
a2321722 63using std::back_inserter;
819f4c25 64using std::deque;
448a72cf 65using std::dynamic_pointer_cast;
819f4c25 66using std::list;
c3a740dd 67using std::lock_guard;
819f4c25 68using std::max;
1bc6525b 69using std::make_pair;
819f4c25 70using std::min;
1bc6525b 71using std::pair;
819f4c25 72using std::set;
f9abf97e 73using std::shared_ptr;
448a72cf 74using std::unordered_map;
7ff0145f 75using std::unordered_set;
819f4c25 76using std::vector;
f9abf97e 77using std::weak_ptr;
adb4b10c 78
cdf7bea7
JH
79namespace pv {
80namespace view {
adb4b10c 81
cdf7bea7
JH
82const double View::MaxScale = 1e9;
83const double View::MinScale = 1e-15;
adb4b10c 84
f25770e2
JH
85const int View::MaxScrollValue = INT_MAX / 2;
86
361c560e
JH
87const int View::ScaleUnits[3] = {1, 2, 5};
88
f76af637
JH
89const QColor View::CursorAreaColour(220, 231, 243);
90
2e04f9bd
JH
91const QSizeF View::LabelPadding(4, 0);
92
2b81ae46 93View::View(Session &session, QWidget *parent) :
adb4b10c 94 QAbstractScrollArea(parent),
8dbbc7f0
JH
95 session_(session),
96 viewport_(new Viewport(*this)),
97 ruler_(new Ruler(*this)),
98 cursorheader_(new CursorHeader(*this)),
99 header_(new Header(*this)),
100 scale_(1e-6),
101 offset_(0),
102 v_offset_(0),
103 updating_scroll_(false),
361c560e
JH
104 tick_period_(0.0),
105 tick_prefix_(0),
8dbbc7f0 106 show_cursors_(false),
5c5ce757 107 cursors_(new CursorPair(*this)),
8dbbc7f0 108 hover_point_(-1, -1)
adb4b10c 109{
b16907d3
JH
110 connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
111 this, SLOT(h_scroll_value_changed(int)));
adb4b10c
JH
112 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
113 this, SLOT(v_scroll_value_changed(int)));
69dd2b03 114
8dbbc7f0 115 connect(&session_, SIGNAL(signals_changed()),
69dd2b03 116 this, SLOT(signals_changed()));
8dbbc7f0 117 connect(&session_, SIGNAL(capture_state_changed(int)),
50f97924 118 this, SLOT(data_updated()));
8dbbc7f0 119 connect(&session_, SIGNAL(data_received()),
1f374035 120 this, SLOT(data_updated()));
8dbbc7f0 121 connect(&session_, SIGNAL(frame_ended()),
adb4b10c 122 this, SLOT(data_updated()));
1d8dca91 123
8dbbc7f0 124 connect(header_, SIGNAL(signals_moved()),
07204819 125 this, SLOT(on_signals_moved()));
54401bbb 126
8dbbc7f0
JH
127 connect(header_, SIGNAL(selection_changed()),
128 cursorheader_, SLOT(clear_selection()));
129 connect(cursorheader_, SIGNAL(selection_changed()),
130 header_, SLOT(clear_selection()));
17348f85 131
8dbbc7f0 132 connect(header_, SIGNAL(selection_changed()),
8b454527 133 this, SIGNAL(selection_changed()));
8dbbc7f0 134 connect(cursorheader_, SIGNAL(selection_changed()),
8b454527
JH
135 this, SIGNAL(selection_changed()));
136
33c62f44
JH
137 connect(this, SIGNAL(hover_point_changed()),
138 this, SLOT(on_hover_point_changed()));
139
8dbbc7f0 140 connect(&lazy_event_handler_, SIGNAL(timeout()),
32218d3e 141 this, SLOT(process_sticky_events()));
8dbbc7f0 142 lazy_event_handler_.setSingleShot(true);
32218d3e 143
8dbbc7f0 144 setViewport(viewport_);
cbd80f64 145
8dbbc7f0
JH
146 viewport_->installEventFilter(this);
147 ruler_->installEventFilter(this);
148 cursorheader_->installEventFilter(this);
149 header_->installEventFilter(this);
d873f4d6 150
9f46d905
JH
151 // Trigger the initial event manually. The default device has signals
152 // which were created before this object came into being
d873f4d6 153 signals_changed();
84a0d458 154
512bfc56 155 // make sure the transparent widgets are on the top
8dbbc7f0
JH
156 cursorheader_->raise();
157 header_->raise();
361c560e
JH
158
159 // Update the zoom state
160 calculate_tick_spacing();
adb4b10c
JH
161}
162
2b81ae46 163Session& View::session()
1d19ef83 164{
8dbbc7f0 165 return session_;
1d19ef83
JH
166}
167
2b81ae46 168const Session& View::session() const
38eeddea 169{
8dbbc7f0 170 return session_;
38eeddea
JH
171}
172
eae6e30a
JH
173View* View::view()
174{
175 return this;
176}
177
178const View* View::view() const
179{
180 return this;
181}
182
2ae445ba
SA
183Viewport* View::viewport()
184{
8dbbc7f0 185 return viewport_;
2ae445ba
SA
186}
187
188const Viewport* View::viewport() const
189{
8dbbc7f0 190 return viewport_;
2ae445ba
SA
191}
192
2496bf45
JH
193vector< shared_ptr<TimeItem> > View::time_items() const
194{
195 vector< shared_ptr<TimeItem> > items;
5a3e53f6 196 items.push_back(cursors_);
5c5ce757
JH
197 items.push_back(cursors_->first());
198 items.push_back(cursors_->second());
2496bf45
JH
199 return items;
200}
201
cdf7bea7 202double View::scale() const
adb4b10c 203{
8dbbc7f0 204 return scale_;
adb4b10c
JH
205}
206
cdf7bea7 207double View::offset() const
adb4b10c 208{
8dbbc7f0 209 return offset_;
adb4b10c
JH
210}
211
7ff0145f 212int View::owner_visual_v_offset() const
adb4b10c 213{
8dbbc7f0 214 return -v_offset_;
adb4b10c
JH
215}
216
3e769a37
JH
217unsigned int View::depth() const
218{
219 return 0;
220}
221
361c560e
JH
222unsigned int View::tick_prefix() const
223{
224 return tick_prefix_;
225}
226
227double View::tick_period() const
228{
229 return tick_period_;
230}
231
cdf7bea7 232void View::zoom(double steps)
adb4b10c 233{
8dbbc7f0 234 zoom(steps, viewport_->width() / 2);
adb4b10c
JH
235}
236
17c0f398
JH
237void View::zoom(double steps, int offset)
238{
8dbbc7f0 239 set_zoom(scale_ * pow(3.0/2.0, -steps), offset);
17c0f398
JH
240}
241
ca46b534
JH
242void View::zoom_fit()
243{
1bc6525b
JH
244 const pair<double, double> extents = get_time_extents();
245 const double delta = extents.second - extents.first;
246 if (delta < 1e-12)
ca46b534
JH
247 return;
248
8dbbc7f0
JH
249 assert(viewport_);
250 const int w = viewport_->width();
ca46b534
JH
251 if (w <= 0)
252 return;
253
78311127
JH
254 const double scale = max(min(delta / w, MaxScale), MinScale);
255 set_scale_offset(scale, extents.first);
ca46b534
JH
256}
257
d1e7d82c
JH
258void View::zoom_one_to_one()
259{
260 using pv::data::SignalData;
261
d1e7d82c 262 // Make a set of all the visible data objects
0fc664a9 263 set< shared_ptr<SignalData> > visible_data = get_visible_data();
d1e7d82c
JH
264 if (visible_data.empty())
265 return;
266
267 double samplerate = 0.0;
d9aecf1f 268 for (const shared_ptr<SignalData> d : visible_data) {
d1e7d82c 269 assert(d);
f3d66e52
JH
270 const vector< shared_ptr<Segment> > segments =
271 d->segments();
272 for (const shared_ptr<Segment> &s : segments)
ff008de6 273 samplerate = max(samplerate, s->samplerate());
d1e7d82c
JH
274 }
275
276 if (samplerate == 0.0)
277 return;
278
8dbbc7f0
JH
279 assert(viewport_);
280 const int w = viewport_->width();
d1e7d82c
JH
281 if (w <= 0)
282 return;
283
284 set_zoom(1.0 / samplerate, w / 2);
285}
286
cdf7bea7 287void View::set_scale_offset(double scale, double offset)
adb4b10c 288{
8dbbc7f0
JH
289 scale_ = scale;
290 offset_ = offset;
ccdd3ef5 291
361c560e
JH
292 calculate_tick_spacing();
293
adb4b10c 294 update_scroll();
8dbbc7f0
JH
295 ruler_->update();
296 cursorheader_->update();
297 viewport_->update();
e0fc5810 298 scale_offset_changed();
adb4b10c
JH
299}
300
1bc6525b
JH
301set< shared_ptr<SignalData> > View::get_visible_data() const
302{
aca64cac 303 shared_lock<shared_mutex> lock(session().signals_mutex());
c3a740dd 304 const vector< shared_ptr<Signal> > &sigs(session().signals());
1bc6525b
JH
305
306 // Make a set of all the visible data objects
307 set< shared_ptr<SignalData> > visible_data;
d9aecf1f 308 for (const shared_ptr<Signal> sig : sigs)
1bc6525b
JH
309 if (sig->enabled())
310 visible_data.insert(sig->data());
311
312 return visible_data;
313}
314
315pair<double, double> View::get_time_extents() const
316{
1bc6525b 317 double left_time = DBL_MAX, right_time = DBL_MIN;
7f4038d6 318 const set< shared_ptr<SignalData> > visible_data = get_visible_data();
d9aecf1f 319 for (const shared_ptr<SignalData> d : visible_data)
1bc6525b 320 {
f3d66e52
JH
321 const vector< shared_ptr<Segment> > segments =
322 d->segments();
323 for (const shared_ptr<Segment> &s : segments) {
ff008de6
JH
324 double samplerate = s->samplerate();
325 samplerate = (samplerate <= 0.0) ? 1.0 : samplerate;
326
7f4038d6
JH
327 const double start_time = s->start_time();
328 left_time = min(left_time, start_time);
329 right_time = max(right_time, start_time +
330 d->get_max_sample_count() / samplerate);
331 }
1bc6525b
JH
332 }
333
7f4038d6
JH
334 if (left_time == DBL_MAX && right_time == DBL_MIN)
335 return make_pair(0.0, 0.0);
336
1bc6525b
JH
337 assert(left_time < right_time);
338 return make_pair(left_time, right_time);
339}
340
f76af637
JH
341bool View::cursors_shown() const
342{
8dbbc7f0 343 return show_cursors_;
f76af637
JH
344}
345
346void View::show_cursors(bool show)
347{
8dbbc7f0
JH
348 show_cursors_ = show;
349 cursorheader_->update();
350 viewport_->update();
f76af637
JH
351}
352
b4d91e56
JH
353void View::centre_cursors()
354{
8dbbc7f0 355 const double time_width = scale_ * viewport_->width();
5c5ce757
JH
356 cursors_->first()->set_time(offset_ + time_width * 0.4);
357 cursors_->second()->set_time(offset_ + time_width * 0.6);
8dbbc7f0
JH
358 cursorheader_->update();
359 viewport_->update();
b4d91e56
JH
360}
361
5c5ce757 362std::shared_ptr<CursorPair> View::cursors() const
58864c5c 363{
8dbbc7f0 364 return cursors_;
58864c5c
JH
365}
366
cbd80f64
JH
367const QPoint& View::hover_point() const
368{
8dbbc7f0 369 return hover_point_;
cbd80f64
JH
370}
371
9cef9567
JH
372void View::update_viewport()
373{
8dbbc7f0
JH
374 assert(viewport_);
375 viewport_->update();
376 header_->update();
7ff0145f
JH
377}
378
379void View::restack_all_row_items()
380{
381 // Make a set of owners
382 unordered_set< RowItemOwner* > owners;
383 for (const auto &r : *this)
384 owners.insert(r->owner());
385
386 // Make a list that is sorted from deepest first
387 vector< RowItemOwner* > sorted_owners(owners.begin(), owners.end());
388 sort(sorted_owners.begin(), sorted_owners.end(),
389 [](const RowItemOwner* a, const RowItemOwner *b) {
390 return a->depth() > b->depth(); });
391
392 // Restack the items recursively
393 for (auto &o : sorted_owners)
394 o->restack_items();
395
396 // Animate the items to their destination
397 for (const auto &r : *this)
398 r->animate_to_layout_v_offset();
9cef9567
JH
399}
400
f25770e2
JH
401void View::get_scroll_layout(double &length, double &offset) const
402{
1bc6525b 403 const pair<double, double> extents = get_time_extents();
8dbbc7f0
JH
404 length = (extents.second - extents.first) / scale_;
405 offset = offset_ / scale_;
f25770e2
JH
406}
407
d1e7d82c
JH
408void View::set_zoom(double scale, int offset)
409{
8dbbc7f0 410 const double cursor_offset = offset_ + scale_ * offset;
d1e7d82c
JH
411 const double new_scale = max(min(scale, MaxScale), MinScale);
412 const double new_offset = cursor_offset - new_scale * offset;
413 set_scale_offset(new_scale, new_offset);
414}
415
361c560e
JH
416void View::calculate_tick_spacing()
417{
418 const double SpacingIncrement = 32.0f;
419 const double MinValueSpacing = 32.0f;
420
421 double min_width = SpacingIncrement, typical_width;
422
423 QFontMetrics m(QApplication::font());
424
425 do {
426 const double min_period = scale_ * min_width;
427
428 const int order = (int)floorf(log10f(min_period));
429 const double order_decimal = pow(10.0, order);
430
431 unsigned int unit = 0;
432
433 do {
434 tick_period_ = order_decimal * ScaleUnits[unit++];
435 } while (tick_period_ < min_period &&
436 unit < countof(ScaleUnits));
437
438 tick_prefix_ = (order - pv::util::FirstSIPrefixPower) / 3;
439
440 typical_width = m.boundingRect(0, 0, INT_MAX, INT_MAX,
441 Qt::AlignLeft | Qt::AlignTop,
442 format_time(offset_, tick_prefix_)).width() +
443 MinValueSpacing;
444
445 min_width += SpacingIncrement;
446
447 } while(typical_width > tick_period_ / scale_);
448}
449
cdf7bea7 450void View::update_scroll()
adb4b10c 451{
8dbbc7f0 452 assert(viewport_);
adb4b10c 453
8dbbc7f0 454 const QSize areaSize = viewport_->size();
adb4b10c
JH
455
456 // Set the horizontal scroll bar
457 double length = 0, offset = 0;
f25770e2
JH
458 get_scroll_layout(length, offset);
459 length = max(length - areaSize.width(), 0.0);
adb4b10c 460
d7aae647
SA
461 int major_tick_distance = tick_period_ / scale_;
462
b4ef7f2a 463 horizontalScrollBar()->setPageStep(areaSize.width() / 2);
d7aae647 464 horizontalScrollBar()->setSingleStep(major_tick_distance);
f25770e2 465
8dbbc7f0 466 updating_scroll_ = true;
528bd8a1 467
333d5bbc 468 if (length < MaxScrollValue) {
f25770e2
JH
469 horizontalScrollBar()->setRange(0, length);
470 horizontalScrollBar()->setSliderPosition(offset);
471 } else {
472 horizontalScrollBar()->setRange(0, MaxScrollValue);
473 horizontalScrollBar()->setSliderPosition(
8dbbc7f0 474 offset_ * MaxScrollValue / (scale_ * length));
f25770e2 475 }
adb4b10c 476
8dbbc7f0 477 updating_scroll_ = false;
528bd8a1 478
adb4b10c
JH
479 // Set the vertical scrollbar
480 verticalScrollBar()->setPageStep(areaSize.height());
65c34596 481 verticalScrollBar()->setSingleStep(areaSize.height() / 8);
a5d93c27
JH
482
483 const pair<int, int> extents = v_extents();
f1d9ac67
SA
484 verticalScrollBar()->setRange(extents.first - (areaSize.height() / 2),
485 extents.second - (areaSize.height() / 2));
adb4b10c
JH
486}
487
d7c0ca4a
JH
488void View::update_layout()
489{
512bfc56 490 setViewportMargins(
8dbbc7f0
JH
491 header_->sizeHint().width() - pv::view::Header::BaselineOffset,
492 ruler_->sizeHint().height(), 0, 0);
493 ruler_->setGeometry(viewport_->x(), 0,
494 viewport_->width(), viewport_->y());
495 cursorheader_->setGeometry(
496 viewport_->x(),
497 ruler_->sizeHint().height() - cursorheader_->sizeHint().height() / 2,
498 viewport_->width(), cursorheader_->sizeHint().height());
499 header_->setGeometry(0, viewport_->y(),
500 header_->sizeHint().width(), viewport_->height());
d7c0ca4a
JH
501 update_scroll();
502}
503
b3f44329 504void View::paint_label(QPainter &p, const QRect &rect, bool hover)
eae6e30a
JH
505{
506 (void)p;
b3f44329 507 (void)rect;
eae6e30a
JH
508 (void)hover;
509}
510
b3f44329 511QRectF View::label_rect(const QRectF &rect)
eae6e30a 512{
b3f44329 513 (void)rect;
eae6e30a
JH
514 return QRectF();
515}
516
448a72cf
JH
517bool View::add_channels_to_owner(
518 const vector< shared_ptr<sigrok::Channel> > &channels,
519 RowItemOwner *owner, int &offset,
520 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
521 &signal_map,
522 std::function<bool (shared_ptr<RowItem>)> filter_func)
523{
524 bool any_added = false;
525
526 assert(owner);
527
528 for (const auto &channel : channels)
529 {
530 const auto iter = signal_map.find(channel);
531 if (iter == signal_map.end() ||
532 (filter_func && !filter_func((*iter).second)))
533 continue;
534
535 shared_ptr<RowItem> row_item = (*iter).second;
536 owner->add_child_item(row_item);
537 apply_offset(row_item, offset);
538 signal_map.erase(iter);
539
540 any_added = true;
541 }
542
543 return any_added;
544}
545
546void View::apply_offset(shared_ptr<RowItem> row_item, int &offset) {
547 assert(row_item);
548 const pair<int, int> extents = row_item->v_extents();
549 if (row_item->enabled())
550 offset += -extents.first;
551 row_item->force_to_v_offset(offset);
552 if (row_item->enabled())
553 offset += extents.second;
554}
555
cbd80f64
JH
556bool View::eventFilter(QObject *object, QEvent *event)
557{
558 const QEvent::Type type = event->type();
333d5bbc 559 if (type == QEvent::MouseMove) {
cbd80f64
JH
560
561 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
8dbbc7f0
JH
562 if (object == viewport_)
563 hover_point_ = mouse_event->pos();
564 else if (object == ruler_ || object == cursorheader_)
565 hover_point_ = QPoint(mouse_event->x(), 0);
566 else if (object == header_)
567 hover_point_ = QPoint(0, mouse_event->y());
cbd80f64 568 else
8dbbc7f0 569 hover_point_ = QPoint(-1, -1);
cbd80f64
JH
570
571 hover_point_changed();
572
333d5bbc 573 } else if (type == QEvent::Leave) {
8dbbc7f0 574 hover_point_ = QPoint(-1, -1);
cbd80f64
JH
575 hover_point_changed();
576 }
577
578 return QObject::eventFilter(object, event);
579}
580
cdf7bea7 581bool View::viewportEvent(QEvent *e)
adb4b10c
JH
582{
583 switch(e->type()) {
584 case QEvent::Paint:
585 case QEvent::MouseButtonPress:
586 case QEvent::MouseButtonRelease:
587 case QEvent::MouseButtonDblClick:
588 case QEvent::MouseMove:
589 case QEvent::Wheel:
4b4f1c0d
MC
590 case QEvent::TouchBegin:
591 case QEvent::TouchUpdate:
592 case QEvent::TouchEnd:
adb4b10c
JH
593 return false;
594
595 default:
596 return QAbstractScrollArea::viewportEvent(e);
597 }
598}
599
e314eca4 600void View::resizeEvent(QResizeEvent*)
adb4b10c 601{
d7c0ca4a 602 update_layout();
adb4b10c
JH
603}
604
6e2c3c85 605void View::row_item_appearance_changed(bool label, bool content)
32218d3e
JH
606{
607 if (label)
8dbbc7f0 608 header_->update();
32218d3e 609 if (content)
8dbbc7f0 610 viewport_->update();
32218d3e
JH
611}
612
98cfe4e8
JH
613void View::time_item_appearance_changed(bool label, bool content)
614{
615 if (label)
616 cursorheader_->update();
617 if (content)
618 viewport_->update();
619}
620
32218d3e
JH
621void View::extents_changed(bool horz, bool vert)
622{
8dbbc7f0 623 sticky_events_ |=
76fea660
JH
624 (horz ? RowItemHExtentsChanged : 0) |
625 (vert ? RowItemVExtentsChanged : 0);
8dbbc7f0 626 lazy_event_handler_.start();
32218d3e
JH
627}
628
b16907d3 629void View::h_scroll_value_changed(int value)
adb4b10c 630{
8dbbc7f0 631 if (updating_scroll_)
528bd8a1
JH
632 return;
633
f25770e2 634 const int range = horizontalScrollBar()->maximum();
333d5bbc 635 if (range < MaxScrollValue)
8dbbc7f0 636 offset_ = scale_ * value;
f25770e2
JH
637 else {
638 double length = 0, offset;
639 get_scroll_layout(length, offset);
8dbbc7f0 640 offset_ = scale_ * length * value / MaxScrollValue;
f25770e2
JH
641 }
642
8dbbc7f0
JH
643 ruler_->update();
644 cursorheader_->update();
645 viewport_->update();
adb4b10c
JH
646}
647
cdf7bea7 648void View::v_scroll_value_changed(int value)
adb4b10c 649{
8dbbc7f0
JH
650 v_offset_ = value;
651 header_->update();
652 viewport_->update();
adb4b10c
JH
653}
654
69dd2b03
JH
655void View::signals_changed()
656{
448a72cf
JH
657 int offset = 0;
658
68b21a71
JH
659 // Populate the traces
660 clear_child_items();
661
8dbbc7f0 662 shared_ptr<sigrok::Device> device = session_.device();
448a72cf
JH
663 assert(device);
664
665 // Collect a set of signals
666 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
667 signal_map;
668
8dbbc7f0
JH
669 shared_lock<shared_mutex> lock(session_.signals_mutex());
670 const vector< shared_ptr<Signal> > &sigs(session_.signals());
448a72cf
JH
671
672 for (const shared_ptr<Signal> &sig : sigs)
673 signal_map[sig->channel()] = sig;
674
675 // Populate channel groups
676 for (auto entry : device->channel_groups())
677 {
678 const shared_ptr<sigrok::ChannelGroup> &group = entry.second;
679
680 if (group->channels().size() <= 1)
681 continue;
682
683 shared_ptr<TraceGroup> trace_group(new TraceGroup());
684 int child_offset = 0;
685 if (add_channels_to_owner(group->channels(),
686 trace_group.get(), child_offset, signal_map))
687 {
688 add_child_item(trace_group);
689 apply_offset(trace_group, offset);
690 }
691 }
692
693 // Add the remaining logic channels
694 shared_ptr<TraceGroup> logic_trace_group(new TraceGroup());
695 int child_offset = 0;
696
697 if (add_channels_to_owner(device->channels(),
698 logic_trace_group.get(), child_offset, signal_map,
699 [](shared_ptr<RowItem> r) -> bool {
700 return dynamic_pointer_cast<LogicSignal>(r) != nullptr;
701 }))
68b21a71 702
448a72cf
JH
703 {
704 add_child_item(logic_trace_group);
705 apply_offset(logic_trace_group, offset);
706 }
707
708 // Add the remaining channels
709 add_channels_to_owner(device->channels(), this, offset, signal_map);
710 assert(signal_map.empty());
711
712 // Add decode signals
68b21a71
JH
713#ifdef ENABLE_DECODE
714 const vector< shared_ptr<DecodeTrace> > decode_sigs(
715 session().get_decode_signals());
448a72cf 716 for (auto s : decode_sigs) {
68b21a71 717 add_child_item(s);
448a72cf 718 apply_offset(s, offset);
ef8311a4 719 }
448a72cf 720#endif
ef8311a4 721
a6c1726e 722 update_layout();
69dd2b03
JH
723}
724
cdf7bea7 725void View::data_updated()
adb4b10c 726{
adb4b10c
JH
727 // Update the scroll bars
728 update_scroll();
729
730 // Repaint the view
8dbbc7f0 731 viewport_->update();
adb4b10c 732}
cdf7bea7 733
07204819 734void View::on_signals_moved()
54401bbb 735{
07204819
JH
736 update_scroll();
737 signals_moved();
54401bbb
JH
738}
739
32218d3e 740void View::process_sticky_events()
d7c0ca4a 741{
76fea660 742 if (sticky_events_ & RowItemHExtentsChanged)
32218d3e 743 update_layout();
76fea660 744 if (sticky_events_ & RowItemVExtentsChanged)
7ff0145f 745 restack_all_row_items();
32218d3e
JH
746
747 // Clear the sticky events
8dbbc7f0 748 sticky_events_ = 0;
d7c0ca4a
JH
749}
750
33c62f44
JH
751void View::on_hover_point_changed()
752{
aa59d5c2 753 for (shared_ptr<RowItem> r : *this)
eae6e30a 754 r->hover_point_changed();
33c62f44
JH
755}
756
cdf7bea7
JH
757} // namespace view
758} // namespace pv