]> sigrok.org Git - pulseview.git/blame - pv/popups/channels.hpp
SignalBase: Default to dynamic conversion preset, not custom values
[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
bfc9f61e 23#include <map>
f9abf97e 24#include <memory>
488f068c
JH
25#include <vector>
26
27#include <QFormLayout>
65cbcf46
JH
28#include <QHBoxLayout>
29#include <QPushButton>
bfc9f61e 30#include <QSignalMapper>
cdb50f67 31
2acdb232 32#include <pv/widgets/popup.hpp>
cdb50f67 33
6f925ba9
UH
34using std::map;
35using std::shared_ptr;
36using std::vector;
37
488f068c
JH
38class QCheckBox;
39class QGridLayout;
40
e8d00928
ML
41namespace sigrok {
42 class ChannelGroup;
43}
44
cdb50f67 45namespace pv {
aca00b1e 46
2b81ae46 47class Session;
aca00b1e 48
488f068c 49namespace binding {
3cc9ad7b 50class Device;
488f068c 51}
488f068c 52
bf0edd2b
SA
53namespace data {
54class SignalBase;
55}
56
488f068c
JH
57namespace view {
58class Signal;
59}
60
51d4a9ab 61namespace popups {
cdb50f67 62
6ac6242b 63class Channels : public pv::widgets::Popup
cdb50f67 64{
ed773982
JH
65 Q_OBJECT
66
cdb50f67 67public:
520362f8 68 Channels(Session &session, QWidget *parent);
f23cd1e5 69
cdb50f67 70private:
6ac6242b 71 void set_all_channels(bool set);
ed773982 72
6f925ba9
UH
73 void populate_group(shared_ptr<sigrok::ChannelGroup> group,
74 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 75
2445160a 76 QGridLayout* create_channel_group_grid(
6f925ba9 77 const vector< shared_ptr<pv::data::SignalBase> > sigs);
488f068c 78
b7b659aa 79private:
d9ea9628 80 void showEvent(QShowEvent *event);
b7b659aa 81
e9213170 82private Q_SLOTS:
6ac6242b 83 void on_channel_checked(QWidget *widget);
51d4a9ab 84
6ac6242b
ML
85 void enable_all_channels();
86 void disable_all_channels();
ed773982 87
0740907f 88private:
2b81ae46 89 pv::Session &session_;
0740907f 90
8dbbc7f0 91 QFormLayout layout_;
0740907f 92
8dbbc7f0 93 bool updating_channels_;
b7b659aa 94
6f925ba9
UH
95 vector< shared_ptr<pv::binding::Device> > group_bindings_;
96 map< QCheckBox*, shared_ptr<pv::data::SignalBase> >
8dbbc7f0 97 check_box_signal_map_;
488f068c 98
8dbbc7f0
JH
99 QHBoxLayout buttons_bar_;
100 QPushButton enable_all_channels_;
101 QPushButton disable_all_channels_;
488f068c 102
8dbbc7f0 103 QSignalMapper check_box_mapper_;
cdb50f67
JH
104};
105
870ea3db
UH
106} // namespace popups
107} // namespace pv
cdb50f67 108
7a01bd36 109#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP