]> sigrok.org Git - pulseview.git/blame - pv/binding/device.hpp
MainWindow: Prevent Qt from restoring the dock widgets
[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
ef2986c0 33#include <libsigrokcxx/libsigrokcxx.hpp>
19adbc2c 34
cf47ef78 35namespace pv {
19adbc2c 36
cf47ef78
JH
37namespace binding {
38
3cc9ad7b 39class Device : public QObject, public Binding
cf47ef78 40{
e8d00928
ML
41 Q_OBJECT
42
cf47ef78 43public:
3cc9ad7b 44 Device(std::shared_ptr<sigrok::Configurable> configurable);
e8d00928
ML
45
46Q_SIGNALS:
47 void config_changed();
cf47ef78 48
7b3810db 49private:
6db73158 50 void bind_bool(const QString &name,
61703a01 51 prop::Property::Getter getter, prop::Property::Setter setter);
ef2986c0 52 void bind_enum(const QString &name,
7bb0fbf4
ML
53 const sigrok::ConfigKey *key,
54 std::set<const sigrok::Capability *> capabilities,
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);
49c62417 64 static QString print_probe_factor(Glib::VariantBase gvar);
9f6af8bd 65
cf47ef78 66protected:
8dbbc7f0 67 std::shared_ptr<sigrok::Configurable> configurable_;
cf47ef78
JH
68};
69
70} // binding
cf47ef78
JH
71} // pv
72
7a01bd36 73#endif // PULSEVIEW_PV_BINDING_DEVICE_HPP