]> sigrok.org Git - pulseview.git/blame - pv/view/flag.cpp
ViewItem: Use drag_point() with drag_by()
[pulseview.git] / pv / view / flag.cpp
CommitLineData
8914fe79
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
21#include "timemarker.hpp"
22#include "view.hpp"
23
24#include <QColor>
25#include <QFormLayout>
26#include <QLineEdit>
97430d77 27#include <QMenu>
8914fe79
JH
28
29#include <libsigrok/libsigrok.hpp>
30
31#include <pv/widgets/popup.hpp>
32
33using std::shared_ptr;
34
35namespace pv {
36namespace view {
37
38const QColor Flag::FillColour(0x73, 0xD2, 0x16);
39
40Flag::Flag(View &view, double time, const QString &text) :
41 TimeMarker(view, FillColour, time),
42 text_(text)
43{
44}
45
46Flag::Flag(const Flag &flag) :
dbfae3f1
JH
47 TimeMarker(flag.view_, FillColour, flag.time_),
48 std::enable_shared_from_this<pv::view::Flag>(flag)
8914fe79
JH
49{
50}
51
52bool Flag::enabled() const
53{
54 return true;
55}
56
57QString Flag::get_text() const
58{
59 return text_;
60}
61
62pv::widgets::Popup* Flag::create_popup(QWidget *parent)
63{
64 pv::widgets::Popup *const popup = TimeMarker::create_popup(parent);
65 QFormLayout *const form = (QFormLayout*)popup->layout();
66
67 QLineEdit *const text_edit = new QLineEdit(popup);
68 text_edit->setText(text_);
69
70 connect(text_edit, SIGNAL(textChanged(const QString&)),
71 this, SLOT(on_text_changed(const QString&)));
72
73 form->insertRow(0, tr("Text"), text_edit);
74
75 return popup;
76}
77
97430d77
JH
78QMenu* Flag::create_context_menu(QWidget *parent)
79{
80 QMenu *const menu = new QMenu(parent);
81
82 QAction *const del = new QAction(tr("Delete"), this);
83 del->setShortcuts(QKeySequence::Delete);
84 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
85 menu->addAction(del);
86
87 return menu;
88}
89
dbfae3f1 90void Flag::delete_pressed()
97430d77
JH
91{
92 on_delete();
93}
94
95void Flag::on_delete()
dbfae3f1
JH
96{
97 view_.remove_flag(shared_ptr<Flag>(shared_from_this()));
98}
99
8914fe79
JH
100void Flag::on_text_changed(const QString &text)
101{
102 text_ = text;
103 view_.time_item_appearance_changed(true, false);
104}
105
106} // namespace view
107} // namespace pv