]> sigrok.org Git - pulseview.git/blame_incremental - pv/popups/channels.hpp
Session: Fix issue #67 by improving error handling
[pulseview.git] / pv / popups / channels.hpp
... / ...
CommitLineData
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 <functional>
24#include <map>
25#include <memory>
26#include <vector>
27
28#include <QCheckBox>
29#include <QFormLayout>
30#include <QGridLayout>
31#include <QLabel>
32#include <QPushButton>
33#include <QSignalMapper>
34
35#include <pv/widgets/popup.hpp>
36
37using std::function;
38using std::map;
39using std::shared_ptr;
40using std::vector;
41
42namespace sigrok {
43 class ChannelGroup;
44}
45
46namespace pv {
47
48class Session;
49
50namespace binding {
51class Device;
52}
53
54namespace data {
55class SignalBase;
56}
57
58namespace view {
59class Signal;
60}
61
62namespace popups {
63
64class Channels : public pv::widgets::Popup
65{
66 Q_OBJECT
67
68public:
69 Channels(Session &session, QWidget *parent);
70
71private:
72 void set_all_channels(bool set);
73
74 void enable_channels_conditionally(
75 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
76 void disable_channels_conditionally(
77 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
78
79 void populate_group(shared_ptr<sigrok::ChannelGroup> group,
80 const vector< shared_ptr<pv::data::SignalBase> > sigs);
81
82 void showEvent(QShowEvent *event);
83
84private Q_SLOTS:
85#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
86 void on_channel_checked(QObject *widget);
87#else
88 void on_channel_checked(QWidget *widget);
89#endif
90
91 void enable_all_channels();
92 void disable_all_channels();
93 void enable_all_logic_channels();
94 void disable_all_logic_channels();
95 void enable_all_analog_channels();
96 void disable_all_analog_channels();
97 void enable_all_named_channels();
98 void disable_all_unnamed_channels();
99 void enable_all_changing_channels();
100 void disable_all_non_changing_channels();
101
102private:
103 pv::Session &session_;
104
105 QFormLayout layout_;
106
107 bool updating_channels_;
108
109 vector< shared_ptr<pv::binding::Device> > group_bindings_;
110 map< QCheckBox*, shared_ptr<pv::data::SignalBase> > check_box_signal_map_;
111 map< shared_ptr<sigrok::ChannelGroup>, QLabel*> group_label_map_;
112
113 QGridLayout filter_buttons_bar_;
114 QPushButton enable_all_channels_, disable_all_channels_;
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_;
119
120 QSignalMapper check_box_mapper_;
121};
122
123} // namespace popups
124} // namespace pv
125
126#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP