]> sigrok.org Git - pulseview.git/blame - sigview.h
Add initial scrolling support with a QAbstractScrollArea
[pulseview.git] / sigview.h
CommitLineData
adb4b10c
JH
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
28class SigSession;
29class SigViewport;
30
31class SigView : public QAbstractScrollArea {
32 Q_OBJECT
33
34private:
35 static const double MaxScale;
36 static const double MinScale;
37
38 static const int LabelMarginWidth;
39 static const int RulerHeight;
40
41public:
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
52private:
53 void update_scroll();
54
55 void zoom(double steps, int offset);
56
57private:
58 bool viewportEvent(QEvent *e);
59
60 void resizeEvent(QResizeEvent *e);
61
62private slots:
63 void h_scroll_value_changed(int value);
64 void v_scroll_value_changed(int value);
65
66 void data_updated();
67
68private:
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