]> sigrok.org Git - pulseview.git/blame - pv/view/viewport.cpp
TraceTreeItemOwner: Removed non-const item_list accessor
[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
d2344534 21#include <cassert>
61d64fe9 22#include <cmath>
68b21a71 23#include <algorithm>
28290534 24#include <limits>
d2344534 25
2acdb232
JH
26#include "signal.hpp"
27#include "view.hpp"
5b5fa4da 28#include "viewitempaintparams.hpp"
2acdb232 29#include "viewport.hpp"
6fa02541 30
f65cd27b 31#include <pv/session.hpp>
e3f65ace 32
7cd5faf8 33#include <QMouseEvent>
e9c41f8c 34
c8870d9e 35using std::abs;
e9e4e5e7
JH
36using std::back_inserter;
37using std::copy;
e8b969a9 38using std::dynamic_pointer_cast;
819f4c25
JH
39using std::max;
40using std::min;
beb897c6 41using std::none_of;
28290534 42using std::numeric_limits;
f9abf97e 43using std::shared_ptr;
68b21a71 44using std::stable_sort;
819f4c25 45using std::vector;
e3f65ace 46
cdf7bea7
JH
47namespace pv {
48namespace view {
e9c41f8c 49
cdf7bea7 50Viewport::Viewport(View &parent) :
40aca27e 51 ViewWidget(parent),
8dbbc7f0 52 pinch_zoom_active_(false)
6fa02541 53{
64b60583
JH
54 setAutoFillBackground(true);
55 setBackgroundRole(QPalette::Base);
d7002724
JH
56}
57
e9e4e5e7
JH
58shared_ptr<ViewItem> Viewport::get_mouse_over_item(const QPoint &pt)
59{
60 const vector< shared_ptr<ViewItem> > items(this->items());
61 for (auto i = items.rbegin(); i != items.rend(); i++)
62 if ((*i)->enabled() &&
63 (*i)->hit_box_rect(rect()).contains(pt))
64 return *i;
65 return nullptr;
66}
67
e8b969a9
JH
68void Viewport::item_hover(const shared_ptr<ViewItem> &item)
69{
70 if (item)
71 setCursor(dynamic_pointer_cast<RowItem>(item) ?
72 Qt::SizeVerCursor : Qt::SizeHorCursor);
73 else
74 unsetCursor();
75}
76
28290534
JH
77void Viewport::drag()
78{
79 drag_offset_ = view_.offset();
80}
81
82void Viewport::drag_by(const QPoint &delta)
83{
60d9b99a 84 if (drag_offset_ == boost::none)
28290534
JH
85 return;
86
60d9b99a
JS
87 view_.set_scale_offset(view_.scale(),
88 (*drag_offset_ - delta.x() * view_.scale()));
28290534
JH
89}
90
91void Viewport::drag_release()
92{
60d9b99a 93 drag_offset_ = boost::none;
28290534
JH
94}
95
e9e4e5e7
JH
96vector< shared_ptr<ViewItem> > Viewport::items()
97{
cc88566c
JH
98 vector< shared_ptr<ViewItem> > items;
99 const vector< shared_ptr<TraceTreeItem> > trace_tree_items(
100 view_.list_by_type<TraceTreeItem>());
101 copy(trace_tree_items.begin(), trace_tree_items.end(),
102 back_inserter(items));
e9e4e5e7
JH
103 const vector< shared_ptr<TimeItem> > time_items(view_.time_items());
104 copy(time_items.begin(), time_items.end(), back_inserter(items));
105 return items;
106}
107
c9743553
JH
108bool Viewport::touch_event(QTouchEvent *event)
109{
110 QList<QTouchEvent::TouchPoint> touchPoints = event->touchPoints();
111
112 if (touchPoints.count() != 2) {
113 pinch_zoom_active_ = false;
114 return false;
115 }
116
117 const QTouchEvent::TouchPoint &touchPoint0 = touchPoints.first();
118 const QTouchEvent::TouchPoint &touchPoint1 = touchPoints.last();
119
120 if (!pinch_zoom_active_ ||
121 (event->touchPointStates() & Qt::TouchPointPressed)) {
60d9b99a
JS
122 pinch_offset0_ = (view_.offset() + view_.scale() * touchPoint0.pos().x()).convert_to<double>();
123 pinch_offset1_ = (view_.offset() + view_.scale() * touchPoint1.pos().x()).convert_to<double>();
c9743553
JH
124 pinch_zoom_active_ = true;
125 }
126
127 double w = touchPoint1.pos().x() - touchPoint0.pos().x();
128 if (abs(w) >= 1.0) {
1c91f1a2
JH
129 const double scale =
130 fabs((pinch_offset1_ - pinch_offset0_) / w);
c9743553
JH
131 double offset = pinch_offset0_ - touchPoint0.pos().x() * scale;
132 if (scale > 0)
133 view_.set_scale_offset(scale, offset);
134 }
135
136 if (event->touchPointStates() & Qt::TouchPointReleased) {
137 pinch_zoom_active_ = false;
138
139 if (touchPoint0.state() & Qt::TouchPointReleased) {
140 // Primary touch released
28290534 141 drag_release();
c9743553
JH
142 } else {
143 // Update the mouse down fields so that continued
144 // dragging with the primary touch will work correctly
145 mouse_down_point_ = touchPoint0.pos().toPoint();
28290534 146 drag();
c9743553
JH
147 }
148 }
149
150 return true;
151}
152
e314eca4 153void Viewport::paintEvent(QPaintEvent*)
d7002724 154{
cc88566c
JH
155 vector< shared_ptr<TraceTreeItem> > trace_tree_items(
156 view_.list_by_type<TraceTreeItem>());
157 assert(none_of(trace_tree_items.begin(), trace_tree_items.end(),
af503b10 158 [](const shared_ptr<TraceTreeItem> &r) { return !r; }));
beb897c6 159
cc88566c 160 stable_sort(trace_tree_items.begin(), trace_tree_items.end(),
af503b10 161 [](const shared_ptr<TraceTreeItem> &a, const shared_ptr<TraceTreeItem> &b) {
be9e7b4b 162 return a->visual_v_offset() < b->visual_v_offset(); });
3e46726a 163
beb897c6
JH
164 const vector< shared_ptr<TimeItem> > time_items(view_.time_items());
165 assert(none_of(time_items.begin(), time_items.end(),
166 [](const shared_ptr<TimeItem> &t) { return !t; }));
167
64b60583 168 QPainter p(this);
ce6e73a8 169 p.setRenderHint(QPainter::Antialiasing);
3e46726a 170
36e7001d 171 const ViewItemPaintParams pp(rect(), view_.scale(), view_.offset());
3eb29afd 172
beb897c6
JH
173 for (const shared_ptr<TimeItem> t : time_items)
174 t->paint_back(p, pp);
cc88566c 175 for (const shared_ptr<TraceTreeItem> r : trace_tree_items)
3eb29afd 176 r->paint_back(p, pp);
3e46726a 177
beb897c6
JH
178 for (const shared_ptr<TimeItem> t : time_items)
179 t->paint_mid(p, pp);
cc88566c 180 for (const shared_ptr<TraceTreeItem> r : trace_tree_items)
3eb29afd 181 r->paint_mid(p, pp);
fe08b6e8 182
32c589f0
JS
183 p.setRenderHint(QPainter::Antialiasing, false);
184
cc88566c 185 for (const shared_ptr<TraceTreeItem> r : trace_tree_items)
3eb29afd 186 r->paint_fore(p, pp);
beb897c6
JH
187 for (const shared_ptr<TimeItem> t : time_items)
188 t->paint_fore(p, pp);
f76af637 189
64b60583 190 p.end();
6fa02541 191}
009e1503 192
903038a8
JH
193void Viewport::mouseDoubleClickEvent(QMouseEvent *event)
194{
195 assert(event);
196
197 if (event->buttons() & Qt::LeftButton)
8dbbc7f0 198 view_.zoom(2.0, event->x());
903038a8 199 else if (event->buttons() & Qt::RightButton)
8dbbc7f0 200 view_.zoom(-2.0, event->x());
903038a8
JH
201}
202
208c6fc3 203void Viewport::wheelEvent(QWheelEvent *e)
1dd95c70 204{
208c6fc3
JH
205 assert(e);
206
207 if (e->orientation() == Qt::Vertical)
208 {
209 if (e->modifiers() & Qt::ControlModifier) {
210 // Vertical scrolling with the control key pressed
211 // is intrepretted as vertical scrolling
212 view_.set_v_offset(-view_.owner_visual_v_offset() -
213 (e->delta() * height()) / (8 * 120));
214 } else {
215 // Vertical scrolling is interpreted as zooming in/out
216 view_.zoom(e->delta() / 120, e->x());
217 }
218 }
219 else if (e->orientation() == Qt::Horizontal)
220 {
23840406 221 // Horizontal scrolling is interpreted as moving left/right
8dbbc7f0 222 view_.set_scale_offset(view_.scale(),
208c6fc3 223 e->delta() * view_.scale() + view_.offset());
ffd5cd20 224 }
7cd5faf8
JH
225}
226
cdf7bea7
JH
227} // namespace view
228} // namespace pv