]> sigrok.org Git - pulseview.git/blame - pv/view/marginwidget.cpp
Session: Removed signals_mutex(), and made signals() return a copy not a reference
[pulseview.git] / pv / view / 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
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
2155b66b
JH
21#include <QMenu>
22#include <QMouseEvent>
23
2acdb232 24#include "view.hpp"
c23b29d6 25
2acdb232 26#include "marginwidget.hpp"
c23b29d6 27
786b7678
JH
28#include <pv/widgets/popup.hpp>
29
30using std::shared_ptr;
31
c23b29d6
JH
32namespace pv {
33namespace view {
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{
56 const shared_ptr<ViewItem> r = get_mouse_over_item(mouse_point_);
57 if (!r)
58 return;
59
60 QMenu *menu = r->create_context_menu(this);
61 if (menu)
62 menu->exec(event->globalPos());
63}
64
bb4a0e8e
JH
65void MarginWidget::keyPressEvent(QKeyEvent *e)
66{
67 assert(e);
68
69 if (e->key() == Qt::Key_Delete)
70 {
71 const auto items = this->items();
72 for (auto &i : items)
73 if (i->selected())
74 i->delete_pressed();
75 }
76}
77
c23b29d6
JH
78} // namespace view
79} // namespace pv