]> sigrok.org Git - pulseview.git/blob - pv/view/view.h
Exposed View::_session with accessor function
[pulseview.git] / pv / view / view.h
1 /*
2  * This file is part of the sigrok 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
28 class SigSession;
29
30 namespace pv {
31 namespace view {
32
33 class Viewport;
34
35 class View : public QAbstractScrollArea {
36         Q_OBJECT
37
38 private:
39         static const double MaxScale;
40         static const double MinScale;
41
42         static const int LabelMarginWidth;
43         static const int RulerHeight;
44
45 public:
46         explicit View(SigSession &session, QWidget *parent = 0);
47
48         SigSession& session();
49
50         double scale() const;
51         double offset() const;
52         int v_offset() const;
53
54         void zoom(double steps);
55
56         void set_scale_offset(double scale, double offset);
57
58 private:
59         void update_scroll();
60
61         void zoom(double steps, int offset);
62
63 private:
64         bool viewportEvent(QEvent *e);
65
66         void resizeEvent(QResizeEvent *e);
67
68 private slots:
69         void h_scroll_value_changed(int value);
70         void v_scroll_value_changed(int value);
71
72         void data_updated();
73
74 private:
75         SigSession &_session;
76
77         Viewport *_viewport;
78
79         uint64_t _data_length;
80
81         double _scale;
82         double _offset;
83
84         int _v_offset;
85
86         friend class Viewport;
87 };
88
89 } // namespace view
90 } // namespace pv
91
92 #endif // PV_VIEW_VIEW_H