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