]> sigrok.org Git - pulseview.git/blame - pv/prop/binding/deviceoptions.h
Adapt to config key capabilities.
[pulseview.git] / pv / prop / binding / deviceoptions.h
CommitLineData
cf47ef78
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
3820592a
JH
21#ifndef PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H
22#define PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H
cf47ef78 23
a2b92157 24#include <boost/optional.hpp>
4d5d5d6a 25
7b3810db
JH
26#include <QString>
27
6db73158
JH
28#include <glib.h>
29
cf47ef78
JH
30#include "binding.h"
31
6db73158 32#include <pv/prop/property.h>
19adbc2c
JH
33
34struct sr_dev_inst;
2445160a 35struct sr_channel_group;
19adbc2c 36
cf47ef78 37namespace pv {
19adbc2c 38
94574501 39namespace device {
19adbc2c 40class DevInst;
94574501 41}
19adbc2c 42
cf47ef78
JH
43namespace prop {
44namespace binding {
45
3820592a 46class DeviceOptions : public Binding
cf47ef78
JH
47{
48public:
f9abf97e 49 DeviceOptions(std::shared_ptr<pv::device::DevInst> dev_inst,
2445160a 50 const sr_channel_group *group = NULL);
cf47ef78 51
7b3810db 52private:
6db73158
JH
53 void bind_bool(const QString &name,
54 Property::Getter getter, Property::Setter setter);
4d5d5d6a
BV
55 void bind_enum(const QString &name, int key,
56 GVariant *const gvar_list,
6db73158 57 Property::Getter getter, Property::Setter setter,
d2344534 58 std::function<QString (GVariant*)> printer = print_gvariant);
6db73158
JH
59 void bind_int(const QString &name, QString suffix,
60 boost::optional< std::pair<int64_t, int64_t> > range,
61 Property::Getter getter, Property::Setter setter);
7b3810db 62
4d5d5d6a
BV
63 static QString print_timebase(GVariant *const gvar);
64 static QString print_vdiv(GVariant *const gvar);
62874984 65 static QString print_voltage_threshold(GVariant *const gvar);
9f6af8bd 66
cf47ef78 67protected:
f9abf97e 68 std::shared_ptr<device::DevInst> _dev_inst;
2445160a 69 const sr_channel_group *const _group;
cf47ef78
JH
70};
71
72} // binding
73} // prop
74} // pv
75
3820592a 76#endif // PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H