]> sigrok.org Git - pulseview.git/blob - pv/popups/probes.h
3760f4200835791afe93a8322c99325a6079ee26
[pulseview.git] / pv / popups / probes.h
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
21 #ifndef PULSEVIEW_PV_POPUPS_PROBES_H
22 #define PULSEVIEW_PV_POPUPS_PROBES_H
23
24 #include <map>
25 #include <vector>
26
27 #include <boost/shared_ptr.hpp>
28
29 #include <QFormLayout>
30 #include <QHBoxLayout>
31 #include <QPushButton>
32 #include <QSignalMapper>
33
34 #include <pv/widgets/popup.h>
35
36 struct sr_probe_group;
37
38 class QCheckBox;
39 class QGridLayout;
40
41 namespace pv {
42
43 class SigSession;
44
45 namespace prop {
46 namespace binding {
47 class DeviceOptions;
48 }
49 }
50
51 namespace view {
52 class Signal;
53 }
54
55 namespace popups {
56
57 class Probes : public pv::widgets::Popup
58 {
59         Q_OBJECT
60
61 public:
62         Probes(SigSession &_session, QWidget *parent);
63
64 private:
65         void set_all_probes(bool set);
66
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
73 private:
74         void showEvent(QShowEvent *e);
75
76 private slots:
77         void on_probe_checked(QWidget *widget);
78
79         void enable_all_probes();
80         void disable_all_probes();
81
82 private:
83         pv::SigSession &_session;
84
85         QFormLayout _layout;
86
87         bool _updating_probes;
88
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
94         QHBoxLayout _buttons_bar;
95         QPushButton _enable_all_probes;
96         QPushButton _disable_all_probes;
97
98         QSignalMapper _check_box_mapper;
99 };
100
101 } // popups
102 } // pv
103
104 #endif // PULSEVIEW_PV_POPUPS_PROBES_H