]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
Corrected project name in header comments
[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
cdf7bea7
JH
21#ifndef PV_VIEW_VIEW_H
22#define PV_VIEW_VIEW_H
adb4b10c
JH
23
24#include <stdint.h>
25
26#include <QAbstractScrollArea>
27
28class SigSession;
adb4b10c 29
cdf7bea7
JH
30namespace pv {
31namespace view {
32
1d8dca91 33class Header;
ccdd3ef5 34class Ruler;
cdf7bea7
JH
35class Viewport;
36
37class View : public QAbstractScrollArea {
adb4b10c
JH
38 Q_OBJECT
39
40private:
41 static const double MaxScale;
42 static const double MinScale;
43
44 static const int LabelMarginWidth;
45 static const int RulerHeight;
46
f25770e2
JH
47 static const int MaxScrollValue;
48
1d8dca91
JH
49public:
50 static const int SignalHeight;
51
adb4b10c 52public:
cdf7bea7 53 explicit View(SigSession &session, QWidget *parent = 0);
adb4b10c 54
1d19ef83
JH
55 SigSession& session();
56
adb4b10c
JH
57 double scale() const;
58 double offset() const;
59 int v_offset() const;
60
61 void zoom(double steps);
17c0f398 62 void zoom(double steps, int offset);
adb4b10c
JH
63
64 void set_scale_offset(double scale, double offset);
65
66private:
f25770e2
JH
67 void get_scroll_layout(double &length, double &offset) const;
68
adb4b10c
JH
69 void update_scroll();
70
adb4b10c
JH
71private:
72 bool viewportEvent(QEvent *e);
73
74 void resizeEvent(QResizeEvent *e);
75
76private slots:
77 void h_scroll_value_changed(int value);
78 void v_scroll_value_changed(int value);
79
80 void data_updated();
81
82private:
83 SigSession &_session;
84
cdf7bea7 85 Viewport *_viewport;
ccdd3ef5 86 Ruler *_ruler;
1d8dca91 87 Header *_header;
adb4b10c
JH
88
89 uint64_t _data_length;
90
91 double _scale;
92 double _offset;
93
94 int _v_offset;
adb4b10c
JH
95};
96
cdf7bea7
JH
97} // namespace view
98} // namespace pv
99
100#endif // PV_VIEW_VIEW_H