]> sigrok.org Git - pulseview.git/blame - pv/view/view.cpp
Moved view classes into the pv::view:: namespace
[pulseview.git] / pv / view / view.cpp
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#include <assert.h>
22#include <math.h>
23
24#include <boost/foreach.hpp>
25
26#include <QEvent>
27#include <QScrollBar>
28
cdf7bea7
JH
29#include "view.h"
30#include "viewport.h"
adb4b10c 31
cdf7bea7
JH
32#include "../../logicdata.h"
33#include "../../logicdatasnapshot.h"
34#include "../../sigsession.h"
adb4b10c
JH
35
36using namespace boost;
37using namespace std;
38
cdf7bea7
JH
39namespace pv {
40namespace view {
adb4b10c 41
cdf7bea7
JH
42const double View::MaxScale = 1e9;
43const double View::MinScale = 1e-15;
adb4b10c 44
cdf7bea7
JH
45const int View::LabelMarginWidth = 70;
46const int View::RulerHeight = 30;
47
48View::View(SigSession &session, QWidget *parent) :
adb4b10c
JH
49 QAbstractScrollArea(parent),
50 _session(session),
cdf7bea7 51 _viewport(new Viewport(*this)),
adb4b10c
JH
52 _data_length(0),
53 _scale(1e-6),
54 _offset(0),
55 _v_offset(0)
56{
57 connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
58 this, SLOT(h_scroll_value_changed(int)));
59 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
60 this, SLOT(v_scroll_value_changed(int)));
61 connect(&_session, SIGNAL(data_updated()),
62 this, SLOT(data_updated()));
63 setViewport(_viewport);
64}
65
cdf7bea7 66double View::scale() const
adb4b10c
JH
67{
68 return _scale;
69}
70
cdf7bea7 71double View::offset() const
adb4b10c
JH
72{
73 return _offset;
74}
75
cdf7bea7 76int View::v_offset() const
adb4b10c
JH
77{
78 return _v_offset;
79}
80
cdf7bea7 81void View::zoom(double steps)
adb4b10c
JH
82{
83 zoom(steps, (width() - LabelMarginWidth) / 2);
84}
85
cdf7bea7 86void View::set_scale_offset(double scale, double offset)
adb4b10c
JH
87{
88 _scale = scale;
89 _offset = offset;
90 update_scroll();
91 _viewport->update();
92}
93
cdf7bea7 94void View::update_scroll()
adb4b10c
JH
95{
96 assert(_viewport);
97
98 const QSize areaSize = _viewport->size();
99
100 // Set the horizontal scroll bar
101 double length = 0, offset = 0;
102 const shared_ptr<SignalData> sig_data = _session.get_data();
103 if(sig_data) {
104 length = _data_length /
105 (sig_data->get_samplerate() * _scale);
106 offset = _offset / _scale;
107 }
108
109 horizontalScrollBar()->setPageStep(areaSize.width());
110 horizontalScrollBar()->setRange(0,
111 max((int)(length - areaSize.width()), 0));
112 horizontalScrollBar()->setSliderPosition(offset);
113
114 // Set the vertical scrollbar
115 verticalScrollBar()->setPageStep(areaSize.height());
116 verticalScrollBar()->setRange(0,
117 _viewport->get_total_height() - areaSize.height());
118}
119
cdf7bea7 120void View::zoom(double steps, int offset)
adb4b10c
JH
121{
122 const double cursor_offset = _offset + _scale * offset;
123 _scale *= pow(3.0/2.0, -steps);
124 _scale = max(min(_scale, MaxScale), MinScale);
125 _offset = cursor_offset - _scale * offset;
126 _viewport->update();
127 update_scroll();
128}
129
cdf7bea7 130bool View::viewportEvent(QEvent *e)
adb4b10c
JH
131{
132 switch(e->type()) {
133 case QEvent::Paint:
134 case QEvent::MouseButtonPress:
135 case QEvent::MouseButtonRelease:
136 case QEvent::MouseButtonDblClick:
137 case QEvent::MouseMove:
138 case QEvent::Wheel:
139 return false;
140
141 default:
142 return QAbstractScrollArea::viewportEvent(e);
143 }
144}
145
cdf7bea7 146void View::resizeEvent(QResizeEvent *e)
adb4b10c
JH
147{
148 update_scroll();
149}
150
cdf7bea7 151void View::h_scroll_value_changed(int value)
adb4b10c
JH
152{
153 _offset = _scale * value;
154 _viewport->update();
155}
156
cdf7bea7 157void View::v_scroll_value_changed(int value)
adb4b10c
JH
158{
159 _v_offset = value;
160 _viewport->update();
161}
162
cdf7bea7 163void View::data_updated()
adb4b10c
JH
164{
165 // Get the new data length
166 _data_length = 0;
167 shared_ptr<LogicData> sig_data = _session.get_data();
168 if(sig_data) {
169 deque< shared_ptr<LogicDataSnapshot> > &snapshots =
170 sig_data->get_snapshots();
171 BOOST_FOREACH(shared_ptr<LogicDataSnapshot> s, snapshots)
172 if(s)
173 _data_length = max(_data_length,
174 s->get_sample_count());
175 }
176
177 // Update the scroll bars
178 update_scroll();
179
180 // Repaint the view
181 _viewport->update();
182}
cdf7bea7
JH
183
184} // namespace view
185} // namespace pv