]> sigrok.org Git - pulseview.git/blob - pv/view/flag.cpp
Flag: Added delete key support
[pulseview.git] / pv / view / flag.cpp
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>
27
28 #include <libsigrok/libsigrok.hpp>
29
30 #include <pv/widgets/popup.hpp>
31
32 using std::shared_ptr;
33
34 namespace pv {
35 namespace view {
36
37 const QColor Flag::FillColour(0x73, 0xD2, 0x16);
38
39 Flag::Flag(View &view, double time, const QString &text) :
40         TimeMarker(view, FillColour, time),
41         text_(text)
42 {
43 }
44
45 Flag::Flag(const Flag &flag) :
46         TimeMarker(flag.view_, FillColour, flag.time_),
47         std::enable_shared_from_this<pv::view::Flag>(flag)
48 {
49 }
50
51 bool Flag::enabled() const
52 {
53         return true;
54 }
55
56 QString Flag::get_text() const
57 {
58         return text_;
59 }
60
61 pv::widgets::Popup* Flag::create_popup(QWidget *parent)
62 {
63         pv::widgets::Popup *const popup = TimeMarker::create_popup(parent);
64         QFormLayout *const form = (QFormLayout*)popup->layout();
65
66         QLineEdit *const text_edit = new QLineEdit(popup);
67         text_edit->setText(text_);
68
69         connect(text_edit, SIGNAL(textChanged(const QString&)),
70                 this, SLOT(on_text_changed(const QString&)));
71
72         form->insertRow(0, tr("Text"), text_edit);
73
74         return popup;
75 }
76
77 void Flag::delete_pressed()
78 {
79         view_.remove_flag(shared_ptr<Flag>(shared_from_this()));
80 }
81
82 void Flag::on_text_changed(const QString &text)
83 {
84         text_ = text;
85         view_.time_item_appearance_changed(true, false);
86 }
87
88 } // namespace view
89 } // namespace pv