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