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>
30 #include <libsigrok/libsigrok.h>
35 #include <pv/device/devinst.h>
37 using std::shared_ptr;
42 const char *const ProbeNames[] = {
59 Signal::Signal(shared_ptr<pv::device::DevInst> dev_inst,
60 const sr_channel *const probe) :
65 _updating_name_widget(false)
70 void Signal::set_name(QString name)
72 Trace::set_name(name);
73 _updating_name_widget = true;
74 _name_widget->setEditText(name);
75 _updating_name_widget = false;
78 bool Signal::enabled() const
80 return _probe->enabled;
83 void Signal::enable(bool enable)
85 _dev_inst->enable_probe(_probe, enable);
89 const sr_channel* Signal::probe() const
94 void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
96 _name_widget = new QComboBox(parent);
97 _name_widget->setEditable(true);
99 for(unsigned int i = 0; i < countof(ProbeNames); i++)
100 _name_widget->insertItem(i, ProbeNames[i]);
101 _name_widget->setEditText(_probe->name);
103 connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
104 this, SLOT(on_text_changed(const QString&)));
106 form->addRow(tr("Name"), _name_widget);
108 add_colour_option(parent, form);
111 QMenu* Signal::create_context_menu(QWidget *parent)
113 QMenu *const menu = Trace::create_context_menu(parent);
115 menu->addSeparator();
117 QAction *const disable = new QAction(tr("Disable"), this);
118 disable->setShortcuts(QKeySequence::Delete);
119 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
120 menu->addAction(disable);
125 void Signal::delete_pressed()
130 void Signal::on_disable()