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