]> sigrok.org Git - pulseview.git/blob - sigview.h
cc7b78af35fa410a4775907a4d7cb3b996996daa
[pulseview.git] / sigview.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 SIGVIEW_H
22 #define SIGVIEW_H
23
24 #include <stdint.h>
25
26 #include <QAbstractScrollArea>
27
28 class SigSession;
29 class SigViewport;
30
31 class SigView : public QAbstractScrollArea {
32         Q_OBJECT
33
34 private:
35         static const double MaxScale;
36         static const double MinScale;
37
38         static const int LabelMarginWidth;
39         static const int RulerHeight;
40
41 public:
42         explicit SigView(SigSession &session, QWidget *parent = 0);
43
44         double scale() const;
45         double offset() const;
46         int v_offset() const;
47
48         void zoom(double steps);
49
50         void set_scale_offset(double scale, double offset);
51
52 private:
53         void update_scroll();
54
55         void zoom(double steps, int offset);
56
57 private:
58         bool viewportEvent(QEvent *e);
59
60         void resizeEvent(QResizeEvent *e);
61
62 private slots:
63         void h_scroll_value_changed(int value);
64         void v_scroll_value_changed(int value);
65
66         void data_updated();
67
68 private:
69         SigSession &_session;
70
71         SigViewport *_viewport;
72
73         uint64_t _data_length;
74
75         double _scale;
76         double _offset;
77
78         int _v_offset;
79
80         friend class SigViewport;
81 };
82
83 #endif // SIGVIEW_H