]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
Make traces non-draggable outside the header area
[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;
f1626bb8 38using std::make_shared;
8d3e0764 39
e8d00928
ML
40using sigrok::Channel;
41
51e77110 42namespace pv {
8d634081 43namespace view {
51e77110 44
6ac6242b 45const char *const ChannelNames[] = {
9e40e83d
JH
46 "CLK",
47 "DATA",
48 "IN",
49 "OUT",
50 "RST",
fae4a2e6
UH
51 "TX",
52 "RX",
9e40e83d
JH
53 "EN",
54 "SCLK",
55 "MOSI",
56 "MISO",
57 "/SS",
58 "SDA",
59 "SCL"
60};
61
2b81ae46 62Signal::Signal(pv::Session &session,
b86aa8f4 63 std::shared_ptr<sigrok::Channel> channel) :
f6967826 64 Trace(QString::fromUtf8(channel->name().c_str())),
8dbbc7f0
JH
65 session_(session),
66 channel_(channel),
f1626bb8
JH
67 scale_handle_(make_shared<SignalScaleHandle>(*this)),
68 items_({scale_handle_}),
4c60462b 69 name_widget_(nullptr),
8dbbc7f0 70 updating_name_widget_(false)
28a4c9c5 71{
8dbbc7f0 72 assert(channel_);
ef8311a4
JH
73}
74
49f8ff3f
JH
75void Signal::set_name(QString name)
76{
931f20b0 77 Trace::set_name(name);
8dbbc7f0
JH
78 updating_name_widget_ = true;
79 name_widget_->setEditText(name);
80 updating_name_widget_ = false;
ead4af1f
UH
81
82 // Store the channel name in sigrok::Channel so that it
83 // will end up in the .sr file upon save.
f6967826 84 channel_->set_name(name.toUtf8().constData());
49f8ff3f
JH
85}
86
931f20b0 87bool Signal::enabled() const
2e575351 88{
8dbbc7f0 89 return channel_->enabled();
a29bb7fb
JH
90}
91
aca00b1e
JH
92void Signal::enable(bool enable)
93{
8dbbc7f0 94 channel_->set_enabled(enable);
32218d3e 95
8dbbc7f0
JH
96 if (owner_)
97 owner_->extents_changed(true, true);
aca00b1e
JH
98}
99
e8d00928 100shared_ptr<Channel> Signal::channel() const
632ba77e 101{
8dbbc7f0 102 return channel_;
632ba77e
JH
103}
104
4b5782e1
JH
105const ViewItemOwner::item_list& Signal::child_items() const
106{
107 return items_;
108}
109
99af6802
SA
110void Signal::paint_back(QPainter &p, const ViewItemPaintParams &pp)
111{
112 if (channel_->enabled())
113 Trace::paint_back(p, pp);
114}
115
0c0218fd
JH
116void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
117{
8dbbc7f0
JH
118 name_widget_ = new QComboBox(parent);
119 name_widget_->setEditable(true);
b68bc46d 120 name_widget_->setCompleter(0);
0c0218fd 121
f3290553 122 for (unsigned int i = 0; i < countof(ChannelNames); i++)
8dbbc7f0 123 name_widget_->insertItem(i, ChannelNames[i]);
3c100123 124
0771cc94 125 const int index = name_widget_->findText(name_, Qt::MatchExactly);
3c100123
SA
126
127 if (index == -1) {
8dbbc7f0
JH
128 name_widget_->insertItem(0, name_);
129 name_widget_->setCurrentIndex(0);
3c100123 130 } else {
8dbbc7f0 131 name_widget_->setCurrentIndex(index);
3c100123
SA
132 }
133
8dbbc7f0 134 connect(name_widget_, SIGNAL(editTextChanged(const QString&)),
0c0218fd
JH
135 this, SLOT(on_text_changed(const QString&)));
136
8dbbc7f0 137 form->addRow(tr("Name"), name_widget_);
91e8bf08
JH
138
139 add_colour_option(parent, form);
0c0218fd
JH
140}
141
86e823ca
JH
142QMenu* Signal::create_context_menu(QWidget *parent)
143{
144 QMenu *const menu = Trace::create_context_menu(parent);
145
146 menu->addSeparator();
147
148 QAction *const disable = new QAction(tr("Disable"), this);
a2d21018 149 disable->setShortcuts(QKeySequence::Delete);
86e823ca
JH
150 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
151 menu->addAction(disable);
152
153 return menu;
154}
155
5ed1adf5
JH
156void Signal::delete_pressed()
157{
158 on_disable();
159}
160
86e823ca
JH
161void Signal::on_disable()
162{
163 enable(false);
164}
165
8d634081 166} // namespace view
51e77110 167} // namespace pv