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