X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fdeviceoptions.h;h=491acfc45703a028f9c083b374713984a0d27d1d;hp=23db4f719bf4cec09812f01db01e859103f54000;hb=479bcabe6b4d0b1f51984085d9944ce6b03ed07c;hpb=9f6af8bd3a6bc12f9b32b91cd2a173a8a7763f5c diff --git a/pv/prop/binding/deviceoptions.h b/pv/prop/binding/deviceoptions.h index 23db4f71..491acfc4 100644 --- a/pv/prop/binding/deviceoptions.h +++ b/pv/prop/binding/deviceoptions.h @@ -21,6 +21,9 @@ #ifndef PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H #define PULSEVIEW_PV_PROP_BINDING_DEVICEOPTIONS_H +#include +#include + #include #include @@ -37,30 +40,31 @@ public: DeviceOptions(struct sr_dev_inst *sdi); private: - void expose_enum(const struct sr_config_info *info, - const std::vector > &values, - int opt); - void bind_stropt(const struct sr_config_info *info, int key); + static GVariant* config_getter( + const struct sr_dev_inst *sdi, int key); + static void config_setter( + const struct sr_dev_inst *sdi, int key, GVariant* value); - void bind_samplerate(const struct sr_config_info *info); - void bind_buffer_size(const struct sr_config_info *info); - void bind_time_base(const struct sr_config_info *info); - void bind_vdiv(const struct sr_config_info *info); + void bind_bool(const QString &name, int key); + void bind_enum(const QString &name, int key, + GVariant *const gvar_list, + boost::function printer = print_gvariant); + void bind_int(const QString &name, int key, QString suffix, + boost::optional< std::pair > range); -private: - static const void* enum_getter( - const struct sr_dev_inst *sdi, int key); + static QString print_gvariant(GVariant *const gvar); - static double samplerate_value_getter( + void bind_samplerate(const QString &name, + GVariant *const gvar_list); + static QString print_samplerate(GVariant *const gvar); + static GVariant* samplerate_double_getter( const struct sr_dev_inst *sdi); - static void samplerate_value_setter( - struct sr_dev_inst *sdi, double value); + static void samplerate_double_setter( + struct sr_dev_inst *sdi, GVariant *value); - static const void* samplerate_list_getter( - const struct sr_dev_inst *sdi); - static void samplerate_list_setter( - struct sr_dev_inst *sdi, const void* value); + static QString print_timebase(GVariant *const gvar); + static QString print_vdiv(GVariant *const gvar); protected: struct sr_dev_inst *const _sdi;