2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
25 #include <boost/foreach.hpp>
28 #include <QMouseEvent>
37 #include "pv/sigsession.h"
38 #include "pv/data/logic.h"
39 #include "pv/data/logicsnapshot.h"
41 using namespace boost;
47 const double View::MaxScale = 1e9;
48 const double View::MinScale = 1e-15;
50 const int View::LabelMarginWidth = 70;
51 const int View::RulerHeight = 30;
53 const int View::MaxScrollValue = INT_MAX / 2;
55 const int View::SignalHeight = 30;
56 const int View::SignalMargin = 10;
57 const int View::SignalSnapGridSize = 10;
59 const QColor View::CursorAreaColour(220, 231, 243);
61 const QSizeF View::LabelPadding(4, 0);
63 View::View(SigSession &session, QWidget *parent) :
64 QAbstractScrollArea(parent),
66 _viewport(new Viewport(*this)),
67 _ruler(new Ruler(*this)),
68 _header(new Header(*this)),
74 _cursors(pair<Cursor, Cursor>(Cursor(*this, 0.0),
78 connect(horizontalScrollBar(), SIGNAL(sliderMoved(int)),
79 this, SLOT(h_scroll_moved(int)));
80 connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
81 this, SLOT(v_scroll_value_changed(int)));
83 connect(&_session, SIGNAL(signals_changed()),
84 this, SLOT(signals_changed()));
85 connect(&_session, SIGNAL(data_updated()),
86 this, SLOT(data_updated()));
88 connect(&_cursors.first, SIGNAL(time_changed()),
89 this, SLOT(marker_time_changed()));
90 connect(&_cursors.second, SIGNAL(time_changed()),
91 this, SLOT(marker_time_changed()));
93 connect(_header, SIGNAL(signals_moved()),
94 this, SLOT(on_signals_moved()));
96 setViewportMargins(LabelMarginWidth, RulerHeight, 0, 0);
97 setViewport(_viewport);
99 _viewport->installEventFilter(this);
100 _ruler->installEventFilter(this);
101 _header->installEventFilter(this);
104 SigSession& View::session()
109 double View::scale() const
114 double View::offset() const
119 int View::v_offset() const
124 void View::zoom(double steps)
126 zoom(steps, (width() - LabelMarginWidth) / 2);
129 void View::zoom(double steps, int offset)
131 const double cursor_offset = _offset + _scale * offset;
132 _scale *= pow(3.0/2.0, -steps);
133 _scale = max(min(_scale, MaxScale), MinScale);
134 _offset = cursor_offset - _scale * offset;
142 void View::set_scale_offset(double scale, double offset)
152 bool View::cursors_shown() const
154 return _show_cursors;
157 void View::show_cursors(bool show)
159 _show_cursors = show;
164 std::pair<Cursor, Cursor>& View::cursors()
169 const QPoint& View::hover_point() const
174 void View::normalize_layout()
176 const vector< shared_ptr<Signal> > sigs(_session.get_signals());
179 BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
180 v_min = min(s->get_v_offset(), v_min);
182 const int delta = -min(v_min, 0);
183 BOOST_FOREACH(shared_ptr<Signal> s, sigs)
184 s->set_v_offset(s->get_v_offset() + delta);
186 verticalScrollBar()->setSliderPosition(_v_offset + delta);
187 v_scroll_value_changed(verticalScrollBar()->sliderPosition());
190 void View::get_scroll_layout(double &length, double &offset) const
192 const shared_ptr<data::SignalData> sig_data = _session.get_data();
196 length = _data_length / (sig_data->get_samplerate() * _scale);
197 offset = _offset / _scale;
200 void View::update_scroll()
204 const QSize areaSize = _viewport->size();
206 // Set the horizontal scroll bar
207 double length = 0, offset = 0;
208 get_scroll_layout(length, offset);
209 length = max(length - areaSize.width(), 0.0);
211 horizontalScrollBar()->setPageStep(areaSize.width());
213 if (length < MaxScrollValue) {
214 horizontalScrollBar()->setRange(0, length);
215 horizontalScrollBar()->setSliderPosition(offset);
217 horizontalScrollBar()->setRange(0, MaxScrollValue);
218 horizontalScrollBar()->setSliderPosition(
219 _offset * MaxScrollValue / (_scale * length));
222 // Set the vertical scrollbar
223 verticalScrollBar()->setPageStep(areaSize.height());
224 verticalScrollBar()->setRange(0,
225 _viewport->get_total_height() + SignalMargin -
229 void View::reset_signal_layout()
231 int offset = SignalMargin + SignalHeight;
232 const vector< shared_ptr<Signal> > sigs(_session.get_signals());
233 BOOST_FOREACH(shared_ptr<Signal> s, sigs) {
234 s->set_v_offset(offset);
235 offset += SignalHeight + 2 * SignalMargin;
241 bool View::eventFilter(QObject *object, QEvent *event)
243 const QEvent::Type type = event->type();
244 if (type == QEvent::MouseMove) {
246 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
247 if (object == _viewport)
248 _hover_point = mouse_event->pos();
249 else if (object == _ruler)
250 _hover_point = QPoint(mouse_event->x(), 0);
251 else if (object == _header)
252 _hover_point = QPoint(0, mouse_event->y());
254 _hover_point = QPoint(-1, -1);
256 hover_point_changed();
258 } else if (type == QEvent::Leave) {
259 _hover_point = QPoint(-1, -1);
260 hover_point_changed();
263 return QObject::eventFilter(object, event);
266 bool View::viewportEvent(QEvent *e)
270 case QEvent::MouseButtonPress:
271 case QEvent::MouseButtonRelease:
272 case QEvent::MouseButtonDblClick:
273 case QEvent::MouseMove:
278 return QAbstractScrollArea::viewportEvent(e);
282 void View::resizeEvent(QResizeEvent*)
284 _ruler->setGeometry(_viewport->x(), 0,
285 _viewport->width(), _viewport->y());
286 _header->setGeometry(0, _viewport->y(),
287 _viewport->x(), _viewport->height());
291 void View::h_scroll_moved(int value)
293 const int range = horizontalScrollBar()->maximum();
294 if (range < MaxScrollValue)
295 _offset = _scale * value;
297 double length = 0, offset;
298 get_scroll_layout(length, offset);
299 _offset = _scale * length * value / MaxScrollValue;
306 void View::v_scroll_value_changed(int value)
313 void View::signals_changed()
315 reset_signal_layout();
318 void View::data_updated()
320 // Get the new data length
322 shared_ptr<data::Logic> sig_data = _session.get_data();
324 deque< shared_ptr<data::LogicSnapshot> > &snapshots =
325 sig_data->get_snapshots();
326 BOOST_FOREACH(shared_ptr<data::LogicSnapshot> s, snapshots)
328 _data_length = max(_data_length,
329 s->get_sample_count());
332 // Update the scroll bars
339 void View::marker_time_changed()
345 void View::on_signals_moved()