]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
Added snap to grid drag behaviour
[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
f76af637
JH
26#include <utility>
27
adb4b10c 28#include <QAbstractScrollArea>
2e04f9bd 29#include <QSizeF>
adb4b10c 30
f76af637
JH
31#include "cursor.h"
32
51e77110
JH
33namespace pv {
34
adb4b10c 35class SigSession;
adb4b10c 36
cdf7bea7
JH
37namespace view {
38
1d8dca91 39class Header;
ccdd3ef5 40class Ruler;
cdf7bea7
JH
41class Viewport;
42
43class View : public QAbstractScrollArea {
adb4b10c
JH
44 Q_OBJECT
45
46private:
47 static const double MaxScale;
48 static const double MinScale;
49
50 static const int LabelMarginWidth;
51 static const int RulerHeight;
52
f25770e2
JH
53 static const int MaxScrollValue;
54
1d8dca91
JH
55public:
56 static const int SignalHeight;
49153683 57 static const int SignalSnapGridSize;
1d8dca91 58
f76af637
JH
59 static const QColor CursorAreaColour;
60
2e04f9bd
JH
61 static const QSizeF LabelPadding;
62
adb4b10c 63public:
cdf7bea7 64 explicit View(SigSession &session, QWidget *parent = 0);
adb4b10c 65
1d19ef83
JH
66 SigSession& session();
67
e2f5223b
JH
68 /**
69 * Returns the view time scale in seconds per pixel.
70 */
adb4b10c 71 double scale() const;
e2f5223b
JH
72
73 /**
74 * Returns the time offset of the left edge of the view in
75 * seconds.
76 */
adb4b10c
JH
77 double offset() const;
78 int v_offset() const;
79
80 void zoom(double steps);
17c0f398 81 void zoom(double steps, int offset);
adb4b10c 82
e2f5223b
JH
83 /**
84 * Sets the scale and offset.
85 * @param scale The new view scale in seconds per pixel.
86 * @param offset The view time offset in seconds.
87 */
adb4b10c
JH
88 void set_scale_offset(double scale, double offset);
89
f76af637
JH
90 /**
91 * Returns true if cursors are displayed. false otherwise.
92 */
93 bool cursors_shown() const;
94
95 /**
96 * Shows or hides the cursors.
97 */
98 void show_cursors(bool show = true);
99
100 /**
101 * Returns a reference to the pair of cursors.
102 */
103 std::pair<Cursor, Cursor>& cursors();
104
cbd80f64
JH
105 const QPoint& hover_point() const;
106
107signals:
108 void hover_point_changed();
109
adb4b10c 110private:
f25770e2
JH
111 void get_scroll_layout(double &length, double &offset) const;
112
adb4b10c
JH
113 void update_scroll();
114
2e575351
JH
115 void reset_signal_layout();
116
adb4b10c 117private:
cbd80f64
JH
118 bool eventFilter(QObject *object, QEvent *event);
119
adb4b10c
JH
120 bool viewportEvent(QEvent *e);
121
122 void resizeEvent(QResizeEvent *e);
123
124private slots:
cbd80f64 125
adb4b10c
JH
126 void h_scroll_value_changed(int value);
127 void v_scroll_value_changed(int value);
128
129 void data_updated();
130
ca4ec3ea
JH
131 void marker_time_changed();
132
54401bbb
JH
133 void signals_moved();
134
adb4b10c
JH
135private:
136 SigSession &_session;
137
cdf7bea7 138 Viewport *_viewport;
ccdd3ef5 139 Ruler *_ruler;
1d8dca91 140 Header *_header;
adb4b10c
JH
141
142 uint64_t _data_length;
143
e2f5223b 144 /// The view time scale in seconds per pixel.
adb4b10c 145 double _scale;
e2f5223b
JH
146
147 /// The view time offset in seconds.
adb4b10c
JH
148 double _offset;
149
150 int _v_offset;
cbd80f64 151
f76af637
JH
152 bool _show_cursors;
153 std::pair<Cursor, Cursor> _cursors;
154
cbd80f64 155 QPoint _hover_point;
adb4b10c
JH
156};
157
cdf7bea7
JH
158} // namespace view
159} // namespace pv
160
640d091b 161#endif // PULSEVIEW_PV_VIEW_VIEW_H