]> sigrok.org Git - pulseview.git/blame - pv/view/signal.cpp
Initialise Trace widgets when the trace is received by the View
[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
JH
26#include <QApplication>
27
cef18fc6 28#include "signal.h"
8d634081 29#include "view.h"
3e46726a 30
51e77110 31namespace pv {
8d634081 32namespace view {
51e77110 33
3ef6182a
JH
34const QPen Signal::SignalAxisPen(QColor(128, 128, 128, 64));
35
9e40e83d
JH
36const char *const ProbeNames[] = {
37 "CLK",
38 "DATA",
39 "IN",
40 "OUT",
41 "RST",
42 "Tx",
43 "Rx",
44 "EN",
45 "SCLK",
46 "MOSI",
47 "MISO",
48 "/SS",
49 "SDA",
50 "SCL"
51};
52
c0f86852 53Signal::Signal(pv::SigSession &session, const sr_probe *const probe) :
931f20b0 54 Trace(session, probe->name),
cec48d16 55 _probe(probe),
9e40e83d 56 _name_action(NULL),
ef8311a4 57 _name_widget(NULL),
9e40e83d 58 _updating_name_widget(false)
28a4c9c5 59{
cec48d16 60 assert(_probe);
ef8311a4
JH
61}
62
63void Signal::init_context_bar_actions(QWidget *parent)
64{
65 _name_widget = new QComboBox(parent);
66 _name_widget->setEditable(true);
9e40e83d 67
ef8311a4
JH
68 _name_action = new QWidgetAction(parent);
69 _name_action->setDefaultWidget(_name_widget);
9e40e83d 70
9e40e83d 71 for(unsigned int i = 0; i < countof(ProbeNames); i++)
ef8311a4
JH
72 _name_widget->insertItem(i, ProbeNames[i]);
73 _name_widget->setEditText(_probe->name);
9e40e83d 74
ef8311a4 75 connect(_name_widget, SIGNAL(editTextChanged(const QString&)),
9e40e83d 76 this, SLOT(on_text_changed(const QString&)));
28a4c9c5
JH
77}
78
49f8ff3f
JH
79void Signal::set_name(QString name)
80{
931f20b0 81 Trace::set_name(name);
9e40e83d 82 _updating_name_widget = true;
ef8311a4 83 _name_widget->setEditText(name);
9e40e83d 84 _updating_name_widget = false;
49f8ff3f
JH
85}
86
931f20b0 87bool Signal::enabled() const
2e575351 88{
931f20b0 89 return _probe->enabled;
a29bb7fb
JH
90}
91
3ef6182a
JH
92void Signal::paint_axis(QPainter &p, int y, int left, int right)
93{
94 p.setPen(SignalAxisPen);
95 p.drawLine(QPointF(left, y + 0.5f), QPointF(right, y + 0.5f));
96}
97
9e40e83d
JH
98void Signal::on_text_changed(const QString &text)
99{
931f20b0 100 Trace::set_name(text);
9e40e83d
JH
101 text_changed();
102}
103
8d634081 104} // namespace view
51e77110 105} // namespace pv