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