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