]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/view.cpp
TraceTreeItem: Separated from RowItem
[pulseview.git] / pv / view / view.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifdef ENABLE_DECODE
22#include <libsigrokdecode/libsigrokdecode.h>
23#endif
24
25#include <extdef.h>
26
27#include <algorithm>
28#include <cassert>
29#include <climits>
30#include <cmath>
31#include <iterator>
32#include <mutex>
33#include <unordered_set>
34
35#include <QApplication>
36#include <QEvent>
37#include <QFontMetrics>
38#include <QMouseEvent>
39#include <QScrollBar>
40
41#include <libsigrokcxx/libsigrokcxx.hpp>
42
43#include "decodetrace.hpp"
44#include "header.hpp"
45#include "logicsignal.hpp"
46#include "ruler.hpp"
47#include "signal.hpp"
48#include "tracegroup.hpp"
49#include "view.hpp"
50#include "viewport.hpp"
51
52#include "pv/session.hpp"
53#include "pv/devices/device.hpp"
54#include "pv/data/logic.hpp"
55#include "pv/data/logicsegment.hpp"
56#include "pv/util.hpp"
57
58using boost::shared_lock;
59using boost::shared_mutex;
60
61using pv::data::SignalData;
62using pv::data::Segment;
63using pv::util::TimeUnit;
64using pv::util::Timestamp;
65
66using std::deque;
67using std::dynamic_pointer_cast;
68using std::inserter;
69using std::list;
70using std::lock_guard;
71using std::max;
72using std::make_pair;
73using std::min;
74using std::pair;
75using std::set;
76using std::set_difference;
77using std::shared_ptr;
78using std::unordered_map;
79using std::unordered_set;
80using std::vector;
81using std::weak_ptr;
82
83namespace pv {
84namespace view {
85
86const Timestamp View::MaxScale("1e9");
87const Timestamp View::MinScale("1e-12");
88
89const int View::MaxScrollValue = INT_MAX / 2;
90const int View::MaxViewAutoUpdateRate = 25; // No more than 25 Hz with sticky scrolling
91
92const int View::ScaleUnits[3] = {1, 2, 5};
93
94View::View(Session &session, QWidget *parent) :
95 QAbstractScrollArea(parent),
96 session_(session),
97 viewport_(new Viewport(*this)),
98 ruler_(new Ruler(*this)),
99 header_(new Header(*this)),
100 scale_(1e-3),
101 offset_(0),
102 updating_scroll_(false),
103 sticky_scrolling_(false), // Default setting is set in MainWindow::setup_ui()
104 always_zoom_to_fit_(false),
105 tick_period_(0),
106 tick_prefix_(pv::util::SIPrefix::yocto),
107 tick_precision_(0),
108 time_unit_(util::TimeUnit::Time),
109 show_cursors_(false),
110 cursors_(new CursorPair(*this)),
111 next_flag_text_('A'),
112 hover_point_(-1, -1)
113{
114 connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
115 this, SLOT(h_scroll_value_changed(int)));
116 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
117 this, SLOT(v_scroll_value_changed()));
118
119 connect(&session_, SIGNAL(signals_changed()),
120 this, SLOT(signals_changed()));
121 connect(&session_, SIGNAL(capture_state_changed(int)),
122 this, SLOT(capture_state_updated(int)));
123 connect(&session_, SIGNAL(data_received()),
124 this, SLOT(data_updated()));
125 connect(&session_, SIGNAL(frame_ended()),
126 this, SLOT(data_updated()));
127
128 connect(header_, SIGNAL(selection_changed()),
129 ruler_, SLOT(clear_selection()));
130 connect(ruler_, SIGNAL(selection_changed()),
131 header_, SLOT(clear_selection()));
132
133 connect(header_, SIGNAL(selection_changed()),
134 this, SIGNAL(selection_changed()));
135 connect(ruler_, SIGNAL(selection_changed()),
136 this, SIGNAL(selection_changed()));
137
138 connect(this, SIGNAL(hover_point_changed()),
139 this, SLOT(on_hover_point_changed()));
140
141 connect(&lazy_event_handler_, SIGNAL(timeout()),
142 this, SLOT(process_sticky_events()));
143 lazy_event_handler_.setSingleShot(true);
144
145 connect(&delayed_view_updater_, SIGNAL(timeout()),
146 this, SLOT(perform_delayed_view_update()));
147 delayed_view_updater_.setSingleShot(true);
148 delayed_view_updater_.setInterval(1000 / MaxViewAutoUpdateRate);
149
150 setViewport(viewport_);
151
152 viewport_->installEventFilter(this);
153 ruler_->installEventFilter(this);
154 header_->installEventFilter(this);
155
156 // Trigger the initial event manually. The default device has signals
157 // which were created before this object came into being
158 signals_changed();
159
160 // make sure the transparent widgets are on the top
161 ruler_->raise();
162 header_->raise();
163
164 // Update the zoom state
165 calculate_tick_spacing();
166}
167
168Session& View::session()
169{
170 return session_;
171}
172
173const Session& View::session() const
174{
175 return session_;
176}
177
178View* View::view()
179{
180 return this;
181}
182
183const View* View::view() const
184{
185 return this;
186}
187
188Viewport* View::viewport()
189{
190 return viewport_;
191}
192
193const Viewport* View::viewport() const
194{
195 return viewport_;
196}
197
198vector< shared_ptr<TimeItem> > View::time_items() const
199{
200 const vector<shared_ptr<Flag>> f(flags());
201 vector<shared_ptr<TimeItem>> items(f.begin(), f.end());
202 items.push_back(cursors_);
203 items.push_back(cursors_->first());
204 items.push_back(cursors_->second());
205 return items;
206}
207
208double View::scale() const
209{
210 return scale_;
211}
212
213void View::set_scale(double scale)
214{
215 if (scale_ != scale) {
216 scale_ = scale;
217 Q_EMIT scale_changed();
218 }
219}
220
221const Timestamp& View::offset() const
222{
223 return offset_;
224}
225
226void View::set_offset(const pv::util::Timestamp& offset)
227{
228 if (offset_ != offset) {
229 offset_ = offset;
230 Q_EMIT offset_changed();
231 }
232}
233
234int View::owner_visual_v_offset() const
235{
236 return -verticalScrollBar()->sliderPosition();
237}
238
239void View::set_v_offset(int offset)
240{
241 verticalScrollBar()->setSliderPosition(offset);
242 header_->update();
243 viewport_->update();
244}
245
246unsigned int View::depth() const
247{
248 return 0;
249}
250
251pv::util::SIPrefix View::tick_prefix() const
252{
253 return tick_prefix_;
254}
255
256void View::set_tick_prefix(pv::util::SIPrefix tick_prefix)
257{
258 if (tick_prefix_ != tick_prefix) {
259 tick_prefix_ = tick_prefix;
260 Q_EMIT tick_prefix_changed();
261 }
262}
263
264unsigned int View::tick_precision() const
265{
266 return tick_precision_;
267}
268
269void View::set_tick_precision(unsigned tick_precision)
270{
271 if (tick_precision_ != tick_precision) {
272 tick_precision_ = tick_precision;
273 Q_EMIT tick_precision_changed();
274 }
275}
276
277const pv::util::Timestamp& View::tick_period() const
278{
279 return tick_period_;
280}
281
282void View::set_tick_period(const pv::util::Timestamp& tick_period)
283{
284 if (tick_period_ != tick_period) {
285 tick_period_ = tick_period;
286 Q_EMIT tick_period_changed();
287 }
288}
289
290TimeUnit View::time_unit() const
291{
292 return time_unit_;
293}
294
295void View::set_time_unit(pv::util::TimeUnit time_unit)
296{
297 if (time_unit_ != time_unit) {
298 time_unit_ = time_unit;
299 Q_EMIT time_unit_changed();
300 }
301}
302
303void View::zoom(double steps)
304{
305 zoom(steps, viewport_->width() / 2);
306}
307
308void View::zoom(double steps, int offset)
309{
310 set_zoom(scale_ * pow(3.0/2.0, -steps), offset);
311}
312
313void View::zoom_fit(bool gui_state)
314{
315 // Act as one-shot when stopped, toggle along with the GUI otherwise
316 if (session_.get_capture_state() == Session::Stopped) {
317 always_zoom_to_fit_ = false;
318 always_zoom_to_fit_changed(false);
319 } else {
320 always_zoom_to_fit_ = gui_state;
321 always_zoom_to_fit_changed(gui_state);
322 }
323
324 const pair<Timestamp, Timestamp> extents = get_time_extents();
325 const Timestamp delta = extents.second - extents.first;
326 if (delta < Timestamp("1e-12"))
327 return;
328
329 assert(viewport_);
330 const int w = viewport_->width();
331 if (w <= 0)
332 return;
333
334 const Timestamp scale = max(min(delta / w, MaxScale), MinScale);
335 set_scale_offset(scale.convert_to<double>(), extents.first);
336}
337
338void View::zoom_one_to_one()
339{
340 using pv::data::SignalData;
341
342 // Make a set of all the visible data objects
343 set< shared_ptr<SignalData> > visible_data = get_visible_data();
344 if (visible_data.empty())
345 return;
346
347 double samplerate = 0.0;
348 for (const shared_ptr<SignalData> d : visible_data) {
349 assert(d);
350 const vector< shared_ptr<Segment> > segments =
351 d->segments();
352 for (const shared_ptr<Segment> &s : segments)
353 samplerate = max(samplerate, s->samplerate());
354 }
355
356 if (samplerate == 0.0)
357 return;
358
359 assert(viewport_);
360 const int w = viewport_->width();
361 if (w <= 0)
362 return;
363
364 set_zoom(1.0 / samplerate, w / 2);
365}
366
367void View::set_scale_offset(double scale, const Timestamp& offset)
368{
369 // Disable sticky scrolling / always zoom to fit when acquisition runs
370 // and user drags the viewport
371 if ((scale_ == scale) && (offset_ != offset) &&
372 (session_.get_capture_state() == Session::Running)) {
373
374 if (sticky_scrolling_) {
375 sticky_scrolling_ = false;
376 sticky_scrolling_changed(false);
377 }
378
379 if (always_zoom_to_fit_) {
380 always_zoom_to_fit_ = false;
381 always_zoom_to_fit_changed(false);
382 }
383 }
384
385 set_scale(scale);
386 set_offset(offset);
387
388 calculate_tick_spacing();
389
390 update_scroll();
391 ruler_->update();
392 viewport_->update();
393}
394
395set< shared_ptr<SignalData> > View::get_visible_data() const
396{
397 shared_lock<shared_mutex> lock(session().signals_mutex());
398 const unordered_set< shared_ptr<Signal> > &sigs(session().signals());
399
400 // Make a set of all the visible data objects
401 set< shared_ptr<SignalData> > visible_data;
402 for (const shared_ptr<Signal> sig : sigs)
403 if (sig->enabled())
404 visible_data.insert(sig->data());
405
406 return visible_data;
407}
408
409pair<Timestamp, Timestamp> View::get_time_extents() const
410{
411 boost::optional<Timestamp> left_time, right_time;
412 const set< shared_ptr<SignalData> > visible_data = get_visible_data();
413 for (const shared_ptr<SignalData> d : visible_data)
414 {
415 const vector< shared_ptr<Segment> > segments =
416 d->segments();
417 for (const shared_ptr<Segment> &s : segments) {
418 double samplerate = s->samplerate();
419 samplerate = (samplerate <= 0.0) ? 1.0 : samplerate;
420
421 const Timestamp start_time = s->start_time();
422 left_time = left_time ?
423 min(*left_time, start_time) :
424 start_time;
425 right_time = right_time ?
426 max(*right_time, start_time + d->max_sample_count() / samplerate) :
427 start_time + d->max_sample_count() / samplerate;
428 }
429 }
430
431 if (!left_time || !right_time)
432 return make_pair(0, 0);
433
434 assert(*left_time < *right_time);
435 return make_pair(*left_time, *right_time);
436}
437
438void View::enable_sticky_scrolling(bool state)
439{
440 sticky_scrolling_ = state;
441}
442
443bool View::cursors_shown() const
444{
445 return show_cursors_;
446}
447
448void View::show_cursors(bool show)
449{
450 show_cursors_ = show;
451 ruler_->update();
452 viewport_->update();
453}
454
455void View::centre_cursors()
456{
457 const double time_width = scale_ * viewport_->width();
458 cursors_->first()->set_time(offset_ + time_width * 0.4);
459 cursors_->second()->set_time(offset_ + time_width * 0.6);
460 ruler_->update();
461 viewport_->update();
462}
463
464std::shared_ptr<CursorPair> View::cursors() const
465{
466 return cursors_;
467}
468
469void View::add_flag(const Timestamp& time)
470{
471 flags_.push_back(shared_ptr<Flag>(new Flag(*this, time,
472 QString("%1").arg(next_flag_text_))));
473 next_flag_text_ = (next_flag_text_ >= 'Z') ? 'A' :
474 (next_flag_text_ + 1);
475 time_item_appearance_changed(true, true);
476}
477
478void View::remove_flag(std::shared_ptr<Flag> flag)
479{
480 flags_.remove(flag);
481 time_item_appearance_changed(true, true);
482}
483
484vector< std::shared_ptr<Flag> > View::flags() const
485{
486 vector< std::shared_ptr<Flag> > flags(flags_.begin(), flags_.end());
487 stable_sort(flags.begin(), flags.end(),
488 [](const shared_ptr<Flag> &a, const shared_ptr<Flag> &b) {
489 return a->time() < b->time();
490 });
491
492 return flags;
493}
494
495const QPoint& View::hover_point() const
496{
497 return hover_point_;
498}
499
500void View::update_viewport()
501{
502 assert(viewport_);
503 viewport_->update();
504 header_->update();
505}
506
507void View::restack_all_trace_tree_items()
508{
509 // Make a list of owners that is sorted from deepest first
510 const auto owners = list_row_item_owners();
511 vector< TraceTreeItemOwner* > sorted_owners(owners.begin(), owners.end());
512 sort(sorted_owners.begin(), sorted_owners.end(),
513 [](const TraceTreeItemOwner* a, const TraceTreeItemOwner *b) {
514 return a->depth() > b->depth(); });
515
516 // Restack the items recursively
517 for (auto &o : sorted_owners)
518 o->restack_items();
519
520 // Animate the items to their destination
521 for (const auto &r : *this)
522 r->animate_to_layout_v_offset();
523}
524
525void View::get_scroll_layout(double &length, Timestamp &offset) const
526{
527 const pair<Timestamp, Timestamp> extents = get_time_extents();
528 length = ((extents.second - extents.first) / scale_).convert_to<double>();
529 offset = offset_ / scale_;
530}
531
532void View::set_zoom(double scale, int offset)
533{
534 // Reset the "always zoom to fit" feature as the user changed the zoom
535 always_zoom_to_fit_ = false;
536 always_zoom_to_fit_changed(false);
537
538 const Timestamp cursor_offset = offset_ + scale_ * offset;
539 const Timestamp new_scale = max(min(Timestamp(scale), MaxScale), MinScale);
540 const Timestamp new_offset = cursor_offset - new_scale * offset;
541 set_scale_offset(new_scale.convert_to<double>(), new_offset);
542}
543
544void View::calculate_tick_spacing()
545{
546 const double SpacingIncrement = 10.0f;
547 const double MinValueSpacing = 40.0f;
548
549 // Figure out the highest numeric value visible on a label
550 const QSize areaSize = viewport_->size();
551 const Timestamp max_time = max(fabs(offset_),
552 fabs(offset_ + scale_ * areaSize.width()));
553
554 double min_width = SpacingIncrement;
555 double label_width, tick_period_width;
556
557 QFontMetrics m(QApplication::font());
558
559 // Copies of the member variables with the same name, used in the calculation
560 // and written back afterwards, so that we don't emit signals all the time
561 // during the calculation.
562 pv::util::Timestamp tick_period = tick_period_;
563 pv::util::SIPrefix tick_prefix = tick_prefix_;
564 unsigned tick_precision = tick_precision_;
565
566 do {
567 const double min_period = scale_ * min_width;
568
569 const int order = (int)floorf(log10f(min_period));
570 const pv::util::Timestamp order_decimal =
571 pow(pv::util::Timestamp(10), order);
572
573 // Allow for a margin of error so that a scale unit of 1 can be used.
574 // Otherwise, for a SU of 1 the tick period will almost always be below
575 // the min_period by a small amount - and thus skipped in favor of 2.
576 // Note: margin assumes that SU[0] and SU[1] contain the smallest values
577 double tp_margin = (ScaleUnits[0] + ScaleUnits[1]) / 2.0;
578 double tp_with_margin;
579 unsigned int unit = 0;
580
581 do {
582 tp_with_margin = order_decimal.convert_to<double>() *
583 (ScaleUnits[unit++] + tp_margin);
584 } while (tp_with_margin < min_period && unit < countof(ScaleUnits));
585
586 tick_period = order_decimal * ScaleUnits[unit - 1];
587 tick_prefix = static_cast<pv::util::SIPrefix>(
588 (order - pv::util::exponent(pv::util::SIPrefix::yocto)) / 3);
589
590 // Precision is the number of fractional digits required, not
591 // taking the prefix into account (and it must never be negative)
592 tick_precision = std::max(ceil(log10(1 / tick_period)).convert_to<int>(), 0);
593
594 tick_period_width = (tick_period / scale_).convert_to<double>();
595
596 const QString label_text = Ruler::format_time_with_distance(
597 tick_period, max_time, tick_prefix, time_unit_, tick_precision);
598
599 label_width = m.boundingRect(0, 0, INT_MAX, INT_MAX,
600 Qt::AlignLeft | Qt::AlignTop, label_text).width() +
601 MinValueSpacing;
602
603 min_width += SpacingIncrement;
604 } while (tick_period_width < label_width);
605
606 set_tick_period(tick_period);
607 set_tick_prefix(tick_prefix);
608 set_tick_precision(tick_precision);
609}
610
611void View::update_scroll()
612{
613 assert(viewport_);
614
615 const QSize areaSize = viewport_->size();
616
617 // Set the horizontal scroll bar
618 double length = 0;
619 Timestamp offset;
620 get_scroll_layout(length, offset);
621 length = max(length - areaSize.width(), 0.0);
622
623 int major_tick_distance = (tick_period_ / scale_).convert_to<int>();
624
625 horizontalScrollBar()->setPageStep(areaSize.width() / 2);
626 horizontalScrollBar()->setSingleStep(major_tick_distance);
627
628 updating_scroll_ = true;
629
630 if (length < MaxScrollValue) {
631 horizontalScrollBar()->setRange(0, length);
632 horizontalScrollBar()->setSliderPosition(offset.convert_to<double>());
633 } else {
634 horizontalScrollBar()->setRange(0, MaxScrollValue);
635 horizontalScrollBar()->setSliderPosition(
636 (offset_ * MaxScrollValue / (scale_ * length)).convert_to<double>());
637 }
638
639 updating_scroll_ = false;
640
641 // Set the vertical scrollbar
642 verticalScrollBar()->setPageStep(areaSize.height());
643 verticalScrollBar()->setSingleStep(areaSize.height() / 8);
644
645 const pair<int, int> extents = v_extents();
646 verticalScrollBar()->setRange(extents.first - (areaSize.height() / 2),
647 extents.second - (areaSize.height() / 2));
648}
649
650void View::update_layout()
651{
652 setViewportMargins(
653 header_->sizeHint().width() - pv::view::Header::BaselineOffset,
654 ruler_->sizeHint().height(), 0, 0);
655 ruler_->setGeometry(viewport_->x(), 0,
656 viewport_->width(), ruler_->extended_size_hint().height());
657 header_->setGeometry(0, viewport_->y(),
658 header_->extended_size_hint().width(), viewport_->height());
659 update_scroll();
660}
661
662void View::paint_label(QPainter &p, const QRect &rect, bool hover)
663{
664 (void)p;
665 (void)rect;
666 (void)hover;
667}
668
669QRectF View::label_rect(const QRectF &rect)
670{
671 (void)rect;
672 return QRectF();
673}
674
675TraceTreeItemOwner* View::find_prevalent_trace_group(
676 const shared_ptr<sigrok::ChannelGroup> &group,
677 const unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
678 &signal_map)
679{
680 assert(group);
681
682 unordered_set<TraceTreeItemOwner*> owners;
683 vector<TraceTreeItemOwner*> owner_list;
684
685 // Make a set and a list of all the owners
686 for (const auto &channel : group->channels()) {
687 const auto iter = signal_map.find(channel);
688 if (iter == signal_map.end())
689 continue;
690
691 TraceTreeItemOwner *const o = (*iter).second->owner();
692 owner_list.push_back(o);
693 owners.insert(o);
694 }
695
696 // Iterate through the list of owners, and find the most prevalent
697 size_t max_prevalence = 0;
698 TraceTreeItemOwner *prevalent_owner = nullptr;
699 for (TraceTreeItemOwner *owner : owners) {
700 const size_t prevalence = std::count_if(
701 owner_list.begin(), owner_list.end(),
702 [&](TraceTreeItemOwner *o) { return o == owner; });
703 if (prevalence > max_prevalence) {
704 max_prevalence = prevalence;
705 prevalent_owner = owner;
706 }
707 }
708
709 return prevalent_owner;
710}
711
712vector< shared_ptr<Trace> > View::extract_new_traces_for_channels(
713 const vector< shared_ptr<sigrok::Channel> > &channels,
714 const unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
715 &signal_map,
716 set< shared_ptr<Trace> > &add_list)
717{
718 vector< shared_ptr<Trace> > filtered_traces;
719
720 for (const auto &channel : channels)
721 {
722 const auto map_iter = signal_map.find(channel);
723 if (map_iter == signal_map.end())
724 continue;
725
726 shared_ptr<Trace> trace = (*map_iter).second;
727 const auto list_iter = add_list.find(trace);
728 if (list_iter == add_list.end())
729 continue;
730
731 filtered_traces.push_back(trace);
732 add_list.erase(list_iter);
733 }
734
735 return filtered_traces;
736}
737
738void View::determine_time_unit()
739{
740 // Check whether we know the sample rate and hence can use time as the unit
741 if (time_unit_ == util::TimeUnit::Samples) {
742 shared_lock<shared_mutex> lock(session().signals_mutex());
743 const unordered_set< shared_ptr<Signal> > &sigs(session().signals());
744
745 // Check all signals but...
746 for (const shared_ptr<Signal> signal : sigs) {
747 const shared_ptr<SignalData> data = signal->data();
748
749 // ...only check first segment of each
750 const vector< shared_ptr<Segment> > segments = data->segments();
751 if (!segments.empty())
752 if (segments[0]->samplerate()) {
753 set_time_unit(util::TimeUnit::Time);
754 break;
755 }
756 }
757 }
758}
759
760bool View::eventFilter(QObject *object, QEvent *event)
761{
762 const QEvent::Type type = event->type();
763 if (type == QEvent::MouseMove) {
764
765 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
766 if (object == viewport_)
767 hover_point_ = mouse_event->pos();
768 else if (object == ruler_)
769 hover_point_ = QPoint(mouse_event->x(), 0);
770 else if (object == header_)
771 hover_point_ = QPoint(0, mouse_event->y());
772 else
773 hover_point_ = QPoint(-1, -1);
774
775 hover_point_changed();
776
777 } else if (type == QEvent::Leave) {
778 hover_point_ = QPoint(-1, -1);
779 hover_point_changed();
780 }
781
782 return QObject::eventFilter(object, event);
783}
784
785bool View::viewportEvent(QEvent *e)
786{
787 switch(e->type()) {
788 case QEvent::Paint:
789 case QEvent::MouseButtonPress:
790 case QEvent::MouseButtonRelease:
791 case QEvent::MouseButtonDblClick:
792 case QEvent::MouseMove:
793 case QEvent::Wheel:
794 case QEvent::TouchBegin:
795 case QEvent::TouchUpdate:
796 case QEvent::TouchEnd:
797 return false;
798
799 default:
800 return QAbstractScrollArea::viewportEvent(e);
801 }
802}
803
804void View::resizeEvent(QResizeEvent*)
805{
806 update_layout();
807}
808
809void View::row_item_appearance_changed(bool label, bool content)
810{
811 if (label)
812 header_->update();
813 if (content)
814 viewport_->update();
815}
816
817void View::time_item_appearance_changed(bool label, bool content)
818{
819 if (label)
820 ruler_->update();
821 if (content)
822 viewport_->update();
823}
824
825void View::extents_changed(bool horz, bool vert)
826{
827 sticky_events_ |=
828 (horz ? TraceTreeItemHExtentsChanged : 0) |
829 (vert ? TraceTreeItemVExtentsChanged : 0);
830 lazy_event_handler_.start();
831}
832
833void View::h_scroll_value_changed(int value)
834{
835 if (updating_scroll_)
836 return;
837
838 // Disable sticky scrolling when user moves the horizontal scroll bar
839 // during a running acquisition
840 if (sticky_scrolling_ && (session_.get_capture_state() == Session::Running)) {
841 sticky_scrolling_ = false;
842 sticky_scrolling_changed(false);
843 }
844
845 const int range = horizontalScrollBar()->maximum();
846 if (range < MaxScrollValue)
847 set_offset(scale_ * value);
848 else {
849 double length = 0;
850 Timestamp offset;
851 get_scroll_layout(length, offset);
852 set_offset(scale_ * length * value / MaxScrollValue);
853 }
854
855 ruler_->update();
856 viewport_->update();
857}
858
859void View::v_scroll_value_changed()
860{
861 header_->update();
862 viewport_->update();
863}
864
865void View::signals_changed()
866{
867 vector< shared_ptr<TraceTreeItem> > new_top_level_items;
868
869 const auto device = session_.device();
870 if (!device)
871 return;
872
873 shared_ptr<sigrok::Device> sr_dev = device->device();
874 assert(sr_dev);
875
876 // Make a list of traces that are being added, and a list of traces
877 // that are being removed
878 const set<shared_ptr<Trace>> prev_traces = list_by_type<Trace>();
879
880 shared_lock<shared_mutex> lock(session_.signals_mutex());
881 const unordered_set< shared_ptr<Signal> > &sigs(session_.signals());
882
883 set< shared_ptr<Trace> > traces(sigs.begin(), sigs.end());
884
885#ifdef ENABLE_DECODE
886 const vector< shared_ptr<DecodeTrace> > decode_traces(
887 session().get_decode_signals());
888 traces.insert(decode_traces.begin(), decode_traces.end());
889#endif
890
891 set< shared_ptr<Trace> > add_traces;
892 set_difference(traces.begin(), traces.end(),
893 prev_traces.begin(), prev_traces.end(),
894 inserter(add_traces, add_traces.begin()));
895
896 set< shared_ptr<Trace> > remove_traces;
897 set_difference(prev_traces.begin(), prev_traces.end(),
898 traces.begin(), traces.end(),
899 inserter(remove_traces, remove_traces.begin()));
900
901 // Make a look-up table of sigrok Channels to pulseview Signals
902 unordered_map<shared_ptr<sigrok::Channel>, shared_ptr<Signal> >
903 signal_map;
904 for (const shared_ptr<Signal> &sig : sigs)
905 signal_map[sig->channel()] = sig;
906
907 // Populate channel groups
908 for (auto entry : sr_dev->channel_groups())
909 {
910 const shared_ptr<sigrok::ChannelGroup> &group = entry.second;
911
912 if (group->channels().size() <= 1)
913 continue;
914
915 // Find best trace group to add to
916 TraceTreeItemOwner *owner = find_prevalent_trace_group(
917 group, signal_map);
918
919 // If there is no trace group, create one
920 shared_ptr<TraceGroup> new_trace_group;
921 if (!owner) {
922 new_trace_group.reset(new TraceGroup());
923 owner = new_trace_group.get();
924 }
925
926 // Extract traces for the trace group, removing them from
927 // the add list
928 const vector< shared_ptr<Trace> > new_traces_in_group =
929 extract_new_traces_for_channels(group->channels(),
930 signal_map, add_traces);
931
932 // Add the traces to the group
933 const pair<int, int> prev_v_extents = owner->v_extents();
934 int offset = prev_v_extents.second - prev_v_extents.first;
935 for (shared_ptr<Trace> trace : new_traces_in_group) {
936 assert(trace);
937 owner->add_child_item(trace);
938
939 const pair<int, int> extents = trace->v_extents();
940 if (trace->enabled())
941 offset += -extents.first;
942 trace->force_to_v_offset(offset);
943 if (trace->enabled())
944 offset += extents.second;
945 }
946
947 // If this is a new group, enqueue it in the new top level
948 // items list
949 if (!new_traces_in_group.empty() && new_trace_group)
950 new_top_level_items.push_back(new_trace_group);
951 }
952
953 // Enqueue the remaining channels as free ungrouped traces
954 const vector< shared_ptr<Trace> > new_top_level_signals =
955 extract_new_traces_for_channels(sr_dev->channels(),
956 signal_map, add_traces);
957 new_top_level_items.insert(new_top_level_items.end(),
958 new_top_level_signals.begin(), new_top_level_signals.end());
959
960 // Enqueue any remaining traces i.e. decode traces
961 new_top_level_items.insert(new_top_level_items.end(),
962 add_traces.begin(), add_traces.end());
963
964 // Remove any removed traces
965 for (shared_ptr<Trace> trace : remove_traces) {
966 TraceTreeItemOwner *const owner = trace->owner();
967 assert(owner);
968 owner->remove_child_item(trace);
969 }
970
971 // Add and position the pending top levels items
972 for (auto item : new_top_level_items) {
973 add_child_item(item);
974
975 // Position the item after the last present item
976 int offset = v_extents().second;
977 const pair<int, int> extents = item->v_extents();
978 if (item->enabled())
979 offset += -extents.first;
980 item->force_to_v_offset(offset);
981 if (item->enabled())
982 offset += extents.second;
983 }
984
985 update_layout();
986
987 header_->update();
988 viewport_->update();
989}
990
991void View::capture_state_updated(int state)
992{
993 if (state == Session::Running)
994 set_time_unit(util::TimeUnit::Samples);
995
996 if (state == Session::Stopped) {
997 // After acquisition has stopped we need to re-calculate the ticks once
998 // as it's otherwise done when the user pans or zooms, which is too late
999 calculate_tick_spacing();
1000
1001 // Reset "always zoom to fit", the acquisition has stopped
1002 if (always_zoom_to_fit_) {
1003 always_zoom_to_fit_ = false;
1004 always_zoom_to_fit_changed(false);
1005 }
1006 }
1007}
1008
1009void View::data_updated()
1010{
1011 if (always_zoom_to_fit_ || sticky_scrolling_) {
1012 if (!delayed_view_updater_.isActive())
1013 delayed_view_updater_.start();
1014 } else {
1015 determine_time_unit();
1016 update_scroll();
1017 ruler_->update();
1018 viewport_->update();
1019 }
1020}
1021
1022void View::perform_delayed_view_update()
1023{
1024 if (always_zoom_to_fit_)
1025 zoom_fit(true);
1026
1027 if (sticky_scrolling_) {
1028 // Make right side of the view sticky
1029 double length = 0;
1030 Timestamp offset;
1031 get_scroll_layout(length, offset);
1032
1033 const QSize areaSize = viewport_->size();
1034 length = max(length - areaSize.width(), 0.0);
1035
1036 set_offset(scale_ * length);
1037 }
1038
1039 determine_time_unit();
1040 update_scroll();
1041 ruler_->update();
1042 viewport_->update();
1043}
1044
1045void View::process_sticky_events()
1046{
1047 if (sticky_events_ & TraceTreeItemHExtentsChanged)
1048 update_layout();
1049 if (sticky_events_ & TraceTreeItemVExtentsChanged) {
1050 restack_all_trace_tree_items();
1051 update_scroll();
1052 }
1053
1054 // Clear the sticky events
1055 sticky_events_ = 0;
1056}
1057
1058void View::on_hover_point_changed()
1059{
1060 for (shared_ptr<TraceTreeItem> r : *this)
1061 r->hover_point_changed();
1062}
1063
1064} // namespace view
1065} // namespace pv