]> sigrok.org Git - pulseview.git/blob - pv/prop/binding/deviceoptions.h
1e422f67161d48d8349970cc4f04a52499073cae
[pulseview.git] / pv / prop / binding / deviceoptions.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_PROP_BINDING_DEVICEOPTIONS_H
22 #define PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H
23
24 #include <boost/optional.hpp>
25
26 #include <QString>
27
28 #include "binding.h"
29
30 #include <glib.h>
31
32 struct sr_dev_inst;
33 struct sr_channel_group;
34
35 namespace pv {
36
37 namespace device {
38 class DevInst;
39 }
40
41 namespace prop {
42 namespace binding {
43
44 class DeviceOptions : public Binding
45 {
46 public:
47         DeviceOptions(std::shared_ptr<pv::device::DevInst> dev_inst,
48                 const sr_channel_group *group = NULL);
49
50 private:
51         void bind_bool(const QString &name, int key);
52         void bind_enum(const QString &name, int key,
53                 GVariant *const gvar_list,
54                 std::function<QString (GVariant*)> printer = print_gvariant);
55         void bind_int(const QString &name, int key, QString suffix,
56                 boost::optional< std::pair<int64_t, int64_t> > range);
57
58         static QString print_timebase(GVariant *const gvar);
59         static QString print_vdiv(GVariant *const gvar);
60         static QString print_voltage_threshold(GVariant *const gvar);
61
62 protected:
63         std::shared_ptr<device::DevInst> _dev_inst;
64         const sr_channel_group *const _group;
65 };
66
67 } // binding
68 } // prop
69 } // pv
70
71 #endif // PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H