]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
Removed use of LabelMarginWidth
[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
38eeddea
JH
26#include <vector>
27
28#include <boost/shared_ptr.hpp>
94936133
JH
29#include <boost/weak_ptr.hpp>
30
adb4b10c 31#include <QAbstractScrollArea>
2e04f9bd 32#include <QSizeF>
adb4b10c 33
b42d25c4 34#include "cursorpair.h"
f76af637 35
51e77110
JH
36namespace pv {
37
adb4b10c 38class SigSession;
adb4b10c 39
cdf7bea7
JH
40namespace view {
41
1d8dca91 42class Header;
ccdd3ef5 43class Ruler;
38eeddea 44class Trace;
cdf7bea7
JH
45class Viewport;
46
47class View : public QAbstractScrollArea {
adb4b10c
JH
48 Q_OBJECT
49
50private:
51 static const double MaxScale;
52 static const double MinScale;
53
54 static const int LabelMarginWidth;
55 static const int RulerHeight;
56
f25770e2
JH
57 static const int MaxScrollValue;
58
1d8dca91
JH
59public:
60 static const int SignalHeight;
8d44d030 61 static const int SignalMargin;
49153683 62 static const int SignalSnapGridSize;
1d8dca91 63
f76af637
JH
64 static const QColor CursorAreaColour;
65
2e04f9bd
JH
66 static const QSizeF LabelPadding;
67
adb4b10c 68public:
cdf7bea7 69 explicit View(SigSession &session, QWidget *parent = 0);
adb4b10c 70
1d19ef83 71 SigSession& session();
38eeddea 72 const SigSession& session() const;
1d19ef83 73
e2f5223b
JH
74 /**
75 * Returns the view time scale in seconds per pixel.
76 */
adb4b10c 77 double scale() const;
e2f5223b
JH
78
79 /**
80 * Returns the time offset of the left edge of the view in
81 * seconds.
82 */
adb4b10c
JH
83 double offset() const;
84 int v_offset() const;
85
86 void zoom(double steps);
17c0f398 87 void zoom(double steps, int offset);
adb4b10c 88
ca46b534
JH
89 void zoom_fit();
90
d1e7d82c
JH
91 void zoom_one_to_one();
92
e2f5223b
JH
93 /**
94 * Sets the scale and offset.
95 * @param scale The new view scale in seconds per pixel.
96 * @param offset The view time offset in seconds.
97 */
adb4b10c
JH
98 void set_scale_offset(double scale, double offset);
99
38eeddea
JH
100 std::vector< boost::shared_ptr<Trace> > get_traces() const;
101
94936133
JH
102 std::list<boost::weak_ptr<SelectableItem> > selected_items() const;
103
f76af637
JH
104 /**
105 * Returns true if cursors are displayed. false otherwise.
106 */
107 bool cursors_shown() const;
108
109 /**
110 * Shows or hides the cursors.
111 */
112 void show_cursors(bool show = true);
113
b4d91e56
JH
114 /**
115 * Moves the cursors to a convenient position in the view.
116 */
117 void centre_cursors();
118
f76af637
JH
119 /**
120 * Returns a reference to the pair of cursors.
121 */
b42d25c4 122 CursorPair& cursors();
f76af637 123
58864c5c
JH
124 /**
125 * Returns a reference to the pair of cursors.
126 */
127 const CursorPair& cursors() const;
128
cbd80f64
JH
129 const QPoint& hover_point() const;
130
4b192962
JH
131 void normalize_layout();
132
9cef9567
JH
133 void update_viewport();
134
cbd80f64
JH
135signals:
136 void hover_point_changed();
137
07204819
JH
138 void signals_moved();
139
8b454527
JH
140 void selection_changed();
141
e0fc5810
JH
142 void scale_offset_changed();
143
adb4b10c 144private:
f25770e2
JH
145 void get_scroll_layout(double &length, double &offset) const;
146
d1e7d82c
JH
147 void set_zoom(double scale, int offset);
148
adb4b10c
JH
149 void update_scroll();
150
38eeddea
JH
151 static bool compare_trace_v_offsets(
152 const boost::shared_ptr<pv::view::Trace> &a,
153 const boost::shared_ptr<pv::view::Trace> &b);
154
adb4b10c 155private:
cbd80f64
JH
156 bool eventFilter(QObject *object, QEvent *event);
157
adb4b10c
JH
158 bool viewportEvent(QEvent *e);
159
160 void resizeEvent(QResizeEvent *e);
161
162private slots:
cbd80f64 163
b16907d3 164 void h_scroll_value_changed(int value);
adb4b10c
JH
165 void v_scroll_value_changed(int value);
166
69dd2b03 167 void signals_changed();
adb4b10c
JH
168 void data_updated();
169
ca4ec3ea
JH
170 void marker_time_changed();
171
07204819 172 void on_signals_moved();
54401bbb 173
adb4b10c
JH
174private:
175 SigSession &_session;
176
cdf7bea7 177 Viewport *_viewport;
ccdd3ef5 178 Ruler *_ruler;
1d8dca91 179 Header *_header;
adb4b10c
JH
180
181 uint64_t _data_length;
182
e2f5223b 183 /// The view time scale in seconds per pixel.
adb4b10c 184 double _scale;
e2f5223b
JH
185
186 /// The view time offset in seconds.
adb4b10c
JH
187 double _offset;
188
189 int _v_offset;
528bd8a1 190 bool _updating_scroll;
cbd80f64 191
f76af637 192 bool _show_cursors;
b42d25c4 193 CursorPair _cursors;
f76af637 194
cbd80f64 195 QPoint _hover_point;
adb4b10c
JH
196};
197
cdf7bea7
JH
198} // namespace view
199} // namespace pv
200
640d091b 201#endif // PULSEVIEW_PV_VIEW_VIEW_H