]> sigrok.org Git - pulseview.git/blame - pv/view/viewwidget.cpp
MainWindow: Fix session error slot declaration
[pulseview.git] / pv / view / viewwidget.cpp
CommitLineData
40aca27e
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 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
e9e4e5e7
JH
21#include <QApplication>
22#include <QMouseEvent>
c9743553 23#include <QTouchEvent>
b434cbaf 24
af503b10 25#include "tracetreeitem.hpp"
40aca27e
JH
26#include "view.hpp"
27#include "viewwidget.hpp"
28
b434cbaf
JH
29using std::any_of;
30using std::shared_ptr;
31using std::vector;
32
40aca27e 33namespace pv {
f4e57597
SA
34namespace views {
35namespace TraceView {
40aca27e
JH
36
37ViewWidget::ViewWidget(View &parent) :
38 QWidget(&parent),
e9e4e5e7 39 view_(parent),
803cdac4 40 item_dragging_(false)
40aca27e 41{
e9e4e5e7 42 setFocusPolicy(Qt::ClickFocus);
c9743553 43 setAttribute(Qt::WA_AcceptTouchEvents, true);
e9e4e5e7
JH
44 setMouseTracking(true);
45}
46
47void ViewWidget::clear_selection()
48{
49 const auto items = this->items();
50 for (auto &i : items)
51 i->select(false);
e9e4e5e7
JH
52}
53
e8b969a9
JH
54void ViewWidget::item_hover(const shared_ptr<ViewItem> &item)
55{
56 (void)item;
57}
58
e9e4e5e7
JH
59void ViewWidget::item_clicked(const shared_ptr<ViewItem> &item)
60{
61 (void)item;
40aca27e
JH
62}
63
b434cbaf
JH
64bool ViewWidget::accept_drag() const
65{
66 const vector< shared_ptr<TimeItem> > items(view_.time_items());
cc88566c
JH
67 const vector< shared_ptr<TraceTreeItem> > trace_tree_items(
68 view_.list_by_type<TraceTreeItem>());
b434cbaf 69
cc88566c
JH
70 const bool any_row_items_selected = any_of(
71 trace_tree_items.begin(), trace_tree_items.end(),
af503b10 72 [](const shared_ptr<TraceTreeItem> &r) { return r->selected(); });
b434cbaf
JH
73
74 const bool any_time_items_selected = any_of(items.begin(), items.end(),
75 [](const shared_ptr<TimeItem> &i) { return i->selected(); });
76
2ad82c2e 77 if (any_row_items_selected && !any_time_items_selected) {
b434cbaf 78 // Check all the drag items share a common owner
af503b10 79 TraceTreeItemOwner *item_owner = nullptr;
cc88566c 80 for (shared_ptr<TraceTreeItem> r : trace_tree_items)
b434cbaf
JH
81 if (r->dragging()) {
82 if (!item_owner)
83 item_owner = r->owner();
f3290553 84 else if (item_owner != r->owner())
b434cbaf
JH
85 return false;
86 }
87
88 return true;
2ad82c2e 89 } else if (any_time_items_selected && !any_row_items_selected) {
b434cbaf
JH
90 return true;
91 }
92
28290534
JH
93 // A background drag is beginning
94 return true;
b434cbaf
JH
95}
96
1f1edc09
JH
97bool ViewWidget::mouse_down() const
98{
99 return mouse_down_point_.x() != INT_MIN &&
100 mouse_down_point_.y() != INT_MIN;
101}
102
1dffa582
JH
103void ViewWidget::drag_items(const QPoint &delta)
104{
28290534
JH
105 bool item_dragged = false;
106
1dffa582 107 // Drag the row items
453b6d63
JH
108 const vector< shared_ptr<RowItem> > row_items(
109 view_.list_by_type<RowItem>());
110 for (shared_ptr<RowItem> r : row_items)
1dffa582 111 if (r->dragging()) {
1dffa582
JH
112 r->drag_by(delta);
113
114 // Ensure the trace is selected
115 r->select();
453b6d63
JH
116
117 item_dragged = true;
1dffa582
JH
118 }
119
453b6d63
JH
120 // If an item is being dragged, update the stacking
121 TraceTreeItemOwner *item_owner = nullptr;
122 const vector< shared_ptr<TraceTreeItem> > trace_tree_items(
123 view_.list_by_type<TraceTreeItem>());
124 for (shared_ptr<TraceTreeItem> i : trace_tree_items)
125 if (i->dragging())
126 item_owner = i->owner();
127
1dffa582
JH
128 if (item_owner) {
129 item_owner->restack_items();
453b6d63
JH
130 for (shared_ptr<TraceTreeItem> i : trace_tree_items)
131 i->animate_to_layout_v_offset();
1dffa582
JH
132 }
133
134 // Drag the time items
135 const vector< shared_ptr<TimeItem> > items(view_.time_items());
136 for (auto &i : items)
28290534 137 if (i->dragging()) {
1dffa582 138 i->drag_by(delta);
28290534
JH
139 item_dragged = true;
140 }
141
142 // Do the background drag
143 if (!item_dragged)
144 drag_by(delta);
145}
146
147void ViewWidget::drag()
148{
149}
150
151void ViewWidget::drag_by(const QPoint &delta)
152{
153 (void)delta;
154}
155
156void ViewWidget::drag_release()
157{
1dffa582
JH
158}
159
e9e4e5e7
JH
160void ViewWidget::mouse_left_press_event(QMouseEvent *event)
161{
162 (void)event;
163
164 const bool ctrl_pressed =
165 QApplication::keyboardModifiers() & Qt::ControlModifier;
166
167 // Clear selection if control is not pressed and this item is unselected
168 if ((!mouse_down_item_ || !mouse_down_item_->selected()) &&
169 !ctrl_pressed)
170 clear_selection();
171
172 // Set the signal selection state if the item has been clicked
173 if (mouse_down_item_) {
174 if (ctrl_pressed)
175 mouse_down_item_->select(!mouse_down_item_->selected());
176 else
177 mouse_down_item_->select(true);
178 }
179
180 // Save the offsets of any signals which will be dragged
28290534 181 bool item_dragged = false;
e9e4e5e7
JH
182 const auto items = this->items();
183 for (auto &i : items)
28290534
JH
184 if (i->selected()) {
185 item_dragged = true;
e9e4e5e7 186 i->drag();
28290534
JH
187 }
188
189 // Do the background drag
190 if (!item_dragged)
191 drag();
e9e4e5e7
JH
192
193 selection_changed();
e9e4e5e7
JH
194}
195
196void ViewWidget::mouse_left_release_event(QMouseEvent *event)
197{
198 assert(event);
199
200 auto items = this->items();
201 const bool ctrl_pressed =
202 QApplication::keyboardModifiers() & Qt::ControlModifier;
203
204 // Unselect everything if control is not pressed
205 const shared_ptr<ViewItem> mouse_over =
206 get_mouse_over_item(event->pos());
207
208 for (auto &i : items)
209 i->drag_release();
210
803cdac4 211 if (item_dragging_)
af503b10 212 view_.restack_all_trace_tree_items();
2ad82c2e 213 else {
e9e4e5e7
JH
214 if (!ctrl_pressed) {
215 for (shared_ptr<ViewItem> i : items)
216 if (mouse_down_item_ != i)
217 i->select(false);
218
219 if (mouse_down_item_)
220 item_clicked(mouse_down_item_);
221 }
222 }
223
803cdac4 224 item_dragging_ = false;
e9e4e5e7
JH
225}
226
d9ea9628 227bool ViewWidget::touch_event(QTouchEvent *event)
c9743553 228{
d9ea9628
UH
229 (void)event;
230
c9743553
JH
231 return false;
232}
233
234bool ViewWidget::event(QEvent *event)
235{
236 switch (event->type()) {
237 case QEvent::TouchBegin:
238 case QEvent::TouchUpdate:
239 case QEvent::TouchEnd:
240 if (touch_event(static_cast<QTouchEvent *>(event)))
241 return true;
242 break;
243
244 default:
245 break;
246 }
247
248 return QWidget::event(event);
249}
250
e9e4e5e7
JH
251void ViewWidget::mousePressEvent(QMouseEvent *event)
252{
253 assert(event);
254
255 mouse_down_point_ = event->pos();
256 mouse_down_item_ = get_mouse_over_item(event->pos());
257
258 if (event->button() & Qt::LeftButton)
259 mouse_left_press_event(event);
260}
261
262void ViewWidget::mouseReleaseEvent(QMouseEvent *event)
263{
264 assert(event);
265 if (event->button() & Qt::LeftButton)
266 mouse_left_release_event(event);
267
1f1edc09 268 mouse_down_point_ = QPoint(INT_MIN, INT_MIN);
e9e4e5e7
JH
269 mouse_down_item_ = nullptr;
270}
271
d9ea9628 272void ViewWidget::mouseMoveEvent(QMouseEvent *event)
e9e4e5e7 273{
d9ea9628
UH
274 assert(event);
275 mouse_point_ = event->pos();
e9e4e5e7 276
d9ea9628
UH
277 if (!event->buttons())
278 item_hover(get_mouse_over_item(event->pos()));
279 else if (event->buttons() & Qt::LeftButton) {
2ad82c2e 280 if (!item_dragging_) {
d9ea9628 281 if ((event->pos() - mouse_down_point_).manhattanLength() <
e8b969a9
JH
282 QApplication::startDragDistance())
283 return;
e9e4e5e7 284
e8b969a9
JH
285 if (!accept_drag())
286 return;
539deb10 287
e8b969a9
JH
288 item_dragging_ = true;
289 }
e9e4e5e7 290
e8b969a9 291 // Do the drag
d9ea9628 292 drag_items(event->pos() - mouse_down_point_);
e8b969a9 293 }
e9e4e5e7
JH
294}
295
296void ViewWidget::leaveEvent(QEvent*)
297{
298 mouse_point_ = QPoint(-1, -1);
299 update();
300}
301
f4e57597
SA
302} // namespace TraceView
303} // namespace views
40aca27e 304} // namespace pv