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