]> sigrok.org Git - pulseview.git/blame - pv/view/view.h
Added hover point to pv::view::View
[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
26#include <QAbstractScrollArea>
27
51e77110
JH
28namespace pv {
29
adb4b10c 30class SigSession;
adb4b10c 31
cdf7bea7
JH
32namespace view {
33
1d8dca91 34class Header;
ccdd3ef5 35class Ruler;
cdf7bea7
JH
36class Viewport;
37
38class View : public QAbstractScrollArea {
adb4b10c
JH
39 Q_OBJECT
40
41private:
42 static const double MaxScale;
43 static const double MinScale;
44
45 static const int LabelMarginWidth;
46 static const int RulerHeight;
47
f25770e2
JH
48 static const int MaxScrollValue;
49
1d8dca91
JH
50public:
51 static const int SignalHeight;
52
adb4b10c 53public:
cdf7bea7 54 explicit View(SigSession &session, QWidget *parent = 0);
adb4b10c 55
1d19ef83
JH
56 SigSession& session();
57
adb4b10c
JH
58 double scale() const;
59 double offset() const;
60 int v_offset() const;
61
62 void zoom(double steps);
17c0f398 63 void zoom(double steps, int offset);
adb4b10c
JH
64
65 void set_scale_offset(double scale, double offset);
66
cbd80f64
JH
67 const QPoint& hover_point() const;
68
69signals:
70 void hover_point_changed();
71
adb4b10c 72private:
f25770e2
JH
73 void get_scroll_layout(double &length, double &offset) const;
74
adb4b10c
JH
75 void update_scroll();
76
adb4b10c 77private:
cbd80f64
JH
78 bool eventFilter(QObject *object, QEvent *event);
79
adb4b10c
JH
80 bool viewportEvent(QEvent *e);
81
82 void resizeEvent(QResizeEvent *e);
83
84private slots:
cbd80f64 85
adb4b10c
JH
86 void h_scroll_value_changed(int value);
87 void v_scroll_value_changed(int value);
88
89 void data_updated();
90
91private:
92 SigSession &_session;
93
cdf7bea7 94 Viewport *_viewport;
ccdd3ef5 95 Ruler *_ruler;
1d8dca91 96 Header *_header;
adb4b10c
JH
97
98 uint64_t _data_length;
99
100 double _scale;
101 double _offset;
102
103 int _v_offset;
cbd80f64
JH
104
105 QPoint _hover_point;
adb4b10c
JH
106};
107
cdf7bea7
JH
108} // namespace view
109} // namespace pv
110
640d091b 111#endif // PULSEVIEW_PV_VIEW_VIEW_H