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