]> sigrok.org Git - pulseview.git/blame - pv/view/view.hpp
Fix #771 by using black with alpha instead of an opaque grey
[pulseview.git] / pv / view / 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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEW_VIEW_HPP
22#define PULSEVIEW_PV_VIEW_VIEW_HPP
adb4b10c
JH
23
24#include <stdint.h>
25
8914fe79 26#include <list>
f9abf97e 27#include <memory>
1bc6525b 28#include <set>
448a72cf 29#include <unordered_map>
38eeddea
JH
30#include <vector>
31
adb4b10c 32#include <QAbstractScrollArea>
2e04f9bd 33#include <QSizeF>
32218d3e 34#include <QTimer>
adb4b10c 35
2acdb232 36#include <pv/data/signaldata.hpp>
ef454ad5 37#include <pv/util.hpp>
1bc6525b 38
2acdb232 39#include "cursorpair.hpp"
8914fe79 40#include "flag.hpp"
af503b10 41#include "tracetreeitemowner.hpp"
f76af637 42
cf124e47
JH
43namespace sigrok {
44class ChannelGroup;
45}
46
51e77110
JH
47namespace pv {
48
2b81ae46 49class Session;
adb4b10c 50
cdf7bea7
JH
51namespace view {
52
84a0d458 53class CursorHeader;
1d8dca91 54class Header;
ccdd3ef5 55class Ruler;
cf124e47 56class Trace;
cdf7bea7 57class Viewport;
1a2288a1 58class TriggerMarker;
cdf7bea7 59
af503b10 60class View : public QAbstractScrollArea, public TraceTreeItemOwner {
adb4b10c
JH
61 Q_OBJECT
62
32218d3e
JH
63private:
64 enum StickyEvents {
af503b10
JH
65 TraceTreeItemHExtentsChanged = 1,
66 TraceTreeItemVExtentsChanged = 2
32218d3e
JH
67 };
68
adb4b10c 69private:
60d9b99a
JS
70 static const pv::util::Timestamp MaxScale;
71 static const pv::util::Timestamp MinScale;
adb4b10c 72
f25770e2 73 static const int MaxScrollValue;
c7b03d9d 74 static const int MaxViewAutoUpdateRate;
f25770e2 75
361c560e
JH
76 static const int ScaleUnits[3];
77
adb4b10c 78public:
2b81ae46 79 explicit View(Session &session, QWidget *parent = 0);
adb4b10c 80
2b81ae46
JH
81 Session& session();
82 const Session& session() const;
1d19ef83 83
eae6e30a
JH
84 /**
85 * Returns the view of the owner.
86 */
87 virtual pv::view::View* view();
88
89 /**
90 * Returns the view of the owner.
91 */
92 virtual const pv::view::View* view() const;
93
2ae445ba
SA
94 Viewport* viewport();
95
96 const Viewport* viewport() const;
97
2496bf45
JH
98 /**
99 * Gets a list of time markers.
100 */
101 std::vector< std::shared_ptr<TimeItem> > time_items() const;
102
e2f5223b
JH
103 /**
104 * Returns the view time scale in seconds per pixel.
105 */
adb4b10c 106 double scale() const;
e2f5223b
JH
107
108 /**
109 * Returns the time offset of the left edge of the view in
110 * seconds.
111 */
60d9b99a 112 const pv::util::Timestamp& offset() const;
f8400017
JH
113
114 /**
115 * Returns the vertical scroll offset.
116 */
7ff0145f 117 int owner_visual_v_offset() const;
adb4b10c 118
4d476647
JH
119 /**
120 * Sets the visual v-offset.
121 */
122 void set_v_offset(int offset);
123
361c560e
JH
124 /**
125 * Returns the SI prefix to apply to the graticule time markings.
126 */
d001f416 127 pv::util::SIPrefix tick_prefix() const;
361c560e 128
d40f4db7
SA
129 /**
130 * Returns the number of fractional digits shown for the time markings.
131 */
132 unsigned int tick_precision() const;
133
361c560e
JH
134 /**
135 * Returns period of the graticule time markings.
136 */
c677193d 137 const pv::util::Timestamp& tick_period() const;
361c560e 138
ef454ad5
SA
139 /**
140 * Returns the unit of time currently used.
141 */
142 util::TimeUnit time_unit() const;
143
3e769a37
JH
144 /**
145 * Returns the number of nested parents that this row item owner has.
146 */
147 unsigned int depth() const;
148
adb4b10c 149 void zoom(double steps);
17c0f398 150 void zoom(double steps, int offset);
adb4b10c 151
ce11b2ea 152 void zoom_fit(bool gui_state);
ca46b534 153
d1e7d82c
JH
154 void zoom_one_to_one();
155
e2f5223b
JH
156 /**
157 * Sets the scale and offset.
158 * @param scale The new view scale in seconds per pixel.
159 * @param offset The view time offset in seconds.
160 */
60d9b99a 161 void set_scale_offset(double scale, const pv::util::Timestamp& offset);
adb4b10c 162
f9abf97e 163 std::set< std::shared_ptr<pv::data::SignalData> >
1bc6525b
JH
164 get_visible_data() const;
165
60d9b99a 166 std::pair<pv::util::Timestamp, pv::util::Timestamp> get_time_extents() const;
1bc6525b 167
c7b03d9d
SA
168 /**
169 * Enables or disables sticky scrolling, i.e. the view always shows
170 * the most recent samples when capturing data.
171 */
172 void enable_sticky_scrolling(bool state);
173
574c568d
SA
174 /**
175 * Enables or disables coloured trace backgrounds. If they're not
176 * coloured then they will use alternating colors.
177 */
178 void enable_coloured_bg(bool state);
179
f76af637
JH
180 /**
181 * Returns true if cursors are displayed. false otherwise.
182 */
183 bool cursors_shown() const;
184
185 /**
186 * Shows or hides the cursors.
187 */
188 void show_cursors(bool show = true);
189
b4d91e56
JH
190 /**
191 * Moves the cursors to a convenient position in the view.
192 */
193 void centre_cursors();
194
f76af637
JH
195 /**
196 * Returns a reference to the pair of cursors.
197 */
5c5ce757 198 std::shared_ptr<CursorPair> cursors() const;
58864c5c 199
8914fe79
JH
200 /**
201 * Adds a new flag at a specified time.
202 */
60d9b99a 203 void add_flag(const pv::util::Timestamp& time);
8914fe79
JH
204
205 /**
206 * Removes a flag from the list.
207 */
208 void remove_flag(std::shared_ptr<Flag> flag);
209
210 /**
211 * Gets the list of flags.
212 */
213 std::vector< std::shared_ptr<Flag> > flags() const;
214
cbd80f64
JH
215 const QPoint& hover_point() const;
216
9cef9567 217 void update_viewport();
7ff0145f 218
af503b10 219 void restack_all_trace_tree_items();
9cef9567 220
e9213170 221Q_SIGNALS:
cbd80f64
JH
222 void hover_point_changed();
223
8b454527
JH
224 void selection_changed();
225
4b0af0b6
JS
226 /// Emitted when the offset changed.
227 void offset_changed();
228
229 /// Emitted when the scale changed.
230 void scale_changed();
e0fc5810 231
c7b03d9d
SA
232 void sticky_scrolling_changed(bool state);
233
ce11b2ea
SA
234 void always_zoom_to_fit_changed(bool state);
235
4b0af0b6
JS
236 /// Emitted when the tick_prefix changed.
237 void tick_prefix_changed();
238
239 /// Emitted when the tick_precision changed.
240 void tick_precision_changed();
241
242 /// Emitted when the tick_period changed.
243 void tick_period_changed();
244
245 /// Emitted when the time_unit changed.
246 void time_unit_changed();
247
48257a69
SA
248public Q_SLOTS:
249 void trigger_event(util::Timestamp location);
250
adb4b10c 251private:
60d9b99a 252 void get_scroll_layout(double &length, pv::util::Timestamp &offset) const;
3925091a
JH
253
254 /**
255 * Simultaneously sets the zoom and offset.
256 * @param scale The scale to set the view to in seconds per pixel. This
257 * value is clamped between MinScale and MaxScale.
258 * @param offset The offset of the left edge of the view in seconds.
259 */
d1e7d82c
JH
260 void set_zoom(double scale, int offset);
261
361c560e
JH
262 /**
263 * Find a tick spacing and number formatting that does not cause
264 * the values to collide.
265 */
266 void calculate_tick_spacing();
267
adb4b10c
JH
268 void update_scroll();
269
925763b0
SA
270 void reset_scroll();
271
272 void set_scroll_default();
273
d7c0ca4a
JH
274 void update_layout();
275
eae6e30a 276 /**
4ca23e7d 277 * Satisfies TraceTreeItem functionality.
eae6e30a 278 * @param p the QPainter to paint into.
b3f44329 279 * @param rect the rectangle of the header area.
eae6e30a
JH
280 * @param hover true if the label is being hovered over by the mouse.
281 */
b3f44329 282 void paint_label(QPainter &p, const QRect &rect, bool hover);
eae6e30a
JH
283
284 /**
285 * Computes the outline rectangle of a label.
b3f44329 286 * @param rect the rectangle of the header area.
eae6e30a
JH
287 * @return Returns the rectangle of the signal label.
288 */
b3f44329 289 QRectF label_rect(const QRectF &rect);
eae6e30a 290
af503b10 291 TraceTreeItemOwner* find_prevalent_trace_group(
cf124e47
JH
292 const std::shared_ptr<sigrok::ChannelGroup> &group,
293 const std::unordered_map<std::shared_ptr<sigrok::Channel>,
294 std::shared_ptr<Signal> > &signal_map);
295
296 static std::vector< std::shared_ptr<Trace> >
297 extract_new_traces_for_channels(
448a72cf 298 const std::vector< std::shared_ptr<sigrok::Channel> > &channels,
cf124e47 299 const std::unordered_map<std::shared_ptr<sigrok::Channel>,
448a72cf 300 std::shared_ptr<Signal> > &signal_map,
cf124e47 301 std::set< std::shared_ptr<Trace> > &add_list);
448a72cf 302
ef454ad5
SA
303 void determine_time_unit();
304
cbd80f64
JH
305 bool eventFilter(QObject *object, QEvent *event);
306
d9ea9628 307 bool viewportEvent(QEvent *event);
adb4b10c 308
d9ea9628 309 void resizeEvent(QResizeEvent *event);
adb4b10c 310
32218d3e 311public:
6e2c3c85 312 void row_item_appearance_changed(bool label, bool content);
98cfe4e8 313 void time_item_appearance_changed(bool label, bool content);
32218d3e
JH
314
315 void extents_changed(bool horz, bool vert);
316
e9213170 317private Q_SLOTS:
cbd80f64 318
b16907d3 319 void h_scroll_value_changed(int value);
f8400017 320 void v_scroll_value_changed();
adb4b10c 321
69dd2b03 322 void signals_changed();
7ee199a7 323 void capture_state_updated(int state);
adb4b10c
JH
324 void data_updated();
325
c7b03d9d
SA
326 void perform_delayed_view_update();
327
32218d3e 328 void process_sticky_events();
d7c0ca4a 329
33c62f44
JH
330 void on_hover_point_changed();
331
4b0af0b6
JS
332 /**
333 * Sets the 'offset_' member and emits the 'offset_changed'
334 * signal if needed.
335 */
336 void set_offset(const pv::util::Timestamp& offset);
337
338 /**
339 * Sets the 'scale_' member and emits the 'scale_changed'
340 * signal if needed.
341 */
342 void set_scale(double scale);
343
344 /**
345 * Sets the 'tick_prefix_' member and emits the 'tick_prefix_changed'
346 * signal if needed.
347 */
348 void set_tick_prefix(pv::util::SIPrefix tick_prefix);
349
350 /**
351 * Sets the 'tick_precision_' member and emits the 'tick_precision_changed'
352 * signal if needed.
353 */
354 void set_tick_precision(unsigned tick_precision);
355
356 /**
357 * Sets the 'tick_period_' member and emits the 'tick_period_changed'
358 * signal if needed.
359 */
c677193d 360 void set_tick_period(const pv::util::Timestamp& tick_period);
4b0af0b6
JS
361
362 /**
363 * Sets the 'time_unit' member and emits the 'time_unit_changed'
364 * signal if needed.
365 */
366 void set_time_unit(pv::util::TimeUnit time_unit);
367
adb4b10c 368private:
2b81ae46 369 Session &session_;
adb4b10c 370
8dbbc7f0
JH
371 Viewport *viewport_;
372 Ruler *ruler_;
8dbbc7f0 373 Header *header_;
adb4b10c 374
e2f5223b 375 /// The view time scale in seconds per pixel.
8dbbc7f0 376 double scale_;
e2f5223b
JH
377
378 /// The view time offset in seconds.
60d9b99a 379 pv::util::Timestamp offset_;
adb4b10c 380
8dbbc7f0 381 bool updating_scroll_;
c7b03d9d 382 bool sticky_scrolling_;
ce11b2ea 383 bool always_zoom_to_fit_;
c7b03d9d 384 QTimer delayed_view_updater_;
cbd80f64 385
c677193d 386 pv::util::Timestamp tick_period_;
d001f416 387 pv::util::SIPrefix tick_prefix_;
d40f4db7 388 unsigned int tick_precision_;
ef454ad5 389 util::TimeUnit time_unit_;
361c560e 390
8dbbc7f0 391 bool show_cursors_;
5c5ce757 392 std::shared_ptr<CursorPair> cursors_;
f76af637 393
8914fe79
JH
394 std::list< std::shared_ptr<Flag> > flags_;
395 char next_flag_text_;
396
92ff2b60 397 std::vector< std::shared_ptr<TriggerMarker> > trigger_markers_;
1a2288a1 398
8dbbc7f0 399 QPoint hover_point_;
32218d3e 400
8dbbc7f0
JH
401 unsigned int sticky_events_;
402 QTimer lazy_event_handler_;
925763b0
SA
403
404 // This is true when the defaults couldn't be set due to insufficient info
405 bool scroll_needs_defaults;
adb4b10c
JH
406};
407
cdf7bea7
JH
408} // namespace view
409} // namespace pv
410
7a01bd36 411#endif // PULSEVIEW_PV_VIEW_VIEW_HPP