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, see <http://www.gnu.org/licenses/>.
25 #include <QApplication>
26 #include <QFormLayout>
31 #include <libsigrokcxx/libsigrokcxx.hpp>
33 #include "pv/data/signalbase.hpp"
38 using std::shared_ptr;
44 const char *const ChannelNames[] = {
61 Signal::Signal(pv::Session &session,
62 shared_ptr<data::SignalBase> channel) :
65 name_widget_(nullptr),
70 connect(base_.get(), SIGNAL(enabled_changed(bool)),
71 this, SLOT(on_enabled_changed(bool)));
74 void Signal::set_name(QString name)
76 Trace::set_name(name);
78 if (name != name_widget_->currentText())
79 name_widget_->setEditText(name);
82 bool Signal::enabled() const
84 return base_->enabled();
87 shared_ptr<data::SignalBase> Signal::base() const
92 void Signal::set_current_segment(const int segment)
94 current_segment_ = segment;
97 int Signal::get_current_segment() const
99 return current_segment_;
102 void Signal::save_settings(QSettings &settings) const
107 void Signal::restore_settings(QSettings &settings)
112 void Signal::paint_back(QPainter &p, ViewItemPaintParams &pp)
114 if (base_->enabled())
115 Trace::paint_back(p, pp);
118 void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
120 name_widget_ = new QComboBox(parent);
121 name_widget_->setEditable(true);
122 name_widget_->setCompleter(nullptr);
124 for (unsigned int i = 0; i < countof(ChannelNames); i++)
125 name_widget_->insertItem(i, ChannelNames[i]);
127 const int index = name_widget_->findText(base_->name(), Qt::MatchExactly);
130 name_widget_->insertItem(0, base_->name());
131 name_widget_->setCurrentIndex(0);
133 name_widget_->setCurrentIndex(index);
136 connect(name_widget_, SIGNAL(editTextChanged(const QString&)),
137 this, SLOT(on_nameedit_changed(const QString&)));
139 form->addRow(tr("Name"), name_widget_);
141 add_colour_option(parent, form);
144 QMenu* Signal::create_context_menu(QWidget *parent)
146 QMenu *const menu = Trace::create_context_menu(parent);
148 menu->addSeparator();
150 QAction *const disable = new QAction(tr("Disable"), this);
151 disable->setShortcuts(QKeySequence::Delete);
152 connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
153 menu->addAction(disable);
158 void Signal::delete_pressed()
163 void Signal::on_name_changed(const QString &text)
165 // On startup, this event is fired when a session restores signal
166 // names. However, the name widget hasn't yet been created.
170 if (text != name_widget_->currentText())
171 name_widget_->setEditText(text);
173 Trace::on_name_changed(text);
176 void Signal::on_disable()
178 base_->set_enabled(false);
181 void Signal::on_enabled_changed(bool enabled)
186 owner_->extents_changed(true, true);