2 * This file is part of the PulseView project.
4 * Copyright (C) 2014 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
21 #include "timemarker.hpp"
25 #include <QFormLayout>
29 #include <libsigrok/libsigrok.hpp>
31 #include <pv/widgets/popup.hpp>
33 using std::shared_ptr;
38 const QColor Flag::FillColour(0x73, 0xD2, 0x16);
40 Flag::Flag(View &view, double time, const QString &text) :
41 TimeMarker(view, FillColour, time),
46 Flag::Flag(const Flag &flag) :
47 TimeMarker(flag.view_, FillColour, flag.time_),
48 std::enable_shared_from_this<pv::view::Flag>(flag)
52 bool Flag::enabled() const
57 QString Flag::get_text() const
62 pv::widgets::Popup* Flag::create_popup(QWidget *parent)
64 using pv::widgets::Popup;
66 Popup *const popup = TimeMarker::create_popup(parent);
67 popup->set_position(parent->mapToGlobal(
68 point(parent->rect())), Popup::Bottom);
70 QFormLayout *const form = (QFormLayout*)popup->layout();
72 QLineEdit *const text_edit = new QLineEdit(popup);
73 text_edit->setText(text_);
75 connect(text_edit, SIGNAL(textChanged(const QString&)),
76 this, SLOT(on_text_changed(const QString&)));
78 form->insertRow(0, tr("Text"), text_edit);
83 QMenu* Flag::create_context_menu(QWidget *parent)
85 QMenu *const menu = new QMenu(parent);
87 QAction *const del = new QAction(tr("Delete"), this);
88 del->setShortcuts(QKeySequence::Delete);
89 connect(del, SIGNAL(triggered()), this, SLOT(on_delete()));
95 void Flag::delete_pressed()
100 void Flag::on_delete()
102 view_.remove_flag(shared_ptr<Flag>(shared_from_this()));
105 void Flag::on_text_changed(const QString &text)
108 view_.time_item_appearance_changed(true, false);