]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
TraceGroup: Implemented stacking
[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;
7ff0145f 100 int owner_visual_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 153 void update_viewport();
7ff0145f
JH
154
155 void restack_all_row_items();
9cef9567 156
e9213170 157Q_SIGNALS:
cbd80f64
JH
158 void hover_point_changed();
159
07204819
JH
160 void signals_moved();
161
8b454527
JH
162 void selection_changed();
163
e0fc5810
JH
164 void scale_offset_changed();
165
adb4b10c 166private:
f25770e2 167 void get_scroll_layout(double &length, double &offset) const;
3925091a
JH
168
169 /**
170 * Simultaneously sets the zoom and offset.
171 * @param scale The scale to set the view to in seconds per pixel. This
172 * value is clamped between MinScale and MaxScale.
173 * @param offset The offset of the left edge of the view in seconds.
174 */
d1e7d82c
JH
175 void set_zoom(double scale, int offset);
176
adb4b10c
JH
177 void update_scroll();
178
d7c0ca4a
JH
179 void update_layout();
180
eae6e30a
JH
181 /**
182 * Satisifies RowItem functionality.
183 * @param p the QPainter to paint into.
184 * @param right the x-coordinate of the right edge of the header
185 * area.
186 * @param hover true if the label is being hovered over by the mouse.
187 */
188 void paint_label(QPainter &p, int right, bool hover);
189
190 /**
191 * Computes the outline rectangle of a label.
192 * @param right the x-coordinate of the right edge of the header
193 * area.
194 * @return Returns the rectangle of the signal label.
195 */
196 QRectF label_rect(int right);
197
adb4b10c 198private:
cbd80f64
JH
199 bool eventFilter(QObject *object, QEvent *event);
200
adb4b10c
JH
201 bool viewportEvent(QEvent *e);
202
203 void resizeEvent(QResizeEvent *e);
204
32218d3e
JH
205public:
206 void appearance_changed(bool label, bool content);
207
208 void extents_changed(bool horz, bool vert);
209
e9213170 210private Q_SLOTS:
cbd80f64 211
b16907d3 212 void h_scroll_value_changed(int value);
adb4b10c
JH
213 void v_scroll_value_changed(int value);
214
69dd2b03 215 void signals_changed();
adb4b10c
JH
216 void data_updated();
217
ca4ec3ea
JH
218 void marker_time_changed();
219
07204819 220 void on_signals_moved();
54401bbb 221
32218d3e 222 void process_sticky_events();
d7c0ca4a 223
33c62f44
JH
224 void on_hover_point_changed();
225
adb4b10c
JH
226private:
227 SigSession &_session;
228
cdf7bea7 229 Viewport *_viewport;
ccdd3ef5 230 Ruler *_ruler;
84a0d458 231 CursorHeader *_cursorheader;
1d8dca91 232 Header *_header;
adb4b10c 233
e2f5223b 234 /// The view time scale in seconds per pixel.
adb4b10c 235 double _scale;
e2f5223b
JH
236
237 /// The view time offset in seconds.
adb4b10c
JH
238 double _offset;
239
240 int _v_offset;
528bd8a1 241 bool _updating_scroll;
cbd80f64 242
f76af637 243 bool _show_cursors;
b42d25c4 244 CursorPair _cursors;
f76af637 245
cbd80f64 246 QPoint _hover_point;
32218d3e
JH
247
248 unsigned int _sticky_events;
249 QTimer _lazy_event_handler;
adb4b10c
JH
250};
251
cdf7bea7
JH
252} // namespace view
253} // namespace pv
254
640d091b 255#endif // PULSEVIEW_PV_VIEW_VIEW_H