]> sigrok.org Git - pulseview.git/blame_incremental - pv/views/trace/view.hpp
Implement adding different view types
[pulseview.git] / pv / views / trace / view.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
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
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
22
23#include <cstdint>
24#include <list>
25#include <memory>
26#include <set>
27#include <unordered_map>
28#include <vector>
29
30#include <QAbstractScrollArea>
31#include <QShortcut>
32#include <QSizeF>
33#include <QSplitter>
34
35#include <pv/globalsettings.hpp>
36#include <pv/util.hpp>
37#include <pv/data/signaldata.hpp>
38#include <pv/views/viewbase.hpp>
39
40#include "cursorpair.hpp"
41#include "flag.hpp"
42#include "trace.hpp"
43#include "tracetreeitemowner.hpp"
44
45using std::list;
46using std::unordered_map;
47using std::unordered_set;
48using std::set;
49using std::shared_ptr;
50using std::vector;
51
52namespace sigrok {
53class ChannelGroup;
54}
55
56namespace pv {
57
58class Session;
59
60namespace data {
61class Logic;
62}
63
64namespace views {
65
66namespace trace {
67
68class DecodeTrace;
69class Header;
70class Ruler;
71class Signal;
72class Viewport;
73class TriggerMarker;
74
75class CustomScrollArea : public QAbstractScrollArea
76{
77 Q_OBJECT
78
79public:
80 CustomScrollArea(QWidget *parent = nullptr);
81 bool viewportEvent(QEvent *event);
82};
83
84class View : public ViewBase, public TraceTreeItemOwner, public GlobalSettingsInterface
85{
86 Q_OBJECT
87
88private:
89 enum StickyEvents {
90 TraceTreeItemHExtentsChanged = 1,
91 TraceTreeItemVExtentsChanged = 2
92 };
93
94private:
95 static const pv::util::Timestamp MaxScale;
96 static const pv::util::Timestamp MinScale;
97
98 static const int MaxScrollValue;
99
100 static const int ScaleUnits[3];
101
102public:
103 explicit View(Session &session, bool is_main_view=false, QWidget *parent = nullptr);
104
105 ~View();
106
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
113 Session& session(); // This method is needed for TraceTreeItemOwner, not ViewBase
114 const Session& session() const; // This method is needed for TraceTreeItemOwner, not ViewBase
115
116 /**
117 * Returns the signals contained in this view.
118 */
119 unordered_set< shared_ptr<Signal> > signals() const;
120
121 virtual void clear_signals();
122
123 void add_signal(const shared_ptr<Signal> signal);
124
125#ifdef ENABLE_DECODE
126 virtual void clear_decode_signals();
127
128 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
129
130 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
131#endif
132
133 shared_ptr<Signal> get_signal_under_mouse_cursor() const;
134
135 /**
136 * Returns the view of the owner.
137 */
138 virtual View* view();
139
140 /**
141 * Returns the view of the owner.
142 */
143 virtual const View* view() const;
144
145 Viewport* viewport();
146
147 const Viewport* viewport() const;
148
149 const Ruler* ruler() const;
150
151 virtual void save_settings(QSettings &settings) const;
152
153 virtual void restore_settings(QSettings &settings);
154
155 /**
156 * Gets a list of time markers.
157 */
158 vector< shared_ptr<TimeItem> > time_items() const;
159
160 /**
161 * Returns the view time scale in seconds per pixel.
162 */
163 double scale() const;
164
165 /**
166 * Returns the internal view version of the time offset of the left edge
167 * of the view in seconds.
168 */
169 const pv::util::Timestamp& offset() const;
170
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
177 void set_zero_position(const pv::util::Timestamp& position);
178
179 void reset_zero_position();
180
181 pv::util::Timestamp zero_offset() const;
182
183 /**
184 * Returns the vertical scroll offset.
185 */
186 int owner_visual_v_offset() const;
187
188 /**
189 * Sets the visual v-offset.
190 */
191 void set_v_offset(int offset);
192
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
203 /**
204 * Returns the SI prefix to apply to the graticule time markings.
205 */
206 pv::util::SIPrefix tick_prefix() const;
207
208 /**
209 * Returns the number of fractional digits shown for the time markings.
210 */
211 unsigned int tick_precision() const;
212
213 /**
214 * Returns period of the graticule time markings.
215 */
216 const pv::util::Timestamp& tick_period() const;
217
218 /**
219 * Returns number of minor division ticks per time marking.
220 */
221 unsigned int minor_tick_count() const;
222
223 /**
224 * Returns the unit of time currently used.
225 */
226 util::TimeUnit time_unit() const;
227
228 /**
229 * Returns the number of nested parents that this row item owner has.
230 */
231 unsigned int depth() const;
232
233 /**
234 * Returns the currently displayed segment, starting at 0.
235 */
236 uint32_t current_segment() const;
237
238 /**
239 * Returns whether the currently shown segment can be influenced
240 * (selected) or not.
241 */
242 bool segment_is_selectable() const;
243
244 Trace::SegmentDisplayMode segment_display_mode() const;
245 void set_segment_display_mode(Trace::SegmentDisplayMode mode);
246
247 void zoom(double steps);
248 void zoom(double steps, int offset);
249
250 void zoom_fit(bool gui_state);
251
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 */
257 void set_scale_offset(double scale, const pv::util::Timestamp& offset);
258
259 set< shared_ptr<pv::data::SignalData> > get_visible_data() const;
260
261 pair<pv::util::Timestamp, pv::util::Timestamp> get_time_extents() const;
262
263 /**
264 * Returns true if the trace background should be drawn with a colored background.
265 */
266 bool colored_bg() const;
267
268 /**
269 * Returns true if cursors are displayed. false otherwise.
270 */
271 bool cursors_shown() const;
272
273 /**
274 * Shows or hides the cursors.
275 */
276 void show_cursors(bool show = true);
277
278 /**
279 * Sets the cursors to the given offsets. You will still have to call show_cursors separately.
280 */
281 void set_cursors(pv::util::Timestamp& first, pv::util::Timestamp& second);
282
283 /**
284 * Moves the cursors to a convenient position in the view.
285 */
286 void centre_cursors();
287
288 /**
289 * Returns a reference to the pair of cursors.
290 */
291 shared_ptr<CursorPair> cursors() const;
292
293 /**
294 * Adds a new flag at a specified time.
295 */
296 shared_ptr<Flag> add_flag(const pv::util::Timestamp& time);
297
298 /**
299 * Removes a flag from the list.
300 */
301 void remove_flag(shared_ptr<Flag> flag);
302
303 /**
304 * Gets the list of flags.
305 */
306 vector< shared_ptr<Flag> > flags() const;
307
308 const QPoint& hover_point() const;
309 const QWidget* hover_widget() const;
310
311 /**
312 * Determines the closest level change (i.e. edge) to a given point, which
313 * is useful for e.g. the "snap to edge" functionality.
314 *
315 * @param p The current position of the mouse cursor
316 * @return The sample number of the nearest level change or -1 if none
317 */
318 int64_t get_nearest_level_change(const QPoint &p);
319
320 void restack_all_trace_tree_items();
321
322 int header_width() const;
323
324 void on_setting_changed(const QString &key, const QVariant &value);
325
326Q_SIGNALS:
327 void hover_point_changed(const QWidget* widget, const QPoint &hp);
328
329 void selection_changed();
330
331 /// Emitted when the offset changed.
332 void offset_changed();
333
334 /// Emitted when the scale changed.
335 void scale_changed();
336
337 void sticky_scrolling_changed(bool state);
338
339 void always_zoom_to_fit_changed(bool state);
340
341 /// Emitted when the tick_prefix changed.
342 void tick_prefix_changed();
343
344 /// Emitted when the tick_precision changed.
345 void tick_precision_changed();
346
347 /// Emitted when the tick_period changed.
348 void tick_period_changed();
349
350 /// Emitted when the time_unit changed.
351 void time_unit_changed();
352
353 /// Emitted when the currently selected segment changed
354 void segment_changed(int segment_id);
355
356 /// Emitted when the multi-segment display mode changed
357 /// @param mode is a value of Trace::SegmentDisplayMode
358 void segment_display_mode_changed(int mode, bool segment_selectable);
359
360 /// Emitted when the cursors are shown/hidden
361 void cursor_state_changed(bool show);
362
363public Q_SLOTS:
364 void trigger_event(int segment_id, util::Timestamp location);
365
366private:
367 void get_scroll_layout(double &length, pv::util::Timestamp &offset) const;
368
369 /**
370 * Simultaneously sets the zoom and offset.
371 * @param scale The scale to set the view to in seconds per pixel. This
372 * value is clamped between MinScale and MaxScale.
373 * @param offset The offset of the left edge of the view in seconds.
374 */
375 void set_zoom(double scale, int offset);
376
377 /**
378 * Find a tick spacing and number formatting that does not cause
379 * the values to collide.
380 */
381 void calculate_tick_spacing();
382
383 void adjust_top_margin();
384
385 void update_scroll();
386
387 void reset_scroll();
388
389 void set_scroll_default();
390
391 void determine_if_header_was_shrunk();
392
393 void resize_header_to_fit();
394
395 void update_layout();
396
397 TraceTreeItemOwner* find_prevalent_trace_group(
398 const shared_ptr<sigrok::ChannelGroup> &group,
399 const unordered_map<shared_ptr<data::SignalBase>,
400 shared_ptr<Signal> > &signal_map);
401
402 static vector< shared_ptr<Trace> >
403 extract_new_traces_for_channels(
404 const vector< shared_ptr<sigrok::Channel> > &channels,
405 const unordered_map<shared_ptr<data::SignalBase>,
406 shared_ptr<Signal> > &signal_map,
407 set< shared_ptr<Trace> > &add_list);
408
409 void determine_time_unit();
410
411 bool eventFilter(QObject *object, QEvent *event);
412
413 virtual void contextMenuEvent(QContextMenuEvent *event);
414
415 void resizeEvent(QResizeEvent *event);
416
417 void update_hover_point();
418
419public:
420 void row_item_appearance_changed(bool label, bool content);
421 void time_item_appearance_changed(bool label, bool content);
422
423 void extents_changed(bool horz, bool vert);
424
425private Q_SLOTS:
426
427 void on_signal_name_changed();
428 void on_splitter_moved();
429
430 void on_zoom_in_shortcut_triggered();
431 void on_zoom_out_shortcut_triggered();
432 void on_scroll_to_start_shortcut_triggered();
433 void on_scroll_to_end_shortcut_triggered();
434
435 void h_scroll_value_changed(int value);
436 void v_scroll_value_changed();
437
438 void signals_changed();
439 void capture_state_updated(int state);
440
441 void on_new_segment(int new_segment_id);
442 void on_segment_completed(int new_segment_id);
443 void on_segment_changed(int segment);
444
445 void on_settingViewTriggerIsZeroTime_changed(const QVariant new_value);
446
447 virtual void perform_delayed_view_update();
448
449 void process_sticky_events();
450
451 /**
452 * Sets the 'offset_' and ruler_offset_ members and emits the 'offset_changed'
453 * signal if needed.
454 */
455 void set_offset(const pv::util::Timestamp& offset, bool force_update = false);
456
457 /**
458 * Sets the 'scale_' member and emits the 'scale_changed'
459 * signal if needed.
460 */
461 void set_scale(double scale);
462
463 /**
464 * Sets the 'tick_prefix_' member and emits the 'tick_prefix_changed'
465 * signal if needed.
466 */
467 void set_tick_prefix(pv::util::SIPrefix tick_prefix);
468
469 /**
470 * Sets the 'tick_precision_' member and emits the 'tick_precision_changed'
471 * signal if needed.
472 */
473 void set_tick_precision(unsigned tick_precision);
474
475 /**
476 * Sets the 'tick_period_' member and emits the 'tick_period_changed'
477 * signal if needed.
478 */
479 void set_tick_period(const pv::util::Timestamp& tick_period);
480
481 /**
482 * Sets the 'time_unit' member and emits the 'time_unit_changed'
483 * signal if needed.
484 */
485 void set_time_unit(pv::util::TimeUnit time_unit);
486
487 /**
488 * Sets the current segment with the first segment starting at 0.
489 */
490 void set_current_segment(uint32_t segment_id);
491
492private:
493 CustomScrollArea *scrollarea_;
494 Viewport *viewport_;
495 Ruler *ruler_;
496 Header *header_;
497 QSplitter *splitter_;
498
499 QShortcut *zoom_in_shortcut_, *zoom_in_shortcut_2_;
500 QShortcut *zoom_out_shortcut_, *zoom_out_shortcut_2_;
501 QShortcut *home_shortcut_, *end_shortcut_;
502
503 unordered_set< shared_ptr<Signal> > signals_;
504
505#ifdef ENABLE_DECODE
506 vector< shared_ptr<DecodeTrace> > decode_traces_;
507#endif
508
509 Trace::SegmentDisplayMode segment_display_mode_;
510
511 /// Signals whether the user can change the currently shown segment.
512 bool segment_selectable_;
513
514 /// The view time scale in seconds per pixel.
515 double scale_;
516
517 /// The internal view version of the time offset in seconds.
518 pv::util::Timestamp offset_;
519 /// The ruler version of the time offset in seconds.
520 pv::util::Timestamp ruler_offset_;
521 /// The offset of the zero point in seconds.
522 pv::util::Timestamp zero_offset_;
523
524 bool updating_scroll_;
525 bool settings_restored_;
526 bool header_was_shrunk_;
527
528 bool sticky_scrolling_;
529 bool colored_bg_;
530 bool always_zoom_to_fit_;
531
532 pv::util::Timestamp tick_period_;
533 pv::util::SIPrefix tick_prefix_;
534 unsigned int minor_tick_count_;
535 unsigned int tick_precision_;
536 util::TimeUnit time_unit_;
537
538 bool show_cursors_;
539 shared_ptr<CursorPair> cursors_;
540
541 list< shared_ptr<Flag> > flags_;
542 char next_flag_text_;
543
544 vector< shared_ptr<TriggerMarker> > trigger_markers_;
545
546 QWidget* hover_widget_;
547 QPoint hover_point_;
548 shared_ptr<Signal> signal_under_mouse_cursor_;
549 uint16_t snap_distance_;
550
551 unsigned int sticky_events_;
552 QTimer lazy_event_handler_;
553
554 // This is true when the defaults couldn't be set due to insufficient info
555 bool scroll_needs_defaults_;
556
557 // A nonzero value indicates the v offset to restore. See View::resizeEvent()
558 int saved_v_offset_;
559
560 // These are used to determine whether the view was altered after acq started
561 double scale_at_acq_start_;
562 pv::util::Timestamp offset_at_acq_start_;
563
564 // Used to suppress performing a "zoom to fit" when the session stops. This
565 // is needed when the view's settings are restored before acquisition ends.
566 // In that case we want to keep the restored settings, not have a "zoom to fit"
567 // mess them up.
568 bool suppress_zoom_to_fit_after_acq_;
569};
570
571} // namespace trace
572} // namespace views
573} // namespace pv
574
575#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP