]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
Don't allow disabled probes to be selected
[pulseview.git] / pv / view / signal.cpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
3 *
4 * Copyright (C) 2012 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
cef18fc6 21#include <extdef.h>
28a4c9c5 22
cec48d16 23#include <assert.h>
b47d951e
JH
24#include <math.h>
25
e3374498 26#include <QApplication>
b213ef09
JH
27#include <QFormLayout>
28#include <QMenu>
e3374498 29
8d3e0764
JH
30#include <libsigrok/libsigrok.h>
31
cef18fc6 32#include "signal.h"
8d634081 33#include "view.h"
3e46726a 34
94574501 35#include <pv/device/devinst.h>
e183f4e3 36
8d3e0764
JH
37using boost::shared_ptr;
38
51e77110 39namespace pv {
8d634081 40namespace view {
51e77110 41
9e40e83d
JH
42const char *const ProbeNames[] = {
43 "CLK",
44 "DATA",
45 "IN",
46 "OUT",
47 "RST",
48 "Tx",
49 "Rx",
50 "EN",
51 "SCLK",
52 "MOSI",
53 "MISO",
54 "/SS",
55 "SDA",
56 "SCL"
57};
58
94574501 59Signal::Signal(shared_ptr<pv::device::DevInst> dev_inst,
e183f4e3 60 const sr_probe *const probe) :
83c23cc9 61 Trace(probe->name),
8d3e0764 62 _dev_inst(dev_inst),
cec48d16 63 _probe(probe),
ef8311a4 64 _name_widget(NULL),
9e40e83d 65 _updating_name_widget(false)
28a4c9c5 66{
cec48d16 67 assert(_probe);
ef8311a4
JH
68}
69
49f8ff3f
JH
70void Signal::set_name(QString name)
71{
931f20b0 72 Trace::set_name(name);
9e40e83d 73 _updating_name_widget = true;
ef8311a4 74 _name_widget->setEditText(name);
9e40e83d 75 _updating_name_widget = false;
49f8ff3f
JH
76}
77
931f20b0 78bool Signal::enabled() const
2e575351 79{
931f20b0 80 return _probe->enabled;
a29bb7fb
JH
81}
82
aca00b1e
JH
83void Signal::enable(bool enable)
84{
e183f4e3 85 _dev_inst->enable_probe(_probe, enable);
aca00b1e
JH
86 visibility_changed();
87}
88
632ba77e
JH
89const sr_probe* Signal::probe() const
90{
91 return _probe;
92}
93
0c0218fd
JH
94void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
95{
96 _name_widget = new QComboBox(parent);
97 _name_widget->setEditable(true);
98
99 for(unsigned int i = 0; i < countof(ProbeNames); i++)
100 _name_widget->insertItem(i, ProbeNames[i]);
101 _name_widget->setEditText(_probe->name);
102
103 connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
104 this, SLOT(on_text_changed(const QString&)));
105
106 form->addRow(tr("Name"), _name_widget);
91e8bf08
JH
107
108 add_colour_option(parent, form);
0c0218fd
JH
109}
110
86e823ca
JH
111QMenu* Signal::create_context_menu(QWidget *parent)
112{
113 QMenu *const menu = Trace::create_context_menu(parent);
114
115 menu->addSeparator();
116
117 QAction *const disable = new QAction(tr("Disable"), this);
a2d21018 118 disable->setShortcuts(QKeySequence::Delete);
86e823ca
JH
119 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
120 menu->addAction(disable);
121
122 return menu;
123}
124
5ed1adf5
JH
125void Signal::delete_pressed()
126{
127 on_disable();
128}
129
86e823ca
JH
130void Signal::on_disable()
131{
132 enable(false);
133}
134
8d634081 135} // namespace view
51e77110 136} // namespace pv