]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/view.h
Corrected signed/unsigned inconsistencies in Ruler::paintEvent
[pulseview.git] / pv / view / view.h
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
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
21#ifndef PV_VIEW_VIEW_H
22#define PV_VIEW_VIEW_H
23
24#include <stdint.h>
25
26#include <QAbstractScrollArea>
27
28namespace pv {
29
30class SigSession;
31
32namespace view {
33
34class Header;
35class Ruler;
36class Viewport;
37
38class View : public QAbstractScrollArea {
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
48 static const int MaxScrollValue;
49
50public:
51 static const int SignalHeight;
52
53public:
54 explicit View(SigSession &session, QWidget *parent = 0);
55
56 SigSession& session();
57
58 double scale() const;
59 double offset() const;
60 int v_offset() const;
61
62 void zoom(double steps);
63 void zoom(double steps, int offset);
64
65 void set_scale_offset(double scale, double offset);
66
67private:
68 void get_scroll_layout(double &length, double &offset) const;
69
70 void update_scroll();
71
72private:
73 bool viewportEvent(QEvent *e);
74
75 void resizeEvent(QResizeEvent *e);
76
77private slots:
78 void h_scroll_value_changed(int value);
79 void v_scroll_value_changed(int value);
80
81 void data_updated();
82
83private:
84 SigSession &_session;
85
86 Viewport *_viewport;
87 Ruler *_ruler;
88 Header *_header;
89
90 uint64_t _data_length;
91
92 double _scale;
93 double _offset;
94
95 int _v_offset;
96};
97
98} // namespace view
99} // namespace pv
100
101#endif // PV_VIEW_VIEW_H