]> sigrok.org Git - pulseview.git/blame - pv/popups/probes.cpp
Fix segfault in connect device dialog
[pulseview.git] / pv / popups / probes.cpp
CommitLineData
cdb50f67
JH
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
51d4a9ab 21#include "probes.h"
cdb50f67 22
aca00b1e
JH
23#include <pv/sigsession.h>
24#include <pv/view/signal.h>
25
26using namespace boost;
51d4a9ab 27using namespace Qt;
aca00b1e 28using namespace std;
479bcabe 29
cdb50f67 30namespace pv {
51d4a9ab 31namespace popups {
cdb50f67 32
aca00b1e 33Probes::Probes(SigSession &session, QWidget *parent) :
51d4a9ab 34 Popup(parent),
aca00b1e 35 _session(session),
497a5b8b 36 _layout(this),
0740907f 37 _probes(this),
ed773982
JH
38 _probes_bar(this),
39 _enable_all_probes(this),
51d4a9ab 40 _disable_all_probes(this)
cdb50f67 41{
51d4a9ab 42 setLayout(&_layout);
9c025ef3 43
ed773982
JH
44 connect(&_enable_all_probes, SIGNAL(clicked()),
45 this, SLOT(enable_all_probes()));
46 connect(&_disable_all_probes, SIGNAL(clicked()),
47 this, SLOT(disable_all_probes()));
48
51d4a9ab 49 _layout.addWidget(&_probes);
ed773982
JH
50
51 _enable_all_probes.setText(tr("Enable All"));
52 _probes_bar.addWidget(&_enable_all_probes);
53
54 _disable_all_probes.setText(tr("Disable All"));
55 _probes_bar.addWidget(&_disable_all_probes);
56
51d4a9ab 57 _layout.addWidget(&_probes_bar);
0740907f 58
aca00b1e
JH
59 const vector< shared_ptr<pv::view::Signal> > sigs =
60 _session.get_signals();
61 for (unsigned int i = 0; i < sigs.size(); i++)
62 {
63 const shared_ptr<pv::view::Signal> &s = sigs[i];
64 assert(s);
0740907f 65 QListWidgetItem *const item = new QListWidgetItem(
aca00b1e 66 s->get_name(), &_probes);
0740907f 67 assert(item);
aca00b1e
JH
68 item->setData(UserRole, qVariantFromValue(i));
69 item->setCheckState(s->enabled() ? Checked : Unchecked);
0740907f
JH
70 _probes.addItem(item);
71 }
51d4a9ab
JH
72
73 connect(&_probes, SIGNAL(itemChanged(QListWidgetItem*)),
74 this, SLOT(item_changed(QListWidgetItem*)));
0740907f
JH
75}
76
51d4a9ab 77void Probes::set_all_probes(bool set)
ed773982 78{
aca00b1e
JH
79 using pv::view::Signal;
80
81 const vector< shared_ptr<pv::view::Signal> > sigs =
82 _session.get_signals();
83 for (unsigned int i = 0; i < sigs.size(); i++)
84 {
85 const shared_ptr<pv::view::Signal> &s = sigs[i];
86 assert(s);
87 s->enable(set);
88
ed773982
JH
89 QListWidgetItem *const item = _probes.item(i);
90 assert(item);
91 item->setCheckState(set ? Qt::Checked : Qt::Unchecked);
92 }
93}
94
51d4a9ab
JH
95void Probes::item_changed(QListWidgetItem *item)
96{
aca00b1e
JH
97 using pv::view::Signal;
98
51d4a9ab 99 assert(item);
aca00b1e
JH
100 const vector< shared_ptr<pv::view::Signal> > sigs =
101 _session.get_signals();
102 const shared_ptr<pv::view::Signal> s = sigs[
103 item->data(UserRole).value<unsigned int>()];
104 assert(s);
105 s->enable(item->checkState() == Checked);
51d4a9ab
JH
106}
107
108void Probes::enable_all_probes()
ed773982
JH
109{
110 set_all_probes(true);
111}
112
51d4a9ab 113void Probes::disable_all_probes()
ed773982
JH
114{
115 set_all_probes(false);
116}
117
51d4a9ab
JH
118} // popups
119} // pv