]> sigrok.org Git - pulseview.git/blame - pv/popups/probes.h
pv::data::decode::Annotation: Add pd_index() and set_pd_index().
[pulseview.git] / pv / popups / probes.h
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
51d4a9ab
JH
21#ifndef PULSEVIEW_PV_POPUPS_PROBES_H
22#define PULSEVIEW_PV_POPUPS_PROBES_H
cdb50f67 23
bfc9f61e 24#include <map>
488f068c
JH
25#include <vector>
26
bfc9f61e
JH
27#include <boost/shared_ptr.hpp>
28
488f068c 29#include <QFormLayout>
65cbcf46
JH
30#include <QHBoxLayout>
31#include <QPushButton>
bfc9f61e 32#include <QSignalMapper>
cdb50f67 33
51d4a9ab 34#include <pv/widgets/popup.h>
cdb50f67 35
bfc9f61e
JH
36struct sr_probe_group;
37
488f068c
JH
38class QCheckBox;
39class QGridLayout;
40
cdb50f67 41namespace pv {
aca00b1e
JH
42
43class SigSession;
44
488f068c
JH
45namespace prop {
46namespace binding {
47class DeviceOptions;
48}
49}
50
51namespace view {
52class Signal;
53}
54
51d4a9ab 55namespace popups {
cdb50f67 56
51d4a9ab 57class Probes : public pv::widgets::Popup
cdb50f67 58{
ed773982
JH
59 Q_OBJECT
60
cdb50f67 61public:
aca00b1e 62 Probes(SigSession &_session, QWidget *parent);
f23cd1e5 63
cdb50f67 64private:
ed773982
JH
65 void set_all_probes(bool set);
66
488f068c
JH
67 void populate_group(const sr_probe_group *group,
68 const std::vector< boost::shared_ptr<pv::view::Signal> > sigs);
69
70 QGridLayout* create_probe_group_grid(
71 const std::vector< boost::shared_ptr<pv::view::Signal> > sigs);
72
b7b659aa
JH
73private:
74 void showEvent(QShowEvent *e);
75
ed773982 76private slots:
488f068c 77 void on_probe_checked(QWidget *widget);
51d4a9ab 78
ed773982
JH
79 void enable_all_probes();
80 void disable_all_probes();
81
0740907f 82private:
aca00b1e 83 pv::SigSession &_session;
0740907f 84
488f068c 85 QFormLayout _layout;
0740907f 86
b7b659aa
JH
87 bool _updating_probes;
88
488f068c
JH
89 std::vector< boost::shared_ptr<pv::prop::binding::DeviceOptions> >
90 _group_bindings;
91 std::map< QCheckBox*, boost::shared_ptr<pv::view::Signal> >
92 _check_box_signal_map;
93
65cbcf46
JH
94 QHBoxLayout _buttons_bar;
95 QPushButton _enable_all_probes;
96 QPushButton _disable_all_probes;
488f068c
JH
97
98 QSignalMapper _check_box_mapper;
cdb50f67
JH
99};
100
51d4a9ab
JH
101} // popups
102} // pv
cdb50f67 103
51d4a9ab 104#endif // PULSEVIEW_PV_POPUPS_PROBES_H