X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fprop%2Fbinding%2Fdeviceoptions.hpp;fp=pv%2Fprop%2Fbinding%2Fdeviceoptions.hpp;h=0000000000000000000000000000000000000000;hb=61703a0124c7ace84caf415f7d491a3ad6f42599;hp=d027cccb08f2e0257f43a6d575e18680bf5d4d70;hpb=c1035a1452fa2aec5414975e83e531c10504b80c;p=pulseview.git diff --git a/pv/prop/binding/deviceoptions.hpp b/pv/prop/binding/deviceoptions.hpp deleted file mode 100644 index d027ccc..0000000 --- a/pv/prop/binding/deviceoptions.hpp +++ /dev/null @@ -1,74 +0,0 @@ -/* - * This file is part of the PulseView project. - * - * Copyright (C) 2012 Joel Holdsworth - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H -#define PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H - -#include - -#include -#include - -#include "binding.hpp" - -#include - -namespace sigrok { - class Configurable; -} - -namespace pv { - -namespace prop { -namespace binding { - -class DeviceOptions : public QObject, public Binding -{ - Q_OBJECT - -public: - DeviceOptions(std::shared_ptr configurable); - -Q_SIGNALS: - void config_changed(); - -private: - void bind_bool(const QString &name, - Property::Getter getter, Property::Setter setter); - void bind_enum(const QString &name, Glib::VariantContainerBase gvar_list, - Property::Getter getter, Property::Setter setter, - std::function printer = print_gvariant); - void bind_int(const QString &name, QString suffix, - boost::optional< std::pair > range, - Property::Getter getter, Property::Setter setter); - - static QString print_timebase(Glib::VariantBase gvar); - static QString print_vdiv(Glib::VariantBase gvar); - static QString print_voltage_threshold(Glib::VariantBase gvar); - -protected: - std::shared_ptr configurable_; -}; - -} // binding -} // prop -} // pv - -#endif // PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H