]> sigrok.org Git - pulseview.git/blame - pv/views/trace/marginwidget.cpp
DecodeTrace: Add fallback icon for edit-paste action
[pulseview.git] / pv / views / trace / marginwidget.cpp
CommitLineData
c23b29d6
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c23b29d6
JH
18 */
19
2155b66b
JH
20#include <QMenu>
21#include <QMouseEvent>
22
2acdb232 23#include "view.hpp"
c23b29d6 24
2acdb232 25#include "marginwidget.hpp"
c23b29d6 26
786b7678
JH
27#include <pv/widgets/popup.hpp>
28
29using std::shared_ptr;
30
c23b29d6 31namespace pv {
f4e57597 32namespace views {
1573bf16 33namespace trace {
c23b29d6
JH
34
35MarginWidget::MarginWidget(View &parent) :
e9e4e5e7 36 ViewWidget(parent)
c23b29d6 37{
e02e05c6 38 setAttribute(Qt::WA_NoSystemBackground, true);
e9e4e5e7
JH
39}
40
41void MarginWidget::item_clicked(const shared_ptr<ViewItem> &item)
42{
43 if (item && item->enabled())
44 show_popup(item);
c23b29d6
JH
45}
46
786b7678
JH
47void MarginWidget::show_popup(const shared_ptr<ViewItem> &item)
48{
49 pv::widgets::Popup *const p = item->create_popup(this);
50 if (p)
51 p->show();
52}
53
2155b66b
JH
54void MarginWidget::contextMenuEvent(QContextMenuEvent *event)
55{
dde5aab3
SA
56 event->setAccepted(false);
57
2155b66b
JH
58 const shared_ptr<ViewItem> r = get_mouse_over_item(mouse_point_);
59 if (!r)
60 return;
61
9e773fec 62 QMenu *menu = r->create_header_context_menu(this);
dde5aab3
SA
63 if (menu) {
64 event->setAccepted(true);
8835b5e7 65 menu->popup(event->globalPos());
dde5aab3 66 }
2155b66b
JH
67}
68
d9ea9628 69void MarginWidget::keyPressEvent(QKeyEvent *event)
bb4a0e8e 70{
d9ea9628 71 assert(event);
bb4a0e8e 72
d9ea9628 73 if (event->key() == Qt::Key_Delete) {
bb4a0e8e
JH
74 const auto items = this->items();
75 for (auto &i : items)
76 if (i->selected())
77 i->delete_pressed();
78 }
710c2a18 79
80 ViewWidget::keyPressEvent(event);
bb4a0e8e
JH
81}
82
1573bf16 83} // namespace trace
f4e57597 84} // namespace views
c23b29d6 85} // namespace pv