]> sigrok.org Git - pulseview.git/blame - pv/popups/channels.hpp
DecoderSelector: Make PD names italic
[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);
8d49811c 73
7ceb2376 74 void enable_channels_conditionally(
5b35d18c 75 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
8d49811c
SA
76 void disable_channels_conditionally(
77 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
ed773982 78
6f925ba9
UH
79 void populate_group(shared_ptr<sigrok::ChannelGroup> group,
80 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 81
2445160a 82 QGridLayout* create_channel_group_grid(
6f925ba9 83 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 84
d9ea9628 85 void showEvent(QShowEvent *event);
b7b659aa 86
e9213170 87private Q_SLOTS:
6ac6242b 88 void on_channel_checked(QWidget *widget);
51d4a9ab 89
6ac6242b
ML
90 void enable_all_channels();
91 void disable_all_channels();
5b35d18c 92 void enable_all_logic_channels();
8d49811c 93 void disable_all_logic_channels();
5b35d18c 94 void enable_all_analog_channels();
8d49811c 95 void disable_all_analog_channels();
5b35d18c 96 void enable_all_named_channels();
8d49811c 97 void disable_all_unnamed_channels();
5b35d18c 98 void enable_all_changing_channels();
8d49811c 99 void disable_all_non_changing_channels();
ed773982 100
0740907f 101private:
2b81ae46 102 pv::Session &session_;
0740907f 103
8dbbc7f0 104 QFormLayout layout_;
0740907f 105
8dbbc7f0 106 bool updating_channels_;
b7b659aa 107
6f925ba9
UH
108 vector< shared_ptr<pv::binding::Device> > group_bindings_;
109 map< QCheckBox*, shared_ptr<pv::data::SignalBase> >
8dbbc7f0 110 check_box_signal_map_;
b5d20c6d 111 map< shared_ptr<sigrok::ChannelGroup>, QLabel*> group_label_map_;
488f068c 112
8d49811c 113 QGridLayout filter_buttons_bar_;
5b35d18c 114 QPushButton enable_all_channels_, disable_all_channels_;
8d49811c
SA
115 QPushButton enable_all_logic_channels_, disable_all_logic_channels_;
116 QPushButton enable_all_analog_channels_, disable_all_analog_channels_;
117 QPushButton enable_all_named_channels_, disable_all_unnamed_channels_;
118 QPushButton enable_all_changing_channels_, disable_all_non_changing_channels_;
488f068c 119
8dbbc7f0 120 QSignalMapper check_box_mapper_;
cdb50f67
JH
121};
122
870ea3db
UH
123} // namespace popups
124} // namespace pv
cdb50f67 125
7a01bd36 126#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP