2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 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
26 #include <QApplication>
27 #include <QFormLayout>
32 #include <libsigrok/libsigrok.hpp>
37 using std::shared_ptr;
39 using sigrok::Channel;
44 const char *const ChannelNames[] = {
61 Signal::Signal(pv::Session &session,
62 std::shared_ptr<sigrok::Channel> channel) :
63 Trace(QString::fromUtf8(channel->name().c_str())),
67 updating_name_widget_(false)
72 void Signal::set_name(QString name)
74 Trace::set_name(name);
75 updating_name_widget_ = true;
76 name_widget_->setEditText(name);
77 updating_name_widget_ = false;
79 // Store the channel name in sigrok::Channel so that it
80 // will end up in the .sr file upon save.
81 channel_->set_name(name.toUtf8().constData());
84 bool Signal::enabled() const
86 return channel_->enabled();
89 void Signal::enable(bool enable)
91 channel_->set_enabled(enable);
94 owner_->extents_changed(true, true);
97 shared_ptr<Channel> Signal::channel() const
102 void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
106 name_widget_ = new QComboBox(parent);
107 name_widget_->setEditable(true);
109 for(unsigned int i = 0; i < countof(ChannelNames); i++)
110 name_widget_->insertItem(i, ChannelNames[i]);
112 index = name_widget_->findText(name_, Qt::MatchExactly);
115 name_widget_->insertItem(0, name_);
116 name_widget_->setCurrentIndex(0);
118 name_widget_->setCurrentIndex(index);
121 connect(name_widget_, SIGNAL(editTextChanged(const QString&)),
122 this, SLOT(on_text_changed(const QString&)));
124 form->addRow(tr("Name"), name_widget_);
126 add_colour_option(parent, form);
129 QMenu* Signal::create_context_menu(QWidget *parent)
131 QMenu *const menu = Trace::create_context_menu(parent);
133 menu->addSeparator();
135 QAction *const disable = new QAction(tr("Disable"), this);
136 disable->setShortcuts(QKeySequence::Delete);
137 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
138 menu->addAction(disable);
143 void Signal::delete_pressed()
148 void Signal::on_disable()