]> sigrok.org Git - pulseview.git/blob - pv/popups/probes.cpp
9684d435093cbcae8d6fc7a022eb02ab2bbc5f10
[pulseview.git] / pv / popups / probes.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 "probes.h"
22
23 using namespace Qt;
24
25 namespace pv {
26 namespace popups {
27
28 Probes::Probes(sr_dev_inst *sdi, QWidget *parent) :
29         Popup(parent),
30         _sdi(sdi),
31         _layout(this),
32         _probes(this),
33         _probes_bar(this),
34         _enable_all_probes(this),
35         _disable_all_probes(this)
36 {
37         assert(_sdi);
38
39         setLayout(&_layout);
40
41         connect(&_enable_all_probes, SIGNAL(clicked()),
42                 this, SLOT(enable_all_probes()));
43         connect(&_disable_all_probes, SIGNAL(clicked()),
44                 this, SLOT(disable_all_probes()));
45
46         _layout.addWidget(&_probes);
47
48         _enable_all_probes.setText(tr("Enable All"));
49         _probes_bar.addWidget(&_enable_all_probes);
50
51         _disable_all_probes.setText(tr("Disable All"));
52         _probes_bar.addWidget(&_disable_all_probes);
53
54         _layout.addWidget(&_probes_bar);
55
56         for (const GSList *l = _sdi->probes; l; l = l->next) {
57                 sr_probe *const probe = (sr_probe*)l->data;
58                 assert(probe);
59                 QListWidgetItem *const item = new QListWidgetItem(
60                         probe->name, &_probes);
61                 assert(item);
62                 item->setData(UserRole,
63                         qVariantFromValue((void*)probe));
64                 item->setCheckState(probe->enabled ?
65                         Checked : Unchecked);
66                 _probes.addItem(item);
67         }
68
69         connect(&_probes, SIGNAL(itemChanged(QListWidgetItem*)),
70                 this, SLOT(item_changed(QListWidgetItem*)));
71 }
72
73 void Probes::set_all_probes(bool set)
74 {
75         for (int i = 0; i < _probes.count(); i++) {
76                 QListWidgetItem *const item = _probes.item(i);
77                 assert(item);
78                 item->setCheckState(set ? Qt::Checked : Qt::Unchecked);
79
80                 sr_probe *const probe = (sr_probe*)
81                         item->data(UserRole).value<void*>();
82                 assert(probe);
83                 probe->enabled = item->checkState() == Checked;
84         }
85 }
86
87 void Probes::item_changed(QListWidgetItem *item)
88 {
89         assert(item);
90         sr_probe *const probe = (sr_probe*)
91                 item->data(UserRole).value<void*>();
92         assert(probe);
93         probe->enabled = item->checkState() == Checked;
94 }
95
96 void Probes::enable_all_probes()
97 {
98         set_all_probes(true);
99 }
100
101 void Probes::disable_all_probes()
102 {
103         set_all_probes(false);
104 }
105
106 } // popups
107 } // pv