]> sigrok.org Git - pulseview.git/blame - pv/popups/channels.hpp
device.cpp: Add missing SR_CONF_DATA_SOURCE entry.
[pulseview.git] / pv / popups / channels.hpp
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
cdb50f67
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_POPUPS_CHANNELS_HPP
21#define PULSEVIEW_PV_POPUPS_CHANNELS_HPP
cdb50f67 22
5b35d18c 23#include <functional>
bfc9f61e 24#include <map>
f9abf97e 25#include <memory>
488f068c
JH
26#include <vector>
27
efadabab 28#include <QCheckBox>
488f068c 29#include <QFormLayout>
efadabab 30#include <QGridLayout>
9fa8a63c 31#include <QHBoxLayout>
ec2aadfe 32#include <QLabel>
65cbcf46 33#include <QPushButton>
bfc9f61e 34#include <QSignalMapper>
cdb50f67 35
2acdb232 36#include <pv/widgets/popup.hpp>
cdb50f67 37
5b35d18c 38using std::function;
6f925ba9
UH
39using std::map;
40using std::shared_ptr;
41using std::vector;
42
e8d00928
ML
43namespace sigrok {
44 class ChannelGroup;
45}
46
cdb50f67 47namespace pv {
aca00b1e 48
2b81ae46 49class Session;
aca00b1e 50
488f068c 51namespace binding {
3cc9ad7b 52class Device;
488f068c 53}
488f068c 54
bf0edd2b
SA
55namespace data {
56class SignalBase;
57}
58
488f068c
JH
59namespace view {
60class Signal;
61}
62
51d4a9ab 63namespace popups {
cdb50f67 64
6ac6242b 65class Channels : public pv::widgets::Popup
cdb50f67 66{
ed773982
JH
67 Q_OBJECT
68
cdb50f67 69public:
520362f8 70 Channels(Session &session, QWidget *parent);
f23cd1e5 71
cdb50f67 72private:
6ac6242b 73 void set_all_channels(bool set);
5b35d18c
SA
74 void set_all_channels_conditionally(
75 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
ed773982 76
6f925ba9
UH
77 void populate_group(shared_ptr<sigrok::ChannelGroup> group,
78 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 79
2445160a 80 QGridLayout* create_channel_group_grid(
6f925ba9 81 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 82
b7b659aa 83private:
d9ea9628 84 void showEvent(QShowEvent *event);
b7b659aa 85
e9213170 86private Q_SLOTS:
6ac6242b 87 void on_channel_checked(QWidget *widget);
51d4a9ab 88
6ac6242b
ML
89 void enable_all_channels();
90 void disable_all_channels();
5b35d18c
SA
91 void enable_all_logic_channels();
92 void enable_all_analog_channels();
93 void enable_all_named_channels();
94 void enable_all_changing_channels();
ed773982 95
0740907f 96private:
2b81ae46 97 pv::Session &session_;
0740907f 98
8dbbc7f0 99 QFormLayout layout_;
0740907f 100
8dbbc7f0 101 bool updating_channels_;
b7b659aa 102
6f925ba9
UH
103 vector< shared_ptr<pv::binding::Device> > group_bindings_;
104 map< QCheckBox*, shared_ptr<pv::data::SignalBase> >
8dbbc7f0 105 check_box_signal_map_;
b5d20c6d 106 map< shared_ptr<sigrok::ChannelGroup>, QLabel*> group_label_map_;
488f068c 107
9fa8a63c 108 QHBoxLayout buttons_bar_;
5b35d18c
SA
109 QPushButton enable_all_channels_, disable_all_channels_;
110 QPushButton enable_all_logic_channels_, enable_all_analog_channels_;
111 QPushButton enable_all_named_channels_, enable_all_changing_channels_;
488f068c 112
8dbbc7f0 113 QSignalMapper check_box_mapper_;
cdb50f67
JH
114};
115
870ea3db
UH
116} // namespace popups
117} // namespace pv
cdb50f67 118
7a01bd36 119#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP