]> sigrok.org Git - pulseview.git/blame - pv/views/trace/view.hpp
TraceView: Don't use unordered sets and maps
[pulseview.git] / pv / views / trace / view.hpp
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
adb4b10c
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
adb4b10c 22
cafe470e 23#include <cstdint>
8914fe79 24#include <list>
f9abf97e 25#include <memory>
1bc6525b 26#include <set>
38eeddea
JH
27#include <vector>
28
adb4b10c 29#include <QAbstractScrollArea>
476ca5f4 30#include <QShortcut>
2e04f9bd 31#include <QSizeF>
33094993 32#include <QSplitter>
adb4b10c 33
d0c0573b 34#include <pv/globalsettings.hpp>
ef454ad5 35#include <pv/util.hpp>
d0c0573b 36#include <pv/data/signaldata.hpp>
aca9aa83 37#include <pv/views/viewbase.hpp>
1bc6525b 38
2acdb232 39#include "cursorpair.hpp"
8914fe79 40#include "flag.hpp"
7daebd05 41#include "trace.hpp"
af503b10 42#include "tracetreeitemowner.hpp"
f76af637 43
6f925ba9 44using std::list;
9cee9c1b 45using std::map;
6f925ba9
UH
46using std::set;
47using std::shared_ptr;
48using std::vector;
49
cf124e47
JH
50namespace sigrok {
51class ChannelGroup;
52}
53
51e77110
JH
54namespace pv {
55
2b81ae46 56class Session;
adb4b10c 57
5ed05b69
SA
58namespace data {
59class Logic;
60}
61
f4e57597
SA
62namespace views {
63
1573bf16 64namespace trace {
cdf7bea7 65
bb7dd726 66class DecodeTrace;
1d8dca91 67class Header;
ccdd3ef5 68class Ruler;
47e9e7bb 69class Signal;
cdf7bea7 70class Viewport;
1a2288a1 71class TriggerMarker;
cdf7bea7 72
33094993 73class CustomScrollArea : public QAbstractScrollArea
c063290a 74{
f4e57597
SA
75 Q_OBJECT
76
77public:
33094993 78 CustomScrollArea(QWidget *parent = nullptr);
f4e57597
SA
79 bool viewportEvent(QEvent *event);
80};
81
d0c0573b 82class View : public ViewBase, public TraceTreeItemOwner, public GlobalSettingsInterface
c063290a 83{
adb4b10c
JH
84 Q_OBJECT
85
32218d3e
JH
86private:
87 enum StickyEvents {
af503b10
JH
88 TraceTreeItemHExtentsChanged = 1,
89 TraceTreeItemVExtentsChanged = 2
32218d3e
JH
90 };
91
adb4b10c 92private:
60d9b99a
JS
93 static const pv::util::Timestamp MaxScale;
94 static const pv::util::Timestamp MinScale;
adb4b10c 95
f25770e2 96 static const int MaxScrollValue;
6381b375 97 static const int ViewScrollMargin;
f25770e2 98
361c560e
JH
99 static const int ScaleUnits[3];
100
adb4b10c 101public:
a24412db 102 explicit View(Session &session, bool is_main_view=false, QMainWindow *parent = nullptr);
adb4b10c 103
d0c0573b
SA
104 ~View();
105
db298158
SA
106 virtual ViewType get_type() const;
107
5a206446
SA
108 /**
109 * Resets the view to its default state after construction. It does however
110 * not reset the signal bases or any other connections with the session.
111 */
112 virtual void reset_view_state();
113
2bdc5796
SA
114 Session& session(); // This method is needed for TraceTreeItemOwner, not ViewBase
115 const Session& session() const; // This method is needed for TraceTreeItemOwner, not ViewBase
1d19ef83 116
47e9e7bb
SA
117 /**
118 * Returns the signals contained in this view.
119 */
533b67b7 120 vector< shared_ptr<Signal> > signals() const;
47e9e7bb 121
0a952555
SA
122 shared_ptr<Signal> get_signal_by_signalbase(shared_ptr<data::SignalBase> base) const;
123
f4e57597 124 virtual void clear_signals();
47e9e7bb 125
5ed05b69 126 void add_signal(const shared_ptr<Signal> signal);
47e9e7bb 127
bb7dd726 128#ifdef ENABLE_DECODE
f4e57597 129 virtual void clear_decode_signals();
bb7dd726 130
ad908057 131 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
bb7dd726 132
ad908057 133 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
bb7dd726
SA
134#endif
135
eeceee99
SA
136 shared_ptr<Signal> get_signal_under_mouse_cursor() const;
137
eae6e30a
JH
138 /**
139 * Returns the view of the owner.
140 */
f4e57597 141 virtual View* view();
eae6e30a
JH
142
143 /**
144 * Returns the view of the owner.
145 */
f4e57597 146 virtual const View* view() const;
eae6e30a 147
2ae445ba 148 Viewport* viewport();
2ae445ba
SA
149 const Viewport* viewport() const;
150
c6b4e925
SA
151 QAbstractScrollArea* scrollarea() const;
152
79b53a1a
SA
153 const Ruler* ruler() const;
154
f4e57597 155 virtual void save_settings(QSettings &settings) const;
f4e57597 156 virtual void restore_settings(QSettings &settings);
3a21afa6 157
2496bf45
JH
158 /**
159 * Gets a list of time markers.
160 */
6f925ba9 161 vector< shared_ptr<TimeItem> > time_items() const;
2496bf45 162
e2f5223b
JH
163 /**
164 * Returns the view time scale in seconds per pixel.
165 */
adb4b10c 166 double scale() const;
e2f5223b
JH
167
168 /**
ffc00fdd
C
169 * Returns the internal view version of the time offset of the left edge
170 * of the view in seconds.
e2f5223b 171 */
60d9b99a 172 const pv::util::Timestamp& offset() const;
f8400017 173
ffc00fdd
C
174 /**
175 * Returns the ruler version of the time offset of the left edge
176 * of the view in seconds.
177 */
178 const pv::util::Timestamp& ruler_offset() const;
179
e23567ed 180 void set_zero_position(const pv::util::Timestamp& position);
451dc5f3
SA
181
182 void reset_zero_position();
183
4468ee42 184 pv::util::Timestamp zero_offset() const;
39173000 185
f8400017
JH
186 /**
187 * Returns the vertical scroll offset.
188 */
7ff0145f 189 int owner_visual_v_offset() const;
adb4b10c 190
4d476647
JH
191 /**
192 * Sets the visual v-offset.
193 */
194 void set_v_offset(int offset);
195
ccf6a266
MM
196 /**
197 * Sets the visual h-offset.
198 */
199 void set_h_offset(int offset);
200
201 /**
202 * Gets the length of the horizontal scrollbar.
203 */
204 int get_h_scrollbar_maximum() const;
205
361c560e
JH
206 /**
207 * Returns the SI prefix to apply to the graticule time markings.
208 */
d001f416 209 pv::util::SIPrefix tick_prefix() const;
361c560e 210
d40f4db7
SA
211 /**
212 * Returns the number of fractional digits shown for the time markings.
213 */
214 unsigned int tick_precision() const;
215
361c560e
JH
216 /**
217 * Returns period of the graticule time markings.
218 */
c677193d 219 const pv::util::Timestamp& tick_period() const;
361c560e 220
4a076157
C
221 /**
222 * Returns number of minor division ticks per time marking.
223 */
224 unsigned int minor_tick_count() const;
225
ef454ad5
SA
226 /**
227 * Returns the unit of time currently used.
228 */
229 util::TimeUnit time_unit() const;
230
3e769a37
JH
231 /**
232 * Returns the number of nested parents that this row item owner has.
233 */
234 unsigned int depth() const;
235
89914a86
SA
236 /**
237 * Returns the currently displayed segment, starting at 0.
238 */
239 uint32_t current_segment() const;
240
7daebd05
SA
241 /**
242 * Returns whether the currently shown segment can be influenced
243 * (selected) or not.
244 */
245 bool segment_is_selectable() const;
246
89914a86 247 Trace::SegmentDisplayMode segment_display_mode() const;
7daebd05
SA
248 void set_segment_display_mode(Trace::SegmentDisplayMode mode);
249
adb4b10c 250 void zoom(double steps);
17c0f398 251 void zoom(double steps, int offset);
adb4b10c 252
ce11b2ea 253 void zoom_fit(bool gui_state);
ca46b534 254
9a35b05d
SA
255 virtual void focus_on_range(uint64_t start_sample, uint64_t end_sample);
256
e2f5223b
JH
257 /**
258 * Sets the scale and offset.
259 * @param scale The new view scale in seconds per pixel.
260 * @param offset The view time offset in seconds.
261 */
60d9b99a 262 void set_scale_offset(double scale, const pv::util::Timestamp& offset);
adb4b10c 263
533b67b7 264 vector< shared_ptr<pv::data::SignalData> > get_visible_data() const;
1bc6525b 265
6f925ba9 266 pair<pv::util::Timestamp, pv::util::Timestamp> get_time_extents() const;
1bc6525b 267
48995388 268 /**
641574bc 269 * Returns true if the trace background should be drawn with a colored background.
48995388 270 */
641574bc 271 bool colored_bg() const;
48995388 272
f76af637 273 /**
3d6ff1cd 274 * Returns true if cursors are displayed, false otherwise.
f76af637
JH
275 */
276 bool cursors_shown() const;
277
278 /**
279 * Shows or hides the cursors.
280 */
281 void show_cursors(bool show = true);
282
a47b5a3f 283 /**
3d6ff1cd
SA
284 * Sets the cursors to the given offsets.
285 * You still have to call show_cursors() separately.
a47b5a3f
SA
286 */
287 void set_cursors(pv::util::Timestamp& first, pv::util::Timestamp& second);
4eba9990 288
b4d91e56
JH
289 /**
290 * Moves the cursors to a convenient position in the view.
3d6ff1cd 291 * You still have to call show_cursors() separately.
b4d91e56 292 */
3d6ff1cd 293 void center_cursors();
b4d91e56 294
f76af637
JH
295 /**
296 * Returns a reference to the pair of cursors.
297 */
6f925ba9 298 shared_ptr<CursorPair> cursors() const;
58864c5c 299
8914fe79
JH
300 /**
301 * Adds a new flag at a specified time.
302 */
710c2a18 303 shared_ptr<Flag> add_flag(const pv::util::Timestamp& time);
8914fe79
JH
304
305 /**
306 * Removes a flag from the list.
307 */
6f925ba9 308 void remove_flag(shared_ptr<Flag> flag);
8914fe79
JH
309
310 /**
311 * Gets the list of flags.
312 */
6f925ba9 313 vector< shared_ptr<Flag> > flags() const;
8914fe79 314
cbd80f64 315 const QPoint& hover_point() const;
581724de 316 const QWidget* hover_widget() const;
cbd80f64 317
eeceee99
SA
318 /**
319 * Determines the closest level change (i.e. edge) to a given point, which
320 * is useful for e.g. the "snap to edge" functionality.
321 *
322 * @param p The current position of the mouse cursor
323 * @return The sample number of the nearest level change or -1 if none
324 */
f6b6c9bf 325 int64_t get_nearest_level_change(const QPoint &p);
eeceee99 326
af503b10 327 void restack_all_trace_tree_items();
9cef9567 328
cbd9ec7f
SA
329 int header_width() const;
330
d0c0573b
SA
331 void on_setting_changed(const QString &key, const QVariant &value);
332
e9213170 333Q_SIGNALS:
581724de 334 void hover_point_changed(const QWidget* widget, const QPoint &hp);
cbd80f64 335
8b454527
JH
336 void selection_changed();
337
4b0af0b6
JS
338 /// Emitted when the offset changed.
339 void offset_changed();
340
341 /// Emitted when the scale changed.
342 void scale_changed();
e0fc5810 343
c7b03d9d
SA
344 void sticky_scrolling_changed(bool state);
345
ce11b2ea
SA
346 void always_zoom_to_fit_changed(bool state);
347
4b0af0b6
JS
348 /// Emitted when the tick_prefix changed.
349 void tick_prefix_changed();
350
351 /// Emitted when the tick_precision changed.
352 void tick_precision_changed();
353
354 /// Emitted when the tick_period changed.
355 void tick_period_changed();
356
357 /// Emitted when the time_unit changed.
358 void time_unit_changed();
359
7daebd05
SA
360 /// Emitted when the currently selected segment changed
361 void segment_changed(int segment_id);
362
363 /// Emitted when the multi-segment display mode changed
89914a86
SA
364 /// @param mode is a value of Trace::SegmentDisplayMode
365 void segment_display_mode_changed(int mode, bool segment_selectable);
7daebd05 366
e4e5a958
SA
367 /// Emitted when the cursors are shown/hidden
368 void cursor_state_changed(bool show);
369
48257a69 370public Q_SLOTS:
7ea2a4ff 371 void trigger_event(int segment_id, util::Timestamp location);
48257a69 372
adb4b10c 373private:
60d9b99a 374 void get_scroll_layout(double &length, pv::util::Timestamp &offset) const;
3925091a
JH
375
376 /**
377 * Simultaneously sets the zoom and offset.
378 * @param scale The scale to set the view to in seconds per pixel. This
379 * value is clamped between MinScale and MaxScale.
380 * @param offset The offset of the left edge of the view in seconds.
381 */
d1e7d82c
JH
382 void set_zoom(double scale, int offset);
383
361c560e
JH
384 /**
385 * Find a tick spacing and number formatting that does not cause
386 * the values to collide.
387 */
388 void calculate_tick_spacing();
389
8a5fd81f
SA
390 void adjust_top_margin();
391
adb4b10c
JH
392 void update_scroll();
393
925763b0
SA
394 void reset_scroll();
395
396 void set_scroll_default();
397
9510aea0 398 void determine_if_header_was_shrunk();
76750c41 399
60c426a0 400 void resize_header_to_fit();
33094993 401
d7c0ca4a
JH
402 void update_layout();
403
af503b10 404 TraceTreeItemOwner* find_prevalent_trace_group(
6f925ba9 405 const shared_ptr<sigrok::ChannelGroup> &group,
9cee9c1b 406 const map<shared_ptr<data::SignalBase>, shared_ptr<Signal> > &signal_map);
cf124e47 407
6f925ba9 408 static vector< shared_ptr<Trace> >
cf124e47 409 extract_new_traces_for_channels(
6f925ba9 410 const vector< shared_ptr<sigrok::Channel> > &channels,
9cee9c1b 411 const map<shared_ptr<data::SignalBase>, shared_ptr<Signal> > &signal_map,
6f925ba9 412 set< shared_ptr<Trace> > &add_list);
448a72cf 413
ef454ad5
SA
414 void determine_time_unit();
415
cbd80f64
JH
416 bool eventFilter(QObject *object, QEvent *event);
417
d9b55cc8
SA
418 virtual void contextMenuEvent(QContextMenuEvent *event);
419
d9ea9628 420 void resizeEvent(QResizeEvent *event);
adb4b10c 421
873e8035
SA
422 void update_hover_point();
423
32218d3e 424public:
6e2c3c85 425 void row_item_appearance_changed(bool label, bool content);
98cfe4e8 426 void time_item_appearance_changed(bool label, bool content);
32218d3e
JH
427
428 void extents_changed(bool horz, bool vert);
429
e9213170 430private Q_SLOTS:
00c518d6 431 void on_signal_name_changed();
e0be5f21 432 void on_splitter_moved();
2a9fcd62 433
476ca5f4
SA
434 void on_zoom_in_shortcut_triggered();
435 void on_zoom_out_shortcut_triggered();
436 void on_scroll_to_start_shortcut_triggered();
437 void on_scroll_to_end_shortcut_triggered();
438
b16907d3 439 void h_scroll_value_changed(int value);
f8400017 440 void v_scroll_value_changed();
adb4b10c 441
95a4b2a1
MM
442 void on_grab_ruler(int ruler_id);
443
69dd2b03 444 void signals_changed();
7ee199a7 445 void capture_state_updated(int state);
adb4b10c 446
4e86ec70 447 void on_new_segment(int new_segment_id);
558ad6ce 448 void on_segment_completed(int new_segment_id);
526c8c00
SA
449 void on_segment_changed(int segment);
450
451dc5f3
SA
451 void on_settingViewTriggerIsZeroTime_changed(const QVariant new_value);
452
5ed05b69 453 virtual void perform_delayed_view_update();
c7b03d9d 454
32218d3e 455 void process_sticky_events();
d7c0ca4a 456
4b0af0b6 457 /**
ffc00fdd 458 * Sets the 'offset_' and ruler_offset_ members and emits the 'offset_changed'
4b0af0b6
JS
459 * signal if needed.
460 */
451dc5f3 461 void set_offset(const pv::util::Timestamp& offset, bool force_update = false);
4b0af0b6
JS
462
463 /**
464 * Sets the 'scale_' member and emits the 'scale_changed'
465 * signal if needed.
466 */
467 void set_scale(double scale);
468
469 /**
470 * Sets the 'tick_prefix_' member and emits the 'tick_prefix_changed'
471 * signal if needed.
472 */
473 void set_tick_prefix(pv::util::SIPrefix tick_prefix);
474
475 /**
476 * Sets the 'tick_precision_' member and emits the 'tick_precision_changed'
477 * signal if needed.
478 */
479 void set_tick_precision(unsigned tick_precision);
480
481 /**
482 * Sets the 'tick_period_' member and emits the 'tick_period_changed'
483 * signal if needed.
484 */
c677193d 485 void set_tick_period(const pv::util::Timestamp& tick_period);
4b0af0b6
JS
486
487 /**
488 * Sets the 'time_unit' member and emits the 'time_unit_changed'
489 * signal if needed.
490 */
491 void set_time_unit(pv::util::TimeUnit time_unit);
492
558ad6ce
SA
493 /**
494 * Sets the current segment with the first segment starting at 0.
495 */
496 void set_current_segment(uint32_t segment_id);
497
adb4b10c 498private:
33094993 499 CustomScrollArea *scrollarea_;
8dbbc7f0
JH
500 Viewport *viewport_;
501 Ruler *ruler_;
8dbbc7f0 502 Header *header_;
33094993 503 QSplitter *splitter_;
adb4b10c 504
476ca5f4
SA
505 QShortcut *zoom_in_shortcut_, *zoom_in_shortcut_2_;
506 QShortcut *zoom_out_shortcut_, *zoom_out_shortcut_2_;
507 QShortcut *home_shortcut_, *end_shortcut_;
95a4b2a1
MM
508 QShortcut *grab_ruler_left_shortcut_, *grab_ruler_right_shortcut_;
509 QShortcut *cancel_grab_shortcut_;
476ca5f4 510
533b67b7 511 vector< shared_ptr<Signal> > signals_;
47e9e7bb 512
bb7dd726 513#ifdef ENABLE_DECODE
6f925ba9 514 vector< shared_ptr<DecodeTrace> > decode_traces_;
bb7dd726
SA
515#endif
516
7daebd05
SA
517 Trace::SegmentDisplayMode segment_display_mode_;
518
519 /// Signals whether the user can change the currently shown segment.
520 bool segment_selectable_;
526c8c00 521
e2f5223b 522 /// The view time scale in seconds per pixel.
8dbbc7f0 523 double scale_;
e2f5223b 524
ffc00fdd 525 /// The internal view version of the time offset in seconds.
60d9b99a 526 pv::util::Timestamp offset_;
ffc00fdd
C
527 /// The ruler version of the time offset in seconds.
528 pv::util::Timestamp ruler_offset_;
fe68068b
SA
529 /// The offset of the zero point in seconds.
530 pv::util::Timestamp zero_offset_;
e887fe9e
SA
531 /// Shows whether the user set a custom zero offset that we should keep
532 bool custom_zero_offset_set_;
adb4b10c 533
8dbbc7f0 534 bool updating_scroll_;
4cc2e925 535 bool settings_restored_;
9510aea0 536 bool header_was_shrunk_;
4cc2e925 537
c7b03d9d 538 bool sticky_scrolling_;
641574bc 539 bool colored_bg_;
ce11b2ea 540 bool always_zoom_to_fit_;
cbd80f64 541
c677193d 542 pv::util::Timestamp tick_period_;
d001f416 543 pv::util::SIPrefix tick_prefix_;
4a076157 544 unsigned int minor_tick_count_;
d40f4db7 545 unsigned int tick_precision_;
ef454ad5 546 util::TimeUnit time_unit_;
361c560e 547
8dbbc7f0 548 bool show_cursors_;
6f925ba9 549 shared_ptr<CursorPair> cursors_;
f76af637 550
6f925ba9 551 list< shared_ptr<Flag> > flags_;
8914fe79
JH
552 char next_flag_text_;
553
6f925ba9 554 vector< shared_ptr<TriggerMarker> > trigger_markers_;
1a2288a1 555
581724de 556 QWidget* hover_widget_;
95a4b2a1 557 TimeMarker* grabbed_widget_;
8dbbc7f0 558 QPoint hover_point_;
eeceee99 559 shared_ptr<Signal> signal_under_mouse_cursor_;
fb641801 560 uint16_t snap_distance_;
32218d3e 561
8dbbc7f0
JH
562 unsigned int sticky_events_;
563 QTimer lazy_event_handler_;
925763b0
SA
564
565 // This is true when the defaults couldn't be set due to insufficient info
e62bee73 566 bool scroll_needs_defaults_;
39ab01e7
SA
567
568 // A nonzero value indicates the v offset to restore. See View::resizeEvent()
569 int saved_v_offset_;
28ceff25
SA
570
571 // These are used to determine whether the view was altered after acq started
572 double scale_at_acq_start_;
573 pv::util::Timestamp offset_at_acq_start_;
574
575 // Used to suppress performing a "zoom to fit" when the session stops. This
576 // is needed when the view's settings are restored before acquisition ends.
577 // In that case we want to keep the restored settings, not have a "zoom to fit"
578 // mess them up.
579 bool suppress_zoom_to_fit_after_acq_;
adb4b10c
JH
580};
581
1573bf16 582} // namespace trace
f4e57597 583} // namespace views
cdf7bea7
JH
584} // namespace pv
585
f4e57597 586#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP