]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
TraceTreeItem: Update when selection state changes
[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>
d9e71737 24#include <cmath>
b47d951e 25
e3374498 26#include <QApplication>
b213ef09 27#include <QFormLayout>
3c100123 28#include <QKeyEvent>
b9b7854e 29#include <QLineEdit>
b213ef09 30#include <QMenu>
e3374498 31
fe3a1c21 32#include <libsigrokcxx/libsigrokcxx.hpp>
8d3e0764 33
2acdb232
JH
34#include "signal.hpp"
35#include "view.hpp"
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",
fae4a2e6
UH
50 "TX",
51 "RX",
9e40e83d
JH
52 "EN",
53 "SCLK",
54 "MOSI",
55 "MISO",
56 "/SS",
57 "SDA",
58 "SCL"
59};
60
2b81ae46 61Signal::Signal(pv::Session &session,
b86aa8f4 62 std::shared_ptr<sigrok::Channel> channel) :
f6967826 63 Trace(QString::fromUtf8(channel->name().c_str())),
8dbbc7f0
JH
64 session_(session),
65 channel_(channel),
4b5782e1 66 items_(),
4c60462b 67 name_widget_(nullptr),
8dbbc7f0 68 updating_name_widget_(false)
28a4c9c5 69{
8dbbc7f0 70 assert(channel_);
ef8311a4
JH
71}
72
49f8ff3f
JH
73void Signal::set_name(QString name)
74{
931f20b0 75 Trace::set_name(name);
8dbbc7f0
JH
76 updating_name_widget_ = true;
77 name_widget_->setEditText(name);
78 updating_name_widget_ = false;
ead4af1f
UH
79
80 // Store the channel name in sigrok::Channel so that it
81 // will end up in the .sr file upon save.
f6967826 82 channel_->set_name(name.toUtf8().constData());
49f8ff3f
JH
83}
84
931f20b0 85bool Signal::enabled() const
2e575351 86{
8dbbc7f0 87 return channel_->enabled();
a29bb7fb
JH
88}
89
aca00b1e
JH
90void Signal::enable(bool enable)
91{
8dbbc7f0 92 channel_->set_enabled(enable);
32218d3e 93
8dbbc7f0
JH
94 if (owner_)
95 owner_->extents_changed(true, true);
aca00b1e
JH
96}
97
e8d00928 98shared_ptr<Channel> Signal::channel() const
632ba77e 99{
8dbbc7f0 100 return channel_;
632ba77e
JH
101}
102
4b5782e1
JH
103const ViewItemOwner::item_list& Signal::child_items() const
104{
105 return items_;
106}
107
0c0218fd
JH
108void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
109{
8dbbc7f0
JH
110 name_widget_ = new QComboBox(parent);
111 name_widget_->setEditable(true);
b68bc46d 112 name_widget_->setCompleter(0);
0c0218fd 113
f3290553 114 for (unsigned int i = 0; i < countof(ChannelNames); i++)
8dbbc7f0 115 name_widget_->insertItem(i, ChannelNames[i]);
3c100123 116
0771cc94 117 const int index = name_widget_->findText(name_, Qt::MatchExactly);
3c100123
SA
118
119 if (index == -1) {
8dbbc7f0
JH
120 name_widget_->insertItem(0, name_);
121 name_widget_->setCurrentIndex(0);
3c100123 122 } else {
8dbbc7f0 123 name_widget_->setCurrentIndex(index);
3c100123
SA
124 }
125
8dbbc7f0 126 connect(name_widget_, SIGNAL(editTextChanged(const QString&)),
0c0218fd
JH
127 this, SLOT(on_text_changed(const QString&)));
128
8dbbc7f0 129 form->addRow(tr("Name"), name_widget_);
91e8bf08
JH
130
131 add_colour_option(parent, form);
0c0218fd
JH
132}
133
86e823ca
JH
134QMenu* Signal::create_context_menu(QWidget *parent)
135{
136 QMenu *const menu = Trace::create_context_menu(parent);
137
138 menu->addSeparator();
139
140 QAction *const disable = new QAction(tr("Disable"), this);
a2d21018 141 disable->setShortcuts(QKeySequence::Delete);
86e823ca
JH
142 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
143 menu->addAction(disable);
144
145 return menu;
146}
147
5ed1adf5
JH
148void Signal::delete_pressed()
149{
150 on_disable();
151}
152
86e823ca
JH
153void Signal::on_disable()
154{
155 enable(false);
156}
157
8d634081 158} // namespace view
51e77110 159} // namespace pv