]> sigrok.org Git - pulseview.git/blob - pv/view/viewport.cpp
Render ruler and signals with sub-pixel accuracy
[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 "../sigsession.h"
25 #include "../signal.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
46 int Viewport::get_total_height() const
47 {
48         int height = 0;
49         BOOST_FOREACH(const shared_ptr<Signal> s,
50                 _view.session().get_signals()) {
51                 assert(s);
52                 height += View::SignalHeight;
53         }
54
55         return height;
56 }
57
58 void Viewport::paintEvent(QPaintEvent *event)
59 {
60         const vector< shared_ptr<Signal> > &sigs =
61                 _view.session().get_signals();
62
63         QPainter p(this);
64         p.setRenderHint(QPainter::Antialiasing);
65
66         // Plot the signal
67         int offset = -_view.v_offset();
68         BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
69         {
70                 assert(s);
71
72                 const QRect signal_rect(0, offset,
73                         width(), View::SignalHeight);
74
75                 s->paint(p, signal_rect, _view.scale(), _view.offset());
76
77                 offset += View::SignalHeight;
78         }
79
80         p.end();
81 }
82
83 void Viewport::mousePressEvent(QMouseEvent *event)
84 {
85         assert(event);
86
87         _mouse_down_point = event->pos();
88         _mouse_down_offset = _view.offset();
89 }
90
91 void Viewport::mouseMoveEvent(QMouseEvent *event)
92 {
93         assert(event);
94
95         if(event->buttons() & Qt::LeftButton)
96         {
97                 _view.set_scale_offset(_view.scale(),
98                         _mouse_down_offset +
99                         (_mouse_down_point - event->pos()).x() *
100                         _view.scale());
101         }
102 }
103
104 void Viewport::mouseReleaseEvent(QMouseEvent *event)
105 {
106         assert(event);
107 }
108
109 void Viewport::wheelEvent(QWheelEvent *event)
110 {
111         assert(event);
112         _view.zoom(event->delta() / 120, event->x());
113 }
114
115 } // namespace view
116 } // namespace pv