]> sigrok.org Git - pulseview.git/blame_incremental - pv/popups/channels.hpp
Update sr_period_string usage
[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 <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
34class QCheckBox;
35class QGridLayout;
36
37namespace sigrok {
38 class ChannelGroup;
39}
40
41namespace pv {
42
43class Session;
44
45namespace binding {
46class Device;
47}
48
49namespace data {
50class SignalBase;
51}
52
53namespace view {
54class Signal;
55}
56
57namespace popups {
58
59class Channels : public pv::widgets::Popup
60{
61 Q_OBJECT
62
63public:
64 Channels(Session &session, QWidget *parent);
65
66private:
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
75private:
76 void showEvent(QShowEvent *event);
77
78private Q_SLOTS:
79 void on_channel_checked(QWidget *widget);
80
81 void enable_all_channels();
82 void disable_all_channels();
83
84private:
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