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