]> sigrok.org Git - pulseview.git/blame_incremental - pv/prop/binding/deviceoptions.h
Replaced boost::bind with C++11 lambdas
[pulseview.git] / pv / prop / binding / deviceoptions.h
... / ...
CommitLineData
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 <glib.h>
29
30#include "binding.h"
31
32#include <pv/prop/property.h>
33
34struct sr_dev_inst;
35struct sr_channel_group;
36
37namespace pv {
38
39namespace device {
40class DevInst;
41}
42
43namespace prop {
44namespace binding {
45
46class DeviceOptions : public Binding
47{
48public:
49 DeviceOptions(std::shared_ptr<pv::device::DevInst> dev_inst,
50 const sr_channel_group *group = NULL);
51
52private:
53 void bind_bool(const QString &name,
54 Property::Getter getter, Property::Setter setter);
55 void bind_enum(const QString &name, int key,
56 GVariant *const gvar_list,
57 Property::Getter getter, Property::Setter setter,
58 std::function<QString (GVariant*)> printer = print_gvariant);
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);
62
63 static QString print_timebase(GVariant *const gvar);
64 static QString print_vdiv(GVariant *const gvar);
65 static QString print_voltage_threshold(GVariant *const gvar);
66
67protected:
68 std::shared_ptr<device::DevInst> _dev_inst;
69 const sr_channel_group *const _group;
70};
71
72} // binding
73} // prop
74} // pv
75
76#endif // PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H