]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/header.cpp
MarginWidget: Moved in mouseReleaseEvent
[pulseview.git] / pv / view / header.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 "header.hpp"
22#include "view.hpp"
23
24#include "signal.hpp"
25#include "tracegroup.hpp"
26
27#include <cassert>
28#include <algorithm>
29
30#include <boost/iterator/filter_iterator.hpp>
31
32#include <QApplication>
33#include <QMenu>
34#include <QMouseEvent>
35#include <QPainter>
36#include <QRect>
37
38#include <pv/session.hpp>
39#include <pv/widgets/popup.hpp>
40
41using boost::make_filter_iterator;
42using std::dynamic_pointer_cast;
43using std::max;
44using std::make_pair;
45using std::min;
46using std::pair;
47using std::shared_ptr;
48using std::stable_sort;
49using std::vector;
50
51namespace pv {
52namespace view {
53
54const int Header::Padding = 12;
55const int Header::BaselineOffset = 5;
56
57static bool item_selected(shared_ptr<RowItem> r)
58{
59 return r->selected();
60}
61
62Header::Header(View &parent) :
63 MarginWidget(parent)
64{
65 connect(&view_, SIGNAL(signals_moved()),
66 this, SLOT(on_signals_moved()));
67}
68
69QSize Header::sizeHint() const
70{
71 QRectF max_rect(-Padding, 0, Padding, 0);
72 for (auto &i : view_)
73 if (i->enabled())
74 max_rect = max_rect.united(i->label_rect(QRect()));
75 return QSize(max_rect.width() + Padding + BaselineOffset, 0);
76}
77
78QSize Header::extended_size_hint() const
79{
80 return sizeHint() + QSize(ViewItem::HighlightRadius, 0);
81}
82
83vector< shared_ptr<ViewItem> > Header::items()
84{
85 return vector< shared_ptr<ViewItem> >(view_.begin(), view_.end());
86}
87
88shared_ptr<ViewItem> Header::get_mouse_over_item(const QPoint &pt)
89{
90 const QRect r(0, 0, width() - BaselineOffset, height());
91 for (auto &i : view_)
92 if (i->enabled() && i->label_rect(r).contains(pt))
93 return i;
94 return shared_ptr<RowItem>();
95}
96
97void Header::paintEvent(QPaintEvent*)
98{
99 // The trace labels are not drawn with the arrows exactly on the
100 // left edge of the widget, because then the selection shadow
101 // would be clipped away.
102 const QRect rect(0, 0, width() - BaselineOffset, height());
103
104 vector< shared_ptr<RowItem> > row_items(
105 view_.begin(), view_.end());
106
107 stable_sort(row_items.begin(), row_items.end(),
108 [](const shared_ptr<RowItem> &a, const shared_ptr<RowItem> &b) {
109 return a->visual_v_offset() < b->visual_v_offset(); });
110
111 QPainter painter(this);
112 painter.setRenderHint(QPainter::Antialiasing);
113
114 for (const shared_ptr<RowItem> r : row_items)
115 {
116 assert(r);
117
118 const bool highlight = !dragging_ &&
119 r->label_rect(rect).contains(mouse_point_);
120 r->paint_label(painter, rect, highlight);
121 }
122
123 painter.end();
124}
125
126void Header::mouseMoveEvent(QMouseEvent *event)
127{
128 assert(event);
129 mouse_point_ = event->pos();
130
131 if (!(event->buttons() & Qt::LeftButton))
132 return;
133
134 if ((event->pos() - mouse_down_point_).manhattanLength() <
135 QApplication::startDragDistance())
136 return;
137
138 // Check all the drag items share a common owner
139 RowItemOwner *item_owner = nullptr;
140 for (shared_ptr<RowItem> r : view_)
141 if (r->dragging()) {
142 if (!item_owner)
143 item_owner = r->owner();
144 else if(item_owner != r->owner())
145 return;
146 }
147
148 if (!item_owner)
149 return;
150
151 // Do the drag
152 dragging_ = true;
153
154 const QPoint delta = event->pos() - mouse_down_point_;
155
156 for (std::shared_ptr<RowItem> r : view_)
157 if (r->dragging()) {
158 r->drag_by(delta);
159
160 // Ensure the trace is selected
161 r->select();
162 }
163
164 item_owner->restack_items();
165 for (const auto &r : *item_owner)
166 r->animate_to_layout_v_offset();
167 signals_moved();
168
169 update();
170}
171
172void Header::contextMenuEvent(QContextMenuEvent *event)
173{
174 const shared_ptr<ViewItem> r = get_mouse_over_item(mouse_point_);
175 if (!r)
176 return;
177
178 QMenu *menu = r->create_context_menu(this);
179 if (!menu)
180 menu = new QMenu(this);
181
182 if (std::count_if(view_.begin(), view_.end(), item_selected) > 1)
183 {
184 menu->addSeparator();
185
186 QAction *const group = new QAction(tr("Group"), this);
187 QList<QKeySequence> shortcuts;
188 shortcuts.append(QKeySequence(Qt::ControlModifier | Qt::Key_G));
189 group->setShortcuts(shortcuts);
190 connect(group, SIGNAL(triggered()), this, SLOT(on_group()));
191 menu->addAction(group);
192 }
193
194 menu->exec(event->globalPos());
195}
196
197void Header::keyPressEvent(QKeyEvent *e)
198{
199 assert(e);
200
201 MarginWidget::keyPressEvent(e);
202
203 if (e->key() == Qt::Key_G && e->modifiers() == Qt::ControlModifier)
204 on_group();
205 else if (e->key() == Qt::Key_U && e->modifiers() == Qt::ControlModifier)
206 on_ungroup();
207}
208
209void Header::on_signals_moved()
210{
211 update();
212}
213
214void Header::on_group()
215{
216 vector< shared_ptr<RowItem> > selected_items(
217 make_filter_iterator(item_selected, view_.begin(), view_.end()),
218 make_filter_iterator(item_selected, view_.end(), view_.end()));
219 stable_sort(selected_items.begin(), selected_items.end(),
220 [](const shared_ptr<RowItem> &a, const shared_ptr<RowItem> &b) {
221 return a->visual_v_offset() < b->visual_v_offset(); });
222
223 shared_ptr<TraceGroup> group(new TraceGroup());
224 shared_ptr<RowItem> mouse_down_item(
225 std::dynamic_pointer_cast<RowItem>(mouse_down_item_));
226 shared_ptr<RowItem> focus_item(
227 mouse_down_item ? mouse_down_item : selected_items.front());
228
229 assert(focus_item);
230 assert(focus_item->owner());
231 focus_item->owner()->add_child_item(group);
232
233 // Set the group v_offset here before reparenting
234 group->force_to_v_offset(focus_item->layout_v_offset() +
235 focus_item->v_extents().first);
236
237 for (size_t i = 0; i < selected_items.size(); i++) {
238 const shared_ptr<RowItem> &r = selected_items[i];
239 assert(r->owner());
240 r->owner()->remove_child_item(r);
241 group->add_child_item(r);
242
243 // Put the items at 1-pixel offsets, so that restack will
244 // stack them in the right order
245 r->set_layout_v_offset(i);
246 }
247}
248
249void Header::on_ungroup()
250{
251 bool restart;
252 do {
253 restart = false;
254 for (const shared_ptr<RowItem> r : view_) {
255 const shared_ptr<TraceGroup> tg =
256 dynamic_pointer_cast<TraceGroup>(r);
257 if (tg && tg->selected()) {
258 tg->ungroup();
259 restart = true;
260 break;
261 }
262 }
263 } while(restart);
264}
265
266} // namespace view
267} // namespace pv