license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / popups / channels.hpp
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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef PULSEVIEW_PV_POPUPS_CHANNELS_HPP
21 #define PULSEVIEW_PV_POPUPS_CHANNELS_HPP
22
23 #include <map>
24 #include <memory>
25 #include <vector>
26
27 #include <QFormLayout>
28 #include <QHBoxLayout>
29 #include <QPushButton>
30 #include <QSignalMapper>
31
32 #include <pv/widgets/popup.hpp>
33
34 class QCheckBox;
35 class QGridLayout;
36
37 namespace sigrok {
38         class ChannelGroup;
39 }
40
41 namespace pv {
42
43 class Session;
44
45 namespace binding {
46 class Device;
47 }
48
49 namespace data {
50 class SignalBase;
51 }
52
53 namespace view {
54 class Signal;
55 }
56
57 namespace popups {
58
59 class Channels : public pv::widgets::Popup
60 {
61         Q_OBJECT
62
63 public:
64         Channels(Session &session, QWidget *parent);
65
66 private:
67         void set_all_channels(bool set);
68
69         void populate_group(std::shared_ptr<sigrok::ChannelGroup> group,
70                 const std::vector< std::shared_ptr<pv::data::SignalBase> > sigs);
71
72         QGridLayout* create_channel_group_grid(
73                 const std::vector< std::shared_ptr<pv::data::SignalBase> > sigs);
74
75 private:
76         void showEvent(QShowEvent *event);
77
78 private Q_SLOTS:
79         void on_channel_checked(QWidget *widget);
80
81         void enable_all_channels();
82         void disable_all_channels();
83
84 private:
85         pv::Session &session_;
86
87         QFormLayout layout_;
88
89         bool updating_channels_;
90
91         std::vector< std::shared_ptr<pv::binding::Device> >
92                  group_bindings_;
93         std::map< QCheckBox*, std::shared_ptr<pv::data::SignalBase> >
94                 check_box_signal_map_;
95
96         QHBoxLayout buttons_bar_;
97         QPushButton enable_all_channels_;
98         QPushButton disable_all_channels_;
99
100         QSignalMapper check_box_mapper_;
101 };
102
103 } // popups
104 } // pv
105
106 #endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP