]> sigrok.org Git - pulseview.git/blame - pv/view/view.hpp
CursorPair: Moved in ViewportFillColour
[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
640d091b
UH
21#ifndef PULSEVIEW_PV_VIEW_VIEW_H
22#define PULSEVIEW_PV_VIEW_VIEW_H
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>
1bc6525b 37
2acdb232 38#include "cursorpair.hpp"
8914fe79 39#include "flag.hpp"
2acdb232 40#include "rowitemowner.hpp"
f76af637 41
51e77110
JH
42namespace pv {
43
2b81ae46 44class Session;
adb4b10c 45
cdf7bea7
JH
46namespace view {
47
84a0d458 48class CursorHeader;
1d8dca91 49class Header;
ccdd3ef5 50class Ruler;
cdf7bea7
JH
51class Viewport;
52
eae6e30a 53class View : public QAbstractScrollArea, public RowItemOwner {
adb4b10c
JH
54 Q_OBJECT
55
32218d3e
JH
56private:
57 enum StickyEvents {
76fea660
JH
58 RowItemHExtentsChanged = 1,
59 RowItemVExtentsChanged = 2
32218d3e
JH
60 };
61
adb4b10c
JH
62private:
63 static const double MaxScale;
64 static const double MinScale;
65
f25770e2
JH
66 static const int MaxScrollValue;
67
361c560e
JH
68 static const int ScaleUnits[3];
69
1d8dca91 70public:
2e04f9bd
JH
71 static const QSizeF LabelPadding;
72
adb4b10c 73public:
2b81ae46 74 explicit View(Session &session, QWidget *parent = 0);
adb4b10c 75
2b81ae46
JH
76 Session& session();
77 const Session& session() const;
1d19ef83 78
eae6e30a
JH
79 /**
80 * Returns the view of the owner.
81 */
82 virtual pv::view::View* view();
83
84 /**
85 * Returns the view of the owner.
86 */
87 virtual const pv::view::View* view() const;
88
2ae445ba
SA
89 Viewport* viewport();
90
91 const Viewport* viewport() const;
92
2496bf45
JH
93 /**
94 * Gets a list of time markers.
95 */
96 std::vector< std::shared_ptr<TimeItem> > time_items() const;
97
e2f5223b
JH
98 /**
99 * Returns the view time scale in seconds per pixel.
100 */
adb4b10c 101 double scale() const;
e2f5223b
JH
102
103 /**
104 * Returns the time offset of the left edge of the view in
105 * seconds.
106 */
adb4b10c 107 double offset() const;
7ff0145f 108 int owner_visual_v_offset() const;
adb4b10c 109
361c560e
JH
110 /**
111 * Returns the SI prefix to apply to the graticule time markings.
112 */
113 unsigned int tick_prefix() const;
114
115 /**
116 * Returns period of the graticule time markings.
117 */
118 double tick_period() const;
119
3e769a37
JH
120 /**
121 * Returns the number of nested parents that this row item owner has.
122 */
123 unsigned int depth() const;
124
adb4b10c 125 void zoom(double steps);
17c0f398 126 void zoom(double steps, int offset);
adb4b10c 127
ca46b534
JH
128 void zoom_fit();
129
d1e7d82c
JH
130 void zoom_one_to_one();
131
e2f5223b
JH
132 /**
133 * Sets the scale and offset.
134 * @param scale The new view scale in seconds per pixel.
135 * @param offset The view time offset in seconds.
136 */
adb4b10c
JH
137 void set_scale_offset(double scale, double offset);
138
f9abf97e 139 std::set< std::shared_ptr<pv::data::SignalData> >
1bc6525b
JH
140 get_visible_data() const;
141
142 std::pair<double, double> get_time_extents() const;
143
f76af637
JH
144 /**
145 * Returns true if cursors are displayed. false otherwise.
146 */
147 bool cursors_shown() const;
148
149 /**
150 * Shows or hides the cursors.
151 */
152 void show_cursors(bool show = true);
153
b4d91e56
JH
154 /**
155 * Moves the cursors to a convenient position in the view.
156 */
157 void centre_cursors();
158
f76af637
JH
159 /**
160 * Returns a reference to the pair of cursors.
161 */
5c5ce757 162 std::shared_ptr<CursorPair> cursors() const;
58864c5c 163
8914fe79
JH
164 /**
165 * Adds a new flag at a specified time.
166 */
167 void add_flag(double time);
168
169 /**
170 * Removes a flag from the list.
171 */
172 void remove_flag(std::shared_ptr<Flag> flag);
173
174 /**
175 * Gets the list of flags.
176 */
177 std::vector< std::shared_ptr<Flag> > flags() const;
178
cbd80f64
JH
179 const QPoint& hover_point() const;
180
9cef9567 181 void update_viewport();
7ff0145f
JH
182
183 void restack_all_row_items();
9cef9567 184
e9213170 185Q_SIGNALS:
cbd80f64
JH
186 void hover_point_changed();
187
07204819
JH
188 void signals_moved();
189
8b454527
JH
190 void selection_changed();
191
e0fc5810
JH
192 void scale_offset_changed();
193
adb4b10c 194private:
f25770e2 195 void get_scroll_layout(double &length, double &offset) const;
3925091a
JH
196
197 /**
198 * Simultaneously sets the zoom and offset.
199 * @param scale The scale to set the view to in seconds per pixel. This
200 * value is clamped between MinScale and MaxScale.
201 * @param offset The offset of the left edge of the view in seconds.
202 */
d1e7d82c
JH
203 void set_zoom(double scale, int offset);
204
361c560e
JH
205 /**
206 * Find a tick spacing and number formatting that does not cause
207 * the values to collide.
208 */
209 void calculate_tick_spacing();
210
adb4b10c
JH
211 void update_scroll();
212
d7c0ca4a
JH
213 void update_layout();
214
eae6e30a
JH
215 /**
216 * Satisifies RowItem functionality.
217 * @param p the QPainter to paint into.
b3f44329 218 * @param rect the rectangle of the header area.
eae6e30a
JH
219 * @param hover true if the label is being hovered over by the mouse.
220 */
b3f44329 221 void paint_label(QPainter &p, const QRect &rect, bool hover);
eae6e30a
JH
222
223 /**
224 * Computes the outline rectangle of a label.
b3f44329 225 * @param rect the rectangle of the header area.
eae6e30a
JH
226 * @return Returns the rectangle of the signal label.
227 */
b3f44329 228 QRectF label_rect(const QRectF &rect);
eae6e30a 229
448a72cf
JH
230 static bool add_channels_to_owner(
231 const std::vector< std::shared_ptr<sigrok::Channel> > &channels,
232 RowItemOwner *owner, int &offset,
233 std::unordered_map<std::shared_ptr<sigrok::Channel>,
234 std::shared_ptr<Signal> > &signal_map,
235 std::function<bool (std::shared_ptr<RowItem>)> filter_func =
236 std::function<bool (std::shared_ptr<RowItem>)>());
237
238 static void apply_offset(
239 std::shared_ptr<RowItem> row_item, int &offset);
240
adb4b10c 241private:
cbd80f64
JH
242 bool eventFilter(QObject *object, QEvent *event);
243
adb4b10c
JH
244 bool viewportEvent(QEvent *e);
245
246 void resizeEvent(QResizeEvent *e);
247
32218d3e 248public:
6e2c3c85 249 void row_item_appearance_changed(bool label, bool content);
98cfe4e8 250 void time_item_appearance_changed(bool label, bool content);
32218d3e
JH
251
252 void extents_changed(bool horz, bool vert);
253
e9213170 254private Q_SLOTS:
cbd80f64 255
b16907d3 256 void h_scroll_value_changed(int value);
adb4b10c
JH
257 void v_scroll_value_changed(int value);
258
69dd2b03 259 void signals_changed();
adb4b10c
JH
260 void data_updated();
261
07204819 262 void on_signals_moved();
54401bbb 263
32218d3e 264 void process_sticky_events();
d7c0ca4a 265
33c62f44
JH
266 void on_hover_point_changed();
267
adb4b10c 268private:
2b81ae46 269 Session &session_;
adb4b10c 270
8dbbc7f0
JH
271 Viewport *viewport_;
272 Ruler *ruler_;
8dbbc7f0 273 Header *header_;
adb4b10c 274
e2f5223b 275 /// The view time scale in seconds per pixel.
8dbbc7f0 276 double scale_;
e2f5223b
JH
277
278 /// The view time offset in seconds.
8dbbc7f0 279 double offset_;
adb4b10c 280
8dbbc7f0
JH
281 int v_offset_;
282 bool updating_scroll_;
cbd80f64 283
361c560e
JH
284 double tick_period_;
285 unsigned int tick_prefix_;
286
8dbbc7f0 287 bool show_cursors_;
5c5ce757 288 std::shared_ptr<CursorPair> cursors_;
f76af637 289
8914fe79
JH
290 std::list< std::shared_ptr<Flag> > flags_;
291 char next_flag_text_;
292
8dbbc7f0 293 QPoint hover_point_;
32218d3e 294
8dbbc7f0
JH
295 unsigned int sticky_events_;
296 QTimer lazy_event_handler_;
adb4b10c
JH
297};
298
cdf7bea7
JH
299} // namespace view
300} // namespace pv
301
640d091b 302#endif // PULSEVIEW_PV_VIEW_VIEW_H