]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
RowItemOwner: Added depth() method
[pulseview.git] / pv / view / view.h
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
f9abf97e 26#include <memory>
1bc6525b 27#include <set>
38eeddea
JH
28#include <vector>
29
adb4b10c 30#include <QAbstractScrollArea>
2e04f9bd 31#include <QSizeF>
32218d3e 32#include <QTimer>
adb4b10c 33
1bc6525b
JH
34#include <pv/data/signaldata.h>
35
b42d25c4 36#include "cursorpair.h"
eae6e30a 37#include "rowitemowner.h"
f76af637 38
51e77110
JH
39namespace pv {
40
adb4b10c 41class SigSession;
adb4b10c 42
cdf7bea7
JH
43namespace view {
44
84a0d458 45class CursorHeader;
1d8dca91 46class Header;
ccdd3ef5 47class Ruler;
cdf7bea7
JH
48class Viewport;
49
eae6e30a 50class View : public QAbstractScrollArea, public RowItemOwner {
adb4b10c
JH
51 Q_OBJECT
52
32218d3e
JH
53private:
54 enum StickyEvents {
55 SelectableItemHExtentsChanged = 1,
56 SelectableItemVExtentsChanged = 2
57 };
58
adb4b10c
JH
59private:
60 static const double MaxScale;
61 static const double MinScale;
62
f25770e2
JH
63 static const int MaxScrollValue;
64
1d8dca91 65public:
f76af637
JH
66 static const QColor CursorAreaColour;
67
2e04f9bd
JH
68 static const QSizeF LabelPadding;
69
adb4b10c 70public:
cdf7bea7 71 explicit View(SigSession &session, QWidget *parent = 0);
adb4b10c 72
1d19ef83 73 SigSession& session();
38eeddea 74 const SigSession& 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
e2f5223b
JH
90 /**
91 * Returns the view time scale in seconds per pixel.
92 */
adb4b10c 93 double scale() const;
e2f5223b
JH
94
95 /**
96 * Returns the time offset of the left edge of the view in
97 * seconds.
98 */
adb4b10c 99 double offset() const;
eae6e30a 100 int owner_v_offset() const;
adb4b10c 101
3e769a37
JH
102 /**
103 * Returns the number of nested parents that this row item owner has.
104 */
105 unsigned int depth() const;
106
adb4b10c 107 void zoom(double steps);
17c0f398 108 void zoom(double steps, int offset);
adb4b10c 109
ca46b534
JH
110 void zoom_fit();
111
d1e7d82c
JH
112 void zoom_one_to_one();
113
e2f5223b
JH
114 /**
115 * Sets the scale and offset.
116 * @param scale The new view scale in seconds per pixel.
117 * @param offset The view time offset in seconds.
118 */
adb4b10c
JH
119 void set_scale_offset(double scale, double offset);
120
f9abf97e 121 std::set< std::shared_ptr<pv::data::SignalData> >
1bc6525b
JH
122 get_visible_data() const;
123
124 std::pair<double, double> get_time_extents() const;
125
f76af637
JH
126 /**
127 * Returns true if cursors are displayed. false otherwise.
128 */
129 bool cursors_shown() const;
130
131 /**
132 * Shows or hides the cursors.
133 */
134 void show_cursors(bool show = true);
135
b4d91e56
JH
136 /**
137 * Moves the cursors to a convenient position in the view.
138 */
139 void centre_cursors();
140
f76af637
JH
141 /**
142 * Returns a reference to the pair of cursors.
143 */
b42d25c4 144 CursorPair& cursors();
f76af637 145
58864c5c
JH
146 /**
147 * Returns a reference to the pair of cursors.
148 */
149 const CursorPair& cursors() const;
150
cbd80f64
JH
151 const QPoint& hover_point() const;
152
9cef9567
JH
153 void update_viewport();
154
e9213170 155Q_SIGNALS:
cbd80f64
JH
156 void hover_point_changed();
157
07204819
JH
158 void signals_moved();
159
8b454527
JH
160 void selection_changed();
161
e0fc5810
JH
162 void scale_offset_changed();
163
adb4b10c 164private:
f25770e2 165 void get_scroll_layout(double &length, double &offset) const;
3925091a
JH
166
167 /**
168 * Simultaneously sets the zoom and offset.
169 * @param scale The scale to set the view to in seconds per pixel. This
170 * value is clamped between MinScale and MaxScale.
171 * @param offset The offset of the left edge of the view in seconds.
172 */
d1e7d82c
JH
173 void set_zoom(double scale, int offset);
174
adb4b10c
JH
175 void update_scroll();
176
d7c0ca4a
JH
177 void update_layout();
178
eae6e30a
JH
179 /**
180 * Satisifies RowItem functionality.
181 * @param p the QPainter to paint into.
182 * @param right the x-coordinate of the right edge of the header
183 * area.
184 * @param hover true if the label is being hovered over by the mouse.
185 */
186 void paint_label(QPainter &p, int right, bool hover);
187
188 /**
189 * Computes the outline rectangle of a label.
190 * @param right the x-coordinate of the right edge of the header
191 * area.
192 * @return Returns the rectangle of the signal label.
193 */
194 QRectF label_rect(int right);
195
adb4b10c 196private:
cbd80f64
JH
197 bool eventFilter(QObject *object, QEvent *event);
198
adb4b10c
JH
199 bool viewportEvent(QEvent *e);
200
201 void resizeEvent(QResizeEvent *e);
202
32218d3e
JH
203public:
204 void appearance_changed(bool label, bool content);
205
206 void extents_changed(bool horz, bool vert);
207
e9213170 208private Q_SLOTS:
cbd80f64 209
b16907d3 210 void h_scroll_value_changed(int value);
adb4b10c
JH
211 void v_scroll_value_changed(int value);
212
69dd2b03 213 void signals_changed();
adb4b10c
JH
214 void data_updated();
215
ca4ec3ea
JH
216 void marker_time_changed();
217
07204819 218 void on_signals_moved();
54401bbb 219
32218d3e 220 void process_sticky_events();
d7c0ca4a 221
33c62f44
JH
222 void on_hover_point_changed();
223
adb4b10c
JH
224private:
225 SigSession &_session;
226
cdf7bea7 227 Viewport *_viewport;
ccdd3ef5 228 Ruler *_ruler;
84a0d458 229 CursorHeader *_cursorheader;
1d8dca91 230 Header *_header;
adb4b10c 231
e2f5223b 232 /// The view time scale in seconds per pixel.
adb4b10c 233 double _scale;
e2f5223b
JH
234
235 /// The view time offset in seconds.
adb4b10c
JH
236 double _offset;
237
238 int _v_offset;
528bd8a1 239 bool _updating_scroll;
cbd80f64 240
f76af637 241 bool _show_cursors;
b42d25c4 242 CursorPair _cursors;
f76af637 243
cbd80f64 244 QPoint _hover_point;
32218d3e
JH
245
246 unsigned int _sticky_events;
247 QTimer _lazy_event_handler;
adb4b10c
JH
248};
249
cdf7bea7
JH
250} // namespace view
251} // namespace pv
252
640d091b 253#endif // PULSEVIEW_PV_VIEW_VIEW_H