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