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