Use libsigrok C++ bindings (patch version 7).
[pulseview.git] / pv / view / signal.cpp
1 /*
2  * This file is part of the PulseView project.
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
21 #include <extdef.h>
22
23 #include <assert.h>
24 #include <math.h>
25
26 #include <QApplication>
27 #include <QFormLayout>
28 #include <QKeyEvent>
29 #include <QLineEdit>
30 #include <QMenu>
31
32 #include <libsigrok/libsigrok.hpp>
33
34 #include "signal.h"
35 #include "view.h"
36
37 using std::shared_ptr;
38
39 using sigrok::Channel;
40
41 namespace pv {
42 namespace view {
43
44 const char *const ChannelNames[] = {
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
61 Signal::Signal(shared_ptr<Channel> channel) :
62         Trace(channel->name().c_str()),
63         _channel(channel),
64         _name_widget(NULL),
65         _updating_name_widget(false)
66 {
67         assert(_channel);
68 }
69
70 void Signal::set_name(QString name)
71 {
72         Trace::set_name(name);
73         _updating_name_widget = true;
74         _name_widget->setEditText(name);
75         _updating_name_widget = false;
76 }
77
78 bool Signal::enabled() const
79 {
80         return _channel->enabled();
81 }
82
83 void Signal::enable(bool enable)
84 {
85         _channel->set_enabled(enable);
86         visibility_changed();
87 }
88
89 shared_ptr<Channel> Signal::channel() const
90 {
91         return _channel;
92 }
93
94 void Signal::populate_popup_form(QWidget *parent, QFormLayout *form)
95 {
96         int index;
97
98         _name_widget = new QComboBox(parent);
99         _name_widget->setEditable(true);
100
101         for(unsigned int i = 0; i < countof(ChannelNames); i++)
102                 _name_widget->insertItem(i, ChannelNames[i]);
103
104         index = _name_widget->findText(_name, Qt::MatchExactly);
105
106         if (index == -1) {
107                 _name_widget->insertItem(0, _name);
108                 _name_widget->setCurrentIndex(0);
109         } else {
110                 _name_widget->setCurrentIndex(index);
111         }
112
113         connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
114                 this, SLOT(on_text_changed(const QString&)));
115
116         form->addRow(tr("Name"), _name_widget);
117
118         add_colour_option(parent, form);
119 }
120
121 QMenu* Signal::create_context_menu(QWidget *parent)
122 {
123         QMenu *const menu = Trace::create_context_menu(parent);
124
125         menu->addSeparator();
126
127         QAction *const disable = new QAction(tr("Disable"), this);
128         disable->setShortcuts(QKeySequence::Delete);
129         connect(disable, SIGNAL(triggered()), this, SLOT(on_disable()));
130         menu->addAction(disable);
131
132         return menu;
133 }
134
135 void Signal::delete_pressed()
136 {
137         on_disable();
138 }
139
140 void Signal::on_disable()
141 {
142         enable(false);
143 }
144
145 } // namespace view
146 } // namespace pv