]> sigrok.org Git - pulseview.git/blame - pv/binding/device.hpp
Modified header guards to match file names
[pulseview.git] / pv / binding / device.hpp
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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_BINDING_DEVICE_HPP
22#define PULSEVIEW_PV_BINDING_DEVICE_HPP
cf47ef78 23
a2b92157 24#include <boost/optional.hpp>
4d5d5d6a 25
e8d00928 26#include <QObject>
7b3810db
JH
27#include <QString>
28
2acdb232 29#include "binding.hpp"
cf47ef78 30
2acdb232 31#include <pv/prop/property.hpp>
19adbc2c 32
e8d00928
ML
33namespace sigrok {
34 class Configurable;
35}
19adbc2c 36
cf47ef78 37namespace pv {
19adbc2c 38
cf47ef78
JH
39namespace binding {
40
3cc9ad7b 41class Device : public QObject, public Binding
cf47ef78 42{
e8d00928
ML
43 Q_OBJECT
44
cf47ef78 45public:
3cc9ad7b 46 Device(std::shared_ptr<sigrok::Configurable> configurable);
e8d00928
ML
47
48Q_SIGNALS:
49 void config_changed();
cf47ef78 50
7b3810db 51private:
6db73158 52 void bind_bool(const QString &name,
61703a01 53 prop::Property::Getter getter, prop::Property::Setter setter);
e8d00928 54 void bind_enum(const QString &name, Glib::VariantContainerBase gvar_list,
61703a01 55 prop::Property::Getter getter, prop::Property::Setter setter,
e8d00928 56 std::function<QString (Glib::VariantBase)> printer = print_gvariant);
6db73158
JH
57 void bind_int(const QString &name, QString suffix,
58 boost::optional< std::pair<int64_t, int64_t> > range,
61703a01 59 prop::Property::Getter getter, prop::Property::Setter setter);
7b3810db 60
e8d00928
ML
61 static QString print_timebase(Glib::VariantBase gvar);
62 static QString print_vdiv(Glib::VariantBase gvar);
63 static QString print_voltage_threshold(Glib::VariantBase gvar);
9f6af8bd 64
cf47ef78 65protected:
8dbbc7f0 66 std::shared_ptr<sigrok::Configurable> configurable_;
cf47ef78
JH
67};
68
69} // binding
cf47ef78
JH
70} // pv
71
7a01bd36 72#endif // PULSEVIEW_PV_BINDING_DEVICE_HPP