]> sigrok.org Git - pulseview.git/blob - pv/view/viewport.cpp
Split signal painting into 3 layers
[pulseview.git] / pv / view / viewport.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 "view.h"
22 #include "viewport.h"
23
24 #include "signal.h"
25 #include "../sigsession.h"
26
27 #include <QMouseEvent>
28
29 #include <boost/foreach.hpp>
30
31 using namespace boost;
32 using namespace std;
33
34 namespace pv {
35 namespace view {
36
37 Viewport::Viewport(View &parent) :
38         QWidget(&parent),
39         _view(parent)
40 {
41         setMouseTracking(true);
42         setAutoFillBackground(true);
43         setBackgroundRole(QPalette::Base);
44
45         connect(&_view, SIGNAL(signals_moved()),
46                 this, SLOT(on_signals_moved()));
47 }
48
49 int Viewport::get_total_height() const
50 {
51         int h = 0;
52         const vector< shared_ptr<Trace> > traces(_view.get_traces());
53         BOOST_FOREACH(const shared_ptr<Trace> t, traces) {
54                 assert(t);
55                 h = max(t->get_v_offset() + View::SignalHeight, h);
56         }
57
58         return h;
59 }
60
61 void Viewport::paintEvent(QPaintEvent*)
62 {
63         const vector< shared_ptr<Trace> > traces(_view.get_traces());
64
65         QPainter p(this);
66         p.setRenderHint(QPainter::Antialiasing);
67
68         if (_view.cursors_shown())
69                 _view.cursors().draw_viewport_background(p, rect());
70
71         // Plot the signal
72         BOOST_FOREACH(const shared_ptr<Trace> t, traces)
73         {
74                 assert(t);
75                 t->paint_back(p, 0, width());
76         }
77
78         BOOST_FOREACH(const shared_ptr<Trace> t, traces)
79                 t->paint_mid(p, 0, width());
80
81         BOOST_FOREACH(const shared_ptr<Trace> t, traces)
82                 t->paint_fore(p, 0, width());
83
84         if (_view.cursors_shown())
85                 _view.cursors().draw_viewport_foreground(p, rect());
86
87         p.end();
88 }
89
90 void Viewport::mousePressEvent(QMouseEvent *event)
91 {
92         assert(event);
93
94         _mouse_down_point = event->pos();
95         _mouse_down_offset = _view.offset();
96 }
97
98 void Viewport::mouseMoveEvent(QMouseEvent *event)
99 {
100         assert(event);
101
102         if (event->buttons() & Qt::LeftButton)
103         {
104                 _view.set_scale_offset(_view.scale(),
105                         _mouse_down_offset +
106                         (_mouse_down_point - event->pos()).x() *
107                         _view.scale());
108         }
109 }
110
111 void Viewport::wheelEvent(QWheelEvent *event)
112 {
113         assert(event);
114
115         if (event->orientation() == Qt::Vertical) {
116                 // Vertical scrolling is interpreted as zooming in/out
117                 _view.zoom(event->delta() / 120, event->x());
118         } else if (event->orientation() == Qt::Horizontal) {
119                 // Horizontal scrolling is interpreted as moving left/right
120                 _view.set_scale_offset(_view.scale(),
121                                        event->delta() * _view.scale()
122                                        + _view.offset());
123         }
124 }
125
126 void Viewport::on_signals_moved()
127 {
128         update();
129 }
130
131 } // namespace view
132 } // namespace pv