2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
20 #ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
21 #define PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP
27 #include <unordered_map>
30 #include <QAbstractScrollArea>
34 #include <pv/data/signaldata.hpp>
35 #include <pv/util.hpp>
36 #include <pv/views/viewbase.hpp>
38 #include "cursorpair.hpp"
41 #include "tracetreeitemowner.hpp"
44 using std::unordered_map;
45 using std::unordered_set;
47 using std::shared_ptr;
75 class CustomScrollArea : public QAbstractScrollArea
80 CustomScrollArea(QWidget *parent = nullptr);
81 bool viewportEvent(QEvent *event);
84 class View : public ViewBase, public TraceTreeItemOwner
90 TraceTreeItemHExtentsChanged = 1,
91 TraceTreeItemVExtentsChanged = 2
95 static const pv::util::Timestamp MaxScale;
96 static const pv::util::Timestamp MinScale;
98 static const int MaxScrollValue;
100 static const int ScaleUnits[3];
103 explicit View(Session &session, bool is_main_view=false, QWidget *parent = nullptr);
106 const Session& session() const;
109 * Returns the signals contained in this view.
111 unordered_set< shared_ptr<Signal> > signals() const;
113 virtual void clear_signals();
115 void add_signal(const shared_ptr<Signal> signal);
118 virtual void clear_decode_signals();
120 virtual void add_decode_signal(shared_ptr<data::DecodeSignal> signal);
122 virtual void remove_decode_signal(shared_ptr<data::DecodeSignal> signal);
126 * Returns the view of the owner.
128 virtual View* view();
131 * Returns the view of the owner.
133 virtual const View* view() const;
135 Viewport* viewport();
137 const Viewport* viewport() const;
139 virtual void save_settings(QSettings &settings) const;
141 virtual void restore_settings(QSettings &settings);
144 * Gets a list of time markers.
146 vector< shared_ptr<TimeItem> > time_items() const;
149 * Returns the view time scale in seconds per pixel.
151 double scale() const;
154 * Returns the time offset of the left edge of the view in
157 const pv::util::Timestamp& offset() const;
160 * Returns the vertical scroll offset.
162 int owner_visual_v_offset() const;
165 * Sets the visual v-offset.
167 void set_v_offset(int offset);
170 * Returns the SI prefix to apply to the graticule time markings.
172 pv::util::SIPrefix tick_prefix() const;
175 * Returns the number of fractional digits shown for the time markings.
177 unsigned int tick_precision() const;
180 * Returns period of the graticule time markings.
182 const pv::util::Timestamp& tick_period() const;
185 * Returns the unit of time currently used.
187 util::TimeUnit time_unit() const;
190 * Returns the number of nested parents that this row item owner has.
192 unsigned int depth() const;
195 * Returns whether the currently shown segment can be influenced
198 bool segment_is_selectable() const;
200 void set_segment_display_mode(Trace::SegmentDisplayMode mode);
202 void zoom(double steps);
203 void zoom(double steps, int offset);
205 void zoom_fit(bool gui_state);
207 void zoom_one_to_one();
210 * Sets the scale and offset.
211 * @param scale The new view scale in seconds per pixel.
212 * @param offset The view time offset in seconds.
214 void set_scale_offset(double scale, const pv::util::Timestamp& offset);
216 set< shared_ptr<pv::data::SignalData> > get_visible_data() const;
218 pair<pv::util::Timestamp, pv::util::Timestamp> get_time_extents() const;
221 * Enables or disables coloured trace backgrounds. If they're not
222 * coloured then they will use alternating colors.
224 void enable_coloured_bg(bool state);
227 * Returns true if the trace background should be drawn with a coloured background.
229 bool coloured_bg() const;
232 * Enable or disable showing sampling points.
234 void enable_show_sampling_points(bool state);
237 * Enable or disable showing the analog minor grid.
239 void enable_show_analog_minor_grid(bool state);
242 * Returns true if cursors are displayed. false otherwise.
244 bool cursors_shown() const;
247 * Shows or hides the cursors.
249 void show_cursors(bool show = true);
252 * Moves the cursors to a convenient position in the view.
254 void centre_cursors();
257 * Returns a reference to the pair of cursors.
259 shared_ptr<CursorPair> cursors() const;
262 * Adds a new flag at a specified time.
264 void add_flag(const pv::util::Timestamp& time);
267 * Removes a flag from the list.
269 void remove_flag(shared_ptr<Flag> flag);
272 * Gets the list of flags.
274 vector< shared_ptr<Flag> > flags() const;
276 const QPoint& hover_point() const;
278 void restack_all_trace_tree_items();
281 void hover_point_changed(const QPoint &hp);
283 void selection_changed();
285 /// Emitted when the offset changed.
286 void offset_changed();
288 /// Emitted when the scale changed.
289 void scale_changed();
291 void sticky_scrolling_changed(bool state);
293 void always_zoom_to_fit_changed(bool state);
295 /// Emitted when the tick_prefix changed.
296 void tick_prefix_changed();
298 /// Emitted when the tick_precision changed.
299 void tick_precision_changed();
301 /// Emitted when the tick_period changed.
302 void tick_period_changed();
304 /// Emitted when the time_unit changed.
305 void time_unit_changed();
307 /// Emitted when the currently selected segment changed
308 void segment_changed(int segment_id);
310 /// Emitted when the multi-segment display mode changed
311 void segment_display_mode_changed(bool segment_selectable);
314 void trigger_event(util::Timestamp location);
317 void get_scroll_layout(double &length, pv::util::Timestamp &offset) const;
320 * Simultaneously sets the zoom and offset.
321 * @param scale The scale to set the view to in seconds per pixel. This
322 * value is clamped between MinScale and MaxScale.
323 * @param offset The offset of the left edge of the view in seconds.
325 void set_zoom(double scale, int offset);
328 * Find a tick spacing and number formatting that does not cause
329 * the values to collide.
331 void calculate_tick_spacing();
333 void adjust_top_margin();
335 void update_scroll();
339 void set_scroll_default();
341 void determine_if_header_was_shrunk();
343 void resize_header_to_fit();
345 void update_layout();
347 TraceTreeItemOwner* find_prevalent_trace_group(
348 const shared_ptr<sigrok::ChannelGroup> &group,
349 const unordered_map<shared_ptr<data::SignalBase>,
350 shared_ptr<Signal> > &signal_map);
352 static vector< shared_ptr<Trace> >
353 extract_new_traces_for_channels(
354 const vector< shared_ptr<sigrok::Channel> > &channels,
355 const unordered_map<shared_ptr<data::SignalBase>,
356 shared_ptr<Signal> > &signal_map,
357 set< shared_ptr<Trace> > &add_list);
359 void determine_time_unit();
361 bool eventFilter(QObject *object, QEvent *event);
363 void resizeEvent(QResizeEvent *event);
365 void update_hover_point();
368 void row_item_appearance_changed(bool label, bool content);
369 void time_item_appearance_changed(bool label, bool content);
371 void extents_changed(bool horz, bool vert);
375 void on_signal_name_changed();
376 void on_splitter_moved();
378 void h_scroll_value_changed(int value);
379 void v_scroll_value_changed();
381 void signals_changed();
382 void capture_state_updated(int state);
384 void on_new_segment(int new_segment_id);
385 void on_segment_changed(int segment);
387 virtual void perform_delayed_view_update();
389 void process_sticky_events();
392 * Sets the 'offset_' member and emits the 'offset_changed'
395 void set_offset(const pv::util::Timestamp& offset);
398 * Sets the 'scale_' member and emits the 'scale_changed'
401 void set_scale(double scale);
404 * Sets the 'tick_prefix_' member and emits the 'tick_prefix_changed'
407 void set_tick_prefix(pv::util::SIPrefix tick_prefix);
410 * Sets the 'tick_precision_' member and emits the 'tick_precision_changed'
413 void set_tick_precision(unsigned tick_precision);
416 * Sets the 'tick_period_' member and emits the 'tick_period_changed'
419 void set_tick_period(const pv::util::Timestamp& tick_period);
422 * Sets the 'time_unit' member and emits the 'time_unit_changed'
425 void set_time_unit(pv::util::TimeUnit time_unit);
428 CustomScrollArea *scrollarea_;
432 QSplitter *splitter_;
434 unordered_set< shared_ptr<Signal> > signals_;
437 vector< shared_ptr<DecodeTrace> > decode_traces_;
440 /// The ID of the currently displayed segment
441 int current_segment_;
442 Trace::SegmentDisplayMode segment_display_mode_;
444 /// Signals whether the user can change the currently shown segment.
445 bool segment_selectable_;
447 /// The view time scale in seconds per pixel.
450 /// The view time offset in seconds.
451 pv::util::Timestamp offset_;
453 bool updating_scroll_;
454 bool settings_restored_;
455 bool header_was_shrunk_;
457 bool sticky_scrolling_;
459 bool always_zoom_to_fit_;
461 pv::util::Timestamp tick_period_;
462 pv::util::SIPrefix tick_prefix_;
463 unsigned int tick_precision_;
464 util::TimeUnit time_unit_;
467 shared_ptr<CursorPair> cursors_;
469 list< shared_ptr<Flag> > flags_;
470 char next_flag_text_;
472 vector< shared_ptr<TriggerMarker> > trigger_markers_;
476 unsigned int sticky_events_;
477 QTimer lazy_event_handler_;
479 // This is true when the defaults couldn't be set due to insufficient info
480 bool scroll_needs_defaults_;
482 // A nonzero value indicates the v offset to restore. See View::resizeEvent()
485 // These are used to determine whether the view was altered after acq started
486 double scale_at_acq_start_;
487 pv::util::Timestamp offset_at_acq_start_;
489 // Used to suppress performing a "zoom to fit" when the session stops. This
490 // is needed when the view's settings are restored before acquisition ends.
491 // In that case we want to keep the restored settings, not have a "zoom to fit"
493 bool suppress_zoom_to_fit_after_acq_;
500 #endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_VIEW_HPP