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