]> sigrok.org Git - pulseview.git/blob - pv/view/view.cpp
Bring the cursors into view when they are shown
[pulseview.git] / pv / view / view.cpp
1 /*
2  * This file is part of the PulseView 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 <limits.h>
23 #include <math.h>
24
25 #include <boost/foreach.hpp>
26
27 #include <QEvent>
28 #include <QMouseEvent>
29 #include <QScrollBar>
30
31 #include "header.h"
32 #include "ruler.h"
33 #include "signal.h"
34 #include "view.h"
35 #include "viewport.h"
36
37 #include "pv/sigsession.h"
38 #include "pv/data/logic.h"
39 #include "pv/data/logicsnapshot.h"
40
41 using namespace boost;
42 using namespace std;
43
44 namespace pv {
45 namespace view {
46
47 const double View::MaxScale = 1e9;
48 const double View::MinScale = 1e-15;
49
50 const int View::LabelMarginWidth = 70;
51 const int View::RulerHeight = 30;
52
53 const int View::MaxScrollValue = INT_MAX / 2;
54
55 const int View::SignalHeight = 30;
56 const int View::SignalMargin = 10;
57 const int View::SignalSnapGridSize = 10;
58
59 const QColor View::CursorAreaColour(220, 231, 243);
60
61 const QSizeF View::LabelPadding(4, 0);
62
63 View::View(SigSession &session, QWidget *parent) :
64         QAbstractScrollArea(parent),
65         _session(session),
66         _viewport(new Viewport(*this)),
67         _ruler(new Ruler(*this)),
68         _header(new Header(*this)),
69         _data_length(0),
70         _scale(1e-6),
71         _offset(0),
72         _v_offset(0),
73         _updating_scroll(false),
74         _show_cursors(false),
75         _cursors(*this),
76         _hover_point(-1, -1)
77 {
78         connect(horizontalScrollBar(), SIGNAL(valueChanged(int)),
79                 this, SLOT(h_scroll_value_changed(int)));
80         connect(verticalScrollBar(), SIGNAL(valueChanged(int)),
81                 this, SLOT(v_scroll_value_changed(int)));
82
83         connect(&_session, SIGNAL(signals_changed()),
84                 this, SLOT(signals_changed()));
85         connect(&_session, SIGNAL(data_updated()),
86                 this, SLOT(data_updated()));
87
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()));
92
93         connect(_header, SIGNAL(signals_moved()),
94                 this, SLOT(on_signals_moved()));
95
96         setViewportMargins(LabelMarginWidth, RulerHeight, 0, 0);
97         setViewport(_viewport);
98
99         _viewport->installEventFilter(this);
100         _ruler->installEventFilter(this);
101         _header->installEventFilter(this);
102 }
103
104 SigSession& View::session()
105 {
106         return _session;
107 }
108
109 double View::scale() const
110 {
111         return _scale;
112 }
113
114 double View::offset() const
115 {
116         return _offset;
117 }
118
119 int View::v_offset() const
120 {
121         return _v_offset;
122 }
123
124 void View::zoom(double steps)
125 {
126         zoom(steps, (width() - LabelMarginWidth) / 2);
127 }
128
129 void View::zoom(double steps, int offset)
130 {
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;
135
136         _ruler->update();
137         _viewport->update();
138         update_scroll();
139 }
140
141
142 void View::set_scale_offset(double scale, double offset)
143 {
144         _scale = scale;
145         _offset = offset;
146
147         update_scroll();
148         _ruler->update();
149         _viewport->update();
150 }
151
152 bool View::cursors_shown() const
153 {
154         return _show_cursors;
155 }
156
157 void View::show_cursors(bool show)
158 {
159         _show_cursors = show;
160         _ruler->update();
161         _viewport->update();
162 }
163
164 void View::centre_cursors()
165 {
166         const double time_width = _scale * _viewport->width();
167         _cursors.first().set_time(_offset + time_width * 0.4);
168         _cursors.second().set_time(_offset + time_width * 0.6);
169         _ruler->update();
170         _viewport->update();
171 }
172
173 CursorPair& View::cursors()
174 {
175         return _cursors;
176 }
177
178 const QPoint& View::hover_point() const
179 {
180         return _hover_point;
181 }
182
183 void View::normalize_layout()
184 {
185         const vector< shared_ptr<Signal> > sigs(_session.get_signals());
186
187         int v_min = INT_MAX;
188         BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
189                 v_min = min(s->get_v_offset(), v_min);
190
191         const int delta = -min(v_min, 0);
192         BOOST_FOREACH(shared_ptr<Signal> s, sigs)
193                 s->set_v_offset(s->get_v_offset() + delta);
194
195         verticalScrollBar()->setSliderPosition(_v_offset + delta);
196         v_scroll_value_changed(verticalScrollBar()->sliderPosition());
197 }
198
199 void View::get_scroll_layout(double &length, double &offset) const
200 {
201         const shared_ptr<data::SignalData> sig_data = _session.get_data();
202         if (!sig_data)
203                 return;
204
205         length = _data_length / (sig_data->get_samplerate() * _scale);
206         offset = _offset / _scale;
207 }
208
209 void View::update_scroll()
210 {
211         assert(_viewport);
212
213         const QSize areaSize = _viewport->size();
214
215         // Set the horizontal scroll bar
216         double length = 0, offset = 0;
217         get_scroll_layout(length, offset);
218         length = max(length - areaSize.width(), 0.0);
219
220         horizontalScrollBar()->setPageStep(areaSize.width() / 2);
221
222         _updating_scroll = true;
223
224         if (length < MaxScrollValue) {
225                 horizontalScrollBar()->setRange(0, length);
226                 horizontalScrollBar()->setSliderPosition(offset);
227         } else {
228                 horizontalScrollBar()->setRange(0, MaxScrollValue);
229                 horizontalScrollBar()->setSliderPosition(
230                         _offset * MaxScrollValue / (_scale * length));
231         }
232
233         _updating_scroll = false;
234
235         // Set the vertical scrollbar
236         verticalScrollBar()->setPageStep(areaSize.height());
237         verticalScrollBar()->setRange(0,
238                 _viewport->get_total_height() + SignalMargin -
239                 areaSize.height());
240 }
241
242 void View::reset_signal_layout()
243 {
244         int offset = SignalMargin + SignalHeight;
245         const vector< shared_ptr<Signal> > sigs(_session.get_signals());
246         BOOST_FOREACH(shared_ptr<Signal> s, sigs) {
247                 s->set_v_offset(offset);
248                 offset += SignalHeight + 2 * SignalMargin;
249         }
250
251         normalize_layout();
252 }
253
254 bool View::eventFilter(QObject *object, QEvent *event)
255 {
256         const QEvent::Type type = event->type();
257         if (type == QEvent::MouseMove) {
258
259                 const QMouseEvent *const mouse_event = (QMouseEvent*)event;
260                 if (object == _viewport)
261                         _hover_point = mouse_event->pos();
262                 else if (object == _ruler)
263                         _hover_point = QPoint(mouse_event->x(), 0);
264                 else if (object == _header)
265                         _hover_point = QPoint(0, mouse_event->y());
266                 else
267                         _hover_point = QPoint(-1, -1);
268
269                 hover_point_changed();
270
271         } else if (type == QEvent::Leave) {
272                 _hover_point = QPoint(-1, -1);
273                 hover_point_changed();
274         }
275
276         return QObject::eventFilter(object, event);
277 }
278
279 bool View::viewportEvent(QEvent *e)
280 {
281         switch(e->type()) {
282         case QEvent::Paint:
283         case QEvent::MouseButtonPress:
284         case QEvent::MouseButtonRelease:
285         case QEvent::MouseButtonDblClick:
286         case QEvent::MouseMove:
287         case QEvent::Wheel:
288                 return false;
289
290         default:
291                 return QAbstractScrollArea::viewportEvent(e);
292         }
293 }
294
295 void View::resizeEvent(QResizeEvent*)
296 {
297         _ruler->setGeometry(_viewport->x(), 0,
298                 _viewport->width(), _viewport->y());
299         _header->setGeometry(0, _viewport->y(),
300                 _viewport->x(), _viewport->height());
301         update_scroll();
302 }
303
304 void View::h_scroll_value_changed(int value)
305 {
306         if (_updating_scroll)
307                 return;
308
309         const int range = horizontalScrollBar()->maximum();
310         if (range < MaxScrollValue)
311                 _offset = _scale * value;
312         else {
313                 double length = 0, offset;
314                 get_scroll_layout(length, offset);
315                 _offset = _scale * length * value / MaxScrollValue;
316         }
317
318         _ruler->update();
319         _viewport->update();
320 }
321
322 void View::v_scroll_value_changed(int value)
323 {
324         _v_offset = value;
325         _header->update();
326         _viewport->update();
327 }
328
329 void View::signals_changed()
330 {
331         reset_signal_layout();
332 }
333
334 void View::data_updated()
335 {
336         // Get the new data length
337         _data_length = 0;
338         shared_ptr<data::Logic> sig_data = _session.get_data();
339         if (sig_data) {
340                 deque< shared_ptr<data::LogicSnapshot> > &snapshots =
341                         sig_data->get_snapshots();
342                 BOOST_FOREACH(shared_ptr<data::LogicSnapshot> s, snapshots)
343                         if (s)
344                                 _data_length = max(_data_length,
345                                         s->get_sample_count());
346         }
347
348         // Update the scroll bars
349         update_scroll();
350
351         // Repaint the view
352         _viewport->update();
353 }
354
355 void View::marker_time_changed()
356 {
357         _ruler->update();
358         _viewport->update();
359 }
360
361 void View::on_signals_moved()
362 {
363         update_scroll();
364         signals_moved();
365 }
366
367 } // namespace view
368 } // namespace pv