]> sigrok.org Git - pulseview.git/blame_incremental - pv/popups/channels.hpp
Channels: Re-arrange selector buttons
[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 <QPushButton>
32#include <QSignalMapper>
33
34#include <pv/widgets/popup.hpp>
35
36using std::function;
37using std::map;
38using std::shared_ptr;
39using std::vector;
40
41namespace sigrok {
42 class ChannelGroup;
43}
44
45namespace pv {
46
47class Session;
48
49namespace binding {
50class Device;
51}
52
53namespace data {
54class SignalBase;
55}
56
57namespace view {
58class Signal;
59}
60
61namespace popups {
62
63class Channels : public pv::widgets::Popup
64{
65 Q_OBJECT
66
67public:
68 Channels(Session &session, QWidget *parent);
69
70private:
71 void set_all_channels(bool set);
72 void set_all_channels_conditionally(
73 function<bool (const shared_ptr<data::SignalBase>)> cond_func);
74
75 void populate_group(shared_ptr<sigrok::ChannelGroup> group,
76 const vector< shared_ptr<pv::data::SignalBase> > sigs);
77
78 QGridLayout* create_channel_group_grid(
79 const vector< shared_ptr<pv::data::SignalBase> > sigs);
80
81private:
82 void showEvent(QShowEvent *event);
83
84private Q_SLOTS:
85 void on_channel_checked(QWidget *widget);
86
87 void enable_all_channels();
88 void disable_all_channels();
89 void enable_all_logic_channels();
90 void enable_all_analog_channels();
91 void enable_all_named_channels();
92 void enable_all_changing_channels();
93
94private:
95 pv::Session &session_;
96
97 QFormLayout layout_;
98
99 bool updating_channels_;
100
101 vector< shared_ptr<pv::binding::Device> > group_bindings_;
102 map< QCheckBox*, shared_ptr<pv::data::SignalBase> >
103 check_box_signal_map_;
104 map< shared_ptr<sigrok::ChannelGroup>, QLabel*> group_label_map_;
105
106 QGridLayout buttons_bar_;
107 QPushButton enable_all_channels_, disable_all_channels_;
108 QPushButton enable_all_logic_channels_, enable_all_analog_channels_;
109 QPushButton enable_all_named_channels_, enable_all_changing_channels_;
110
111 QSignalMapper check_box_mapper_;
112};
113
114} // namespace popups
115} // namespace pv
116
117#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP