]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
View: Create trace groups from channel groups
[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 27#include <QFormLayout>
3c100123 28#include <QKeyEvent>
b9b7854e 29#include <QLineEdit>
b213ef09 30#include <QMenu>
e3374498 31
e8d00928 32#include <libsigrok/libsigrok.hpp>
8d3e0764 33
cef18fc6 34#include "signal.h"
8d634081 35#include "view.h"
3e46726a 36
f9abf97e 37using std::shared_ptr;
8d3e0764 38
e8d00928
ML
39using sigrok::Channel;
40
51e77110 41namespace pv {
8d634081 42namespace view {
51e77110 43
6ac6242b 44const char *const ChannelNames[] = {
9e40e83d
JH
45 "CLK",
46 "DATA",
47 "IN",
48 "OUT",
49 "RST",
50 "Tx",
51 "Rx",
52 "EN",
53 "SCLK",
54 "MOSI",
55 "MISO",
56 "/SS",
57 "SDA",
58 "SCL"
59};
60
b86aa8f4
JH
61Signal::Signal(pv::SigSession &session,
62 std::shared_ptr<sigrok::Channel> channel) :
e8d00928 63 Trace(channel->name().c_str()),
b86aa8f4 64 _session(session),
6ac6242b 65 _channel(channel),
ef8311a4 66 _name_widget(NULL),
9e40e83d 67 _updating_name_widget(false)
28a4c9c5 68{
6ac6242b 69 assert(_channel);
ef8311a4
JH
70}
71
49f8ff3f
JH
72void Signal::set_name(QString name)
73{
931f20b0 74 Trace::set_name(name);
9e40e83d 75 _updating_name_widget = true;
ef8311a4 76 _name_widget->setEditText(name);
9e40e83d 77 _updating_name_widget = false;
49f8ff3f
JH
78}
79
931f20b0 80bool Signal::enabled() const
2e575351 81{
e8d00928 82 return _channel->enabled();
a29bb7fb
JH
83}
84
aca00b1e
JH
85void Signal::enable(bool enable)
86{
e8d00928 87 _channel->set_enabled(enable);
32218d3e
JH
88
89 if (_owner)
90 _owner->extents_changed(true, true);
aca00b1e
JH
91}
92
e8d00928 93shared_ptr<Channel> Signal::channel() const
632ba77e 94{
6ac6242b 95 return _channel;
632ba77e
JH
96}
97
0c0218fd
JH
98void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
99{
3c100123
SA
100 int index;
101
0c0218fd
JH
102 _name_widget = new QComboBox(parent);
103 _name_widget->setEditable(true);
104
6ac6242b
ML
105 for(unsigned int i = 0; i < countof(ChannelNames); i++)
106 _name_widget->insertItem(i, ChannelNames[i]);
3c100123
SA
107
108 index = _name_widget->findText(_name, Qt::MatchExactly);
109
110 if (index == -1) {
111 _name_widget->insertItem(0, _name);
112 _name_widget->setCurrentIndex(0);
113 } else {
114 _name_widget->setCurrentIndex(index);
115 }
116
0c0218fd
JH
117 connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
118 this, SLOT(on_text_changed(const QString&)));
119
120 form->addRow(tr("Name"), _name_widget);
91e8bf08
JH
121
122 add_colour_option(parent, form);
0c0218fd
JH
123}
124
86e823ca
JH
125QMenu* Signal::create_context_menu(QWidget *parent)
126{
127 QMenu *const menu = Trace::create_context_menu(parent);
128
129 menu->addSeparator();
130
131 QAction *const disable = new QAction(tr("Disable"), this);
a2d21018 132 disable->setShortcuts(QKeySequence::Delete);
86e823ca
JH
133 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
134 menu->addAction(disable);
135
136 return menu;
137}
138
5ed1adf5
JH
139void Signal::delete_pressed()
140{
141 on_disable();
142}
143
86e823ca
JH
144void Signal::on_disable()
145{
146 enable(false);
147}
148
8d634081 149} // namespace view
51e77110 150} // namespace pv