X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fdeviceoptions.cpp;h=c995ea697c01e6980adaefd9c0efa0676b36d35d;hp=0023eb2ea748bb608441e1835548d58deff0947a;hb=7c65709437184b09753d1bcacc02467b8f6171f1;hpb=e8d009288de28cb194bc7964f96677c2baf900c9 diff --git a/pv/prop/binding/deviceoptions.cpp b/pv/prop/binding/deviceoptions.cpp index 0023eb2e..c995ea69 100644 --- a/pv/prop/binding/deviceoptions.cpp +++ b/pv/prop/binding/deviceoptions.cpp @@ -22,12 +22,12 @@ #include -#include "deviceoptions.h" +#include "deviceoptions.hpp" -#include -#include -#include -#include +#include +#include +#include +#include #include @@ -49,7 +49,7 @@ namespace prop { namespace binding { DeviceOptions::DeviceOptions(shared_ptr configurable) : - _configurable(configurable) + configurable_(configurable) { assert(configurable); @@ -76,9 +76,9 @@ DeviceOptions::DeviceOptions(shared_ptr configurable) : const QString name = QString::fromStdString(name_str); const Property::Getter get = [&, key]() { - return _configurable->config_get(key); }; + return configurable_->config_get(key); }; const Property::Setter set = [&, key](Glib::VariantBase value) { - _configurable->config_set(key, value); + configurable_->config_set(key, value); config_changed(); }; @@ -86,7 +86,7 @@ DeviceOptions::DeviceOptions(shared_ptr configurable) : { case SR_CONF_SAMPLERATE: // Sample rate values are not bound because they are shown - // in the SamplingBar + // in the MainBar break; case SR_CONF_CAPTURE_RATIO: @@ -130,8 +130,8 @@ DeviceOptions::DeviceOptions(shared_ptr configurable) : void DeviceOptions::bind_bool(const QString &name, Property::Getter getter, Property::Setter setter) { - assert(_configurable); - _properties.push_back(shared_ptr(new Bool( + assert(configurable_); + properties_.push_back(shared_ptr(new Bool( name, getter, setter))); } @@ -142,13 +142,13 @@ void DeviceOptions::bind_enum(const QString &name, Glib::VariantBase gvar; vector< pair > values; - assert(_configurable); + assert(configurable_); Glib::VariantIter iter(gvar_list); while ((iter.next_value(gvar))) values.push_back(make_pair(gvar, printer(gvar))); - _properties.push_back(shared_ptr(new Enum(name, values, + properties_.push_back(shared_ptr(new Enum(name, values, getter, setter))); } @@ -156,9 +156,9 @@ void DeviceOptions::bind_int(const QString &name, QString suffix, optional< std::pair > range, Property::Getter getter, Property::Setter setter) { - assert(_configurable); + assert(configurable_); - _properties.push_back(shared_ptr(new Int(name, suffix, range, + properties_.push_back(shared_ptr(new Int(name, suffix, range, getter, setter))); } @@ -186,4 +186,3 @@ QString DeviceOptions::print_voltage_threshold(Glib::VariantBase gvar) } // binding } // prop } // pv -