]> sigrok.org Git - pulseview.git/blame - pv/view/viewport.cpp
Moved forward declaration of SignalData to correct namespace
[pulseview.git] / pv / view / viewport.cpp
CommitLineData
6fa02541 1/*
b3f22de0 2 * This file is part of the PulseView project.
6fa02541
JH
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
cdf7bea7
JH
21#include "view.h"
22#include "viewport.h"
6fa02541 23
8d634081 24#include "signal.h"
51e77110 25#include "../sigsession.h"
e3f65ace 26
7cd5faf8 27#include <QMouseEvent>
e9c41f8c 28
e3f65ace
JH
29#include <boost/foreach.hpp>
30
31using namespace boost;
32using namespace std;
33
cdf7bea7
JH
34namespace pv {
35namespace view {
e9c41f8c 36
cdf7bea7 37Viewport::Viewport(View &parent) :
64b60583 38 QWidget(&parent),
adb4b10c 39 _view(parent)
6fa02541 40{
d7002724 41 setMouseTracking(true);
64b60583
JH
42 setAutoFillBackground(true);
43 setBackgroundRole(QPalette::Base);
d7002724
JH
44}
45
cdf7bea7 46int Viewport::get_total_height() const
a429590b 47{
adb4b10c
JH
48 int height = 0;
49 BOOST_FOREACH(const shared_ptr<Signal> s,
1d19ef83 50 _view.session().get_signals()) {
adb4b10c 51 assert(s);
1d8dca91 52 height += View::SignalHeight;
adb4b10c
JH
53 }
54
55 return height;
a429590b
JH
56}
57
cdf7bea7 58void Viewport::paintEvent(QPaintEvent *event)
d7002724 59{
e3f65ace 60 const vector< shared_ptr<Signal> > &sigs =
1d19ef83 61 _view.session().get_signals();
3e46726a 62
64b60583 63 QPainter p(this);
ce6e73a8 64 p.setRenderHint(QPainter::Antialiasing);
3e46726a 65
f76af637
JH
66 draw_cursors_background(p);
67
3e46726a 68 // Plot the signal
64b60583 69 int offset = -_view.v_offset();
3e46726a
JH
70 BOOST_FOREACH(const shared_ptr<Signal> s, sigs)
71 {
72 assert(s);
73
1d8dca91
JH
74 const QRect signal_rect(0, offset,
75 width(), View::SignalHeight);
3e46726a 76
64b60583 77 s->paint(p, signal_rect, _view.scale(), _view.offset());
3e46726a 78
1d8dca91 79 offset += View::SignalHeight;
3e46726a
JH
80 }
81
f76af637
JH
82 draw_cursors_foreground(p);
83
64b60583 84 p.end();
6fa02541 85}
009e1503 86
cdf7bea7 87void Viewport::mousePressEvent(QMouseEvent *event)
7cd5faf8
JH
88{
89 assert(event);
1dd95c70
JH
90
91 _mouse_down_point = event->pos();
adb4b10c 92 _mouse_down_offset = _view.offset();
7cd5faf8
JH
93}
94
cdf7bea7 95void Viewport::mouseMoveEvent(QMouseEvent *event)
7cd5faf8
JH
96{
97 assert(event);
1dd95c70
JH
98
99 if(event->buttons() & Qt::LeftButton)
100 {
adb4b10c
JH
101 _view.set_scale_offset(_view.scale(),
102 _mouse_down_offset +
103 (_mouse_down_point - event->pos()).x() *
104 _view.scale());
1dd95c70 105 }
7cd5faf8
JH
106}
107
cdf7bea7 108void Viewport::mouseReleaseEvent(QMouseEvent *event)
7cd5faf8
JH
109{
110 assert(event);
1dd95c70 111}
7cd5faf8 112
cdf7bea7 113void Viewport::wheelEvent(QWheelEvent *event)
1dd95c70
JH
114{
115 assert(event);
1d8dca91 116 _view.zoom(event->delta() / 120, event->x());
7cd5faf8
JH
117}
118
f76af637
JH
119void Viewport::draw_cursors_background(QPainter &p)
120{
121 if(!_view.cursors_shown())
122 return;
123
124 p.setPen(Qt::NoPen);
125 p.setBrush(QBrush(View::CursorAreaColour));
126
127 const pair<Cursor, Cursor> &c = _view.cursors();
128 const float x1 = (c.first.time() - _view.offset()) / _view.scale();
129 const float x2 = (c.second.time() - _view.offset()) / _view.scale();
130 const int l = (int)max(min(x1, x2), 0.0f);
131 const int r = (int)min(max(x1, x2), (float)width());
132
133 p.drawRect(l, 0, r - l, height());
134}
135
136void Viewport::draw_cursors_foreground(QPainter &p)
137{
138 if(!_view.cursors_shown())
139 return;
140
141 const QRect r = rect();
142 pair<Cursor, Cursor> &cursors = _view.cursors();
143 cursors.first.paint(p, r);
144 cursors.second.paint(p, r);
145}
146
cdf7bea7
JH
147} // namespace view
148} // namespace pv