X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fflag.cpp;fp=pv%2Fview%2Fflag.cpp;h=53b0feefa07b77c4ecce071b99358490a4fe6012;hb=8914fe790fb677c56194a3ae4da06ba671fca78a;hp=0000000000000000000000000000000000000000;hpb=98cfe4e8dadad2cf710eb46fd5c85d9d0520a875;p=pulseview.git diff --git a/pv/view/flag.cpp b/pv/view/flag.cpp new file mode 100644 index 0000000..53b0fee --- /dev/null +++ b/pv/view/flag.cpp @@ -0,0 +1,83 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2014 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "timemarker.hpp" +#include "view.hpp" + +#include +#include +#include + +#include + +#include + +using std::shared_ptr; + +namespace pv { +namespace view { + +const QColor Flag::FillColour(0x73, 0xD2, 0x16); + +Flag::Flag(View &view, double time, const QString &text) : + TimeMarker(view, FillColour, time), + text_(text) +{ +} + +Flag::Flag(const Flag &flag) : + TimeMarker(flag.view_, FillColour, flag.time_) +{ +} + +bool Flag::enabled() const +{ + return true; +} + +QString Flag::get_text() const +{ + return text_; +} + +pv::widgets::Popup* Flag::create_popup(QWidget *parent) +{ + pv::widgets::Popup *const popup = TimeMarker::create_popup(parent); + QFormLayout *const form = (QFormLayout*)popup->layout(); + + QLineEdit *const text_edit = new QLineEdit(popup); + text_edit->setText(text_); + + connect(text_edit, SIGNAL(textChanged(const QString&)), + this, SLOT(on_text_changed(const QString&))); + + form->insertRow(0, tr("Text"), text_edit); + + return popup; +} + +void Flag::on_text_changed(const QString &text) +{ + text_ = text; + view_.time_item_appearance_changed(true, false); +} + +} // namespace view +} // namespace pv