pv/storesession.cpp
pv/util.cpp
pv/binding/binding.cpp
- pv/binding/deviceoptions.cpp
+ pv/binding/device.cpp
pv/data/analog.cpp
pv/data/analogsegment.cpp
pv/data/logic.cpp
pv/mainwindow.hpp
pv/session.hpp
pv/storesession.hpp
- pv/binding/deviceoptions.hpp
+ pv/binding/device.hpp
pv/dialogs/about.hpp
pv/dialogs/connect.hpp
pv/dialogs/storeprogress.hpp
if(ENABLE_DECODE)
list(APPEND pulseview_SOURCES
- pv/binding/decoderoptions.cpp
+ pv/binding/decoder.cpp
pv/data/decoderstack.cpp
pv/data/decode/annotation.cpp
pv/data/decode/decoder.cpp
--- /dev/null
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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
+ */
+
+#include <libsigrokdecode/libsigrokdecode.h>
+
+#include "decoder.hpp"
+
+#include <boost/none_t.hpp>
+
+#include <pv/data/decoderstack.hpp>
+#include <pv/data/decode/decoder.hpp>
+#include <pv/prop/double.hpp>
+#include <pv/prop/enum.hpp>
+#include <pv/prop/int.hpp>
+#include <pv/prop/string.hpp>
+
+using boost::none;
+using std::make_pair;
+using std::map;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+using std::vector;
+
+using pv::prop::Double;
+using pv::prop::Enum;
+using pv::prop::Int;
+using pv::prop::Property;
+using pv::prop::String;
+
+namespace pv {
+namespace binding {
+
+Decoder::Decoder(
+ shared_ptr<pv::data::DecoderStack> decoder_stack,
+ shared_ptr<data::decode::Decoder> decoder) :
+ decoder_stack_(decoder_stack),
+ decoder_(decoder)
+{
+ assert(decoder_);
+
+ const srd_decoder *const dec = decoder_->decoder();
+ assert(dec);
+
+ for (GSList *l = dec->options; l; l = l->next)
+ {
+ const srd_decoder_option *const opt =
+ (srd_decoder_option*)l->data;
+
+ const QString name = QString::fromUtf8(opt->desc);
+
+ const Property::Getter get = [&, opt]() {
+ return getter(opt->id); };
+ const Property::Setter set = [&, opt](Glib::VariantBase value) {
+ setter(opt->id, value); };
+
+ shared_ptr<Property> prop;
+
+ if (opt->values)
+ prop = bind_enum(name, opt, get, set);
+ else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("d")))
+ prop = shared_ptr<Property>(new Double(name, 2, "",
+ none, none, get, set));
+ else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("x")))
+ prop = shared_ptr<Property>(
+ new Int(name, "", none, get, set));
+ else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("s")))
+ prop = shared_ptr<Property>(
+ new String(name, get, set));
+ else
+ continue;
+
+ properties_.push_back(prop);
+ }
+}
+
+shared_ptr<Property> Decoder::bind_enum(
+ const QString &name, const srd_decoder_option *option,
+ Property::Getter getter, Property::Setter setter)
+{
+ vector< pair<Glib::VariantBase, QString> > values;
+ for (GSList *l = option->values; l; l = l->next) {
+ Glib::VariantBase var = Glib::VariantBase((GVariant*)l->data, true);
+ values.push_back(make_pair(var, print_gvariant(var)));
+ }
+
+ return shared_ptr<Property>(new Enum(name, values, getter, setter));
+}
+
+Glib::VariantBase Decoder::getter(const char *id)
+{
+ GVariant *val = NULL;
+
+ assert(decoder_);
+
+ // Get the value from the hash table if it is already present
+ const map<string, GVariant*>& options = decoder_->options();
+ const auto iter = options.find(id);
+
+ if (iter != options.end())
+ val = (*iter).second;
+ else
+ {
+ assert(decoder_->decoder());
+
+ // Get the default value if not
+ for (GSList *l = decoder_->decoder()->options; l; l = l->next)
+ {
+ const srd_decoder_option *const opt =
+ (srd_decoder_option*)l->data;
+ if (strcmp(opt->id, id) == 0) {
+ val = opt->def;
+ break;
+ }
+ }
+ }
+
+ if (val)
+ return Glib::VariantBase(val, true);
+ else
+ return Glib::VariantBase();
+}
+
+void Decoder::setter(const char *id, Glib::VariantBase value)
+{
+ assert(decoder_);
+ decoder_->set_option(id, value.gobj());
+
+ assert(decoder_stack_);
+ decoder_stack_->begin_decode();
+}
+
+} // binding
+} // pv
--- /dev/null
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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_BINDING_DECODER_H
+#define PULSEVIEW_PV_BINDING_DECODER_H
+
+#include "binding.hpp"
+
+#include <pv/prop/property.hpp>
+
+struct srd_decoder_option;
+
+namespace pv {
+
+namespace data {
+class DecoderStack;
+namespace decode {
+class Decoder;
+}
+}
+
+namespace binding {
+
+class Decoder : public Binding
+{
+public:
+ Decoder(std::shared_ptr<pv::data::DecoderStack> decoder_stack,
+ std::shared_ptr<pv::data::decode::Decoder> decoder);
+
+private:
+ static std::shared_ptr<prop::Property> bind_enum(const QString &name,
+ const srd_decoder_option *option,
+ prop::Property::Getter getter, prop::Property::Setter setter);
+
+ Glib::VariantBase getter(const char *id);
+
+ void setter(const char *id, Glib::VariantBase value);
+
+private:
+ std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
+ std::shared_ptr<pv::data::decode::Decoder> decoder_;
+};
+
+} // binding
+} // pv
+
+#endif // PULSEVIEW_PV_BINDING_DECODER_H
+++ /dev/null
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
- *
- * 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
- */
-
-#include <libsigrokdecode/libsigrokdecode.h>
-
-#include "decoderoptions.hpp"
-
-#include <boost/none_t.hpp>
-
-#include <pv/data/decoderstack.hpp>
-#include <pv/data/decode/decoder.hpp>
-#include <pv/prop/double.hpp>
-#include <pv/prop/enum.hpp>
-#include <pv/prop/int.hpp>
-#include <pv/prop/string.hpp>
-
-using boost::none;
-using std::make_pair;
-using std::map;
-using std::pair;
-using std::shared_ptr;
-using std::string;
-using std::vector;
-
-using pv::prop::Double;
-using pv::prop::Enum;
-using pv::prop::Int;
-using pv::prop::Property;
-using pv::prop::String;
-
-namespace pv {
-namespace binding {
-
-DecoderOptions::DecoderOptions(
- shared_ptr<pv::data::DecoderStack> decoder_stack,
- shared_ptr<data::decode::Decoder> decoder) :
- decoder_stack_(decoder_stack),
- decoder_(decoder)
-{
- assert(decoder_);
-
- const srd_decoder *const dec = decoder_->decoder();
- assert(dec);
-
- for (GSList *l = dec->options; l; l = l->next)
- {
- const srd_decoder_option *const opt =
- (srd_decoder_option*)l->data;
-
- const QString name = QString::fromUtf8(opt->desc);
-
- const Property::Getter get = [&, opt]() {
- return getter(opt->id); };
- const Property::Setter set = [&, opt](Glib::VariantBase value) {
- setter(opt->id, value); };
-
- shared_ptr<Property> prop;
-
- if (opt->values)
- prop = bind_enum(name, opt, get, set);
- else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("d")))
- prop = shared_ptr<Property>(new Double(name, 2, "",
- none, none, get, set));
- else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("x")))
- prop = shared_ptr<Property>(
- new Int(name, "", none, get, set));
- else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("s")))
- prop = shared_ptr<Property>(
- new String(name, get, set));
- else
- continue;
-
- properties_.push_back(prop);
- }
-}
-
-shared_ptr<Property> DecoderOptions::bind_enum(
- const QString &name, const srd_decoder_option *option,
- Property::Getter getter, Property::Setter setter)
-{
- vector< pair<Glib::VariantBase, QString> > values;
- for (GSList *l = option->values; l; l = l->next) {
- Glib::VariantBase var = Glib::VariantBase((GVariant*)l->data, true);
- values.push_back(make_pair(var, print_gvariant(var)));
- }
-
- return shared_ptr<Property>(new Enum(name, values, getter, setter));
-}
-
-Glib::VariantBase DecoderOptions::getter(const char *id)
-{
- GVariant *val = NULL;
-
- assert(decoder_);
-
- // Get the value from the hash table if it is already present
- const map<string, GVariant*>& options = decoder_->options();
- const auto iter = options.find(id);
-
- if (iter != options.end())
- val = (*iter).second;
- else
- {
- assert(decoder_->decoder());
-
- // Get the default value if not
- for (GSList *l = decoder_->decoder()->options; l; l = l->next)
- {
- const srd_decoder_option *const opt =
- (srd_decoder_option*)l->data;
- if (strcmp(opt->id, id) == 0) {
- val = opt->def;
- break;
- }
- }
- }
-
- if (val)
- return Glib::VariantBase(val, true);
- else
- return Glib::VariantBase();
-}
-
-void DecoderOptions::setter(const char *id, Glib::VariantBase value)
-{
- assert(decoder_);
- decoder_->set_option(id, value.gobj());
-
- assert(decoder_stack_);
- decoder_stack_->begin_decode();
-}
-
-} // binding
-} // pv
+++ /dev/null
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
- *
- * 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_BINDING_DECODEROPTIONS_H
-#define PULSEVIEW_PV_BINDING_DECODEROPTIONS_H
-
-#include "binding.hpp"
-
-#include <pv/prop/property.hpp>
-
-struct srd_decoder_option;
-
-namespace pv {
-
-namespace data {
-class DecoderStack;
-namespace decode {
-class Decoder;
-}
-}
-
-namespace binding {
-
-class DecoderOptions : public Binding
-{
-public:
- DecoderOptions(std::shared_ptr<pv::data::DecoderStack> decoder_stack,
- std::shared_ptr<pv::data::decode::Decoder> decoder);
-
-private:
- static std::shared_ptr<prop::Property> bind_enum(const QString &name,
- const srd_decoder_option *option,
- prop::Property::Getter getter, prop::Property::Setter setter);
-
- Glib::VariantBase getter(const char *id);
-
- void setter(const char *id, Glib::VariantBase value);
-
-private:
- std::shared_ptr<pv::data::DecoderStack> decoder_stack_;
- std::shared_ptr<pv::data::decode::Decoder> decoder_;
-};
-
-} // binding
-} // pv
-
-#endif // PULSEVIEW_PV_BINDING_DECODEROPTIONS_H
--- /dev/null
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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
+ */
+
+#include <stdint.h>
+
+#include <QDebug>
+
+#include "device.hpp"
+
+#include <pv/prop/bool.hpp>
+#include <pv/prop/double.hpp>
+#include <pv/prop/enum.hpp>
+#include <pv/prop/int.hpp>
+
+#include <libsigrokcxx/libsigrokcxx.hpp>
+
+using boost::optional;
+using std::function;
+using std::make_pair;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+using std::vector;
+
+using sigrok::Capability;
+using sigrok::Configurable;
+using sigrok::ConfigKey;
+using sigrok::Error;
+
+using pv::prop::Bool;
+using pv::prop::Double;
+using pv::prop::Enum;
+using pv::prop::Int;
+using pv::prop::Property;
+
+namespace pv {
+namespace binding {
+
+Device::Device(shared_ptr<sigrok::Configurable> configurable) :
+ configurable_(configurable)
+{
+ assert(configurable);
+
+ for (auto entry : configurable->config_keys(ConfigKey::DEVICE_OPTIONS)) {
+ auto key = entry.first;
+ auto capabilities = entry.second;
+
+ Glib::VariantContainerBase gvar_list;
+
+ if (!capabilities.count(Capability::GET) ||
+ !capabilities.count(Capability::SET))
+ continue;
+
+ if (capabilities.count(Capability::LIST))
+ gvar_list = configurable->config_list(key);
+
+ string name_str;
+ try {
+ name_str = key->description();
+ } catch (Error e) {
+ name_str = key->name();
+ }
+
+ const QString name = QString::fromStdString(name_str);
+
+ const Property::Getter get = [&, key]() {
+ return configurable_->config_get(key); };
+ const Property::Setter set = [&, key](Glib::VariantBase value) {
+ configurable_->config_set(key, value);
+ config_changed();
+ };
+
+ switch (key->id())
+ {
+ case SR_CONF_SAMPLERATE:
+ // Sample rate values are not bound because they are shown
+ // in the MainBar
+ break;
+
+ case SR_CONF_CAPTURE_RATIO:
+ bind_int(name, "%", pair<int64_t, int64_t>(0, 100),
+ get, set);
+ break;
+
+ case SR_CONF_PATTERN_MODE:
+ case SR_CONF_BUFFERSIZE:
+ case SR_CONF_TRIGGER_SOURCE:
+ case SR_CONF_TRIGGER_SLOPE:
+ case SR_CONF_FILTER:
+ case SR_CONF_COUPLING:
+ case SR_CONF_CLOCK_EDGE:
+ bind_enum(name, gvar_list, get, set);
+ break;
+
+ case SR_CONF_EXTERNAL_CLOCK:
+ case SR_CONF_RLE:
+ bind_bool(name, get, set);
+ break;
+
+ case SR_CONF_TIMEBASE:
+ bind_enum(name, gvar_list, get, set, print_timebase);
+ break;
+
+ case SR_CONF_VDIV:
+ bind_enum(name, gvar_list, get, set, print_vdiv);
+ break;
+
+ case SR_CONF_VOLTAGE_THRESHOLD:
+ bind_enum(name, gvar_list, get, set, print_voltage_threshold);
+ break;
+
+ default:
+ break;
+ }
+ }
+}
+
+void Device::bind_bool(const QString &name,
+ Property::Getter getter, Property::Setter setter)
+{
+ assert(configurable_);
+ properties_.push_back(shared_ptr<Property>(new Bool(
+ name, getter, setter)));
+}
+
+void Device::bind_enum(const QString &name,
+ Glib::VariantContainerBase gvar_list, Property::Getter getter,
+ Property::Setter setter, function<QString (Glib::VariantBase)> printer)
+{
+ Glib::VariantBase gvar;
+ vector< pair<Glib::VariantBase, QString> > values;
+
+ 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<Property>(new Enum(name, values,
+ getter, setter)));
+}
+
+void Device::bind_int(const QString &name, QString suffix,
+ optional< std::pair<int64_t, int64_t> > range,
+ Property::Getter getter, Property::Setter setter)
+{
+ assert(configurable_);
+
+ properties_.push_back(shared_ptr<Property>(new Int(name, suffix, range,
+ getter, setter)));
+}
+
+QString Device::print_timebase(Glib::VariantBase gvar)
+{
+ uint64_t p, q;
+ g_variant_get(gvar.gobj(), "(tt)", &p, &q);
+ return QString::fromUtf8(sr_period_string(p * q));
+}
+
+QString Device::print_vdiv(Glib::VariantBase gvar)
+{
+ uint64_t p, q;
+ g_variant_get(gvar.gobj(), "(tt)", &p, &q);
+ return QString::fromUtf8(sr_voltage_string(p, q));
+}
+
+QString Device::print_voltage_threshold(Glib::VariantBase gvar)
+{
+ gdouble lo, hi;
+ g_variant_get(gvar.gobj(), "(dd)", &lo, &hi);
+ return QString("L<%1V H>%2V").arg(lo, 0, 'f', 1).arg(hi, 0, 'f', 1);
+}
+
+} // binding
+} // pv
--- /dev/null
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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_BINDING_DEVICE_H
+#define PULSEVIEW_PV_BINDING_DEVICE_H
+
+#include <boost/optional.hpp>
+
+#include <QObject>
+#include <QString>
+
+#include "binding.hpp"
+
+#include <pv/prop/property.hpp>
+
+namespace sigrok {
+ class Configurable;
+}
+
+namespace pv {
+
+namespace binding {
+
+class Device : public QObject, public Binding
+{
+ Q_OBJECT
+
+public:
+ Device(std::shared_ptr<sigrok::Configurable> configurable);
+
+Q_SIGNALS:
+ void config_changed();
+
+private:
+ void bind_bool(const QString &name,
+ prop::Property::Getter getter, prop::Property::Setter setter);
+ void bind_enum(const QString &name, Glib::VariantContainerBase gvar_list,
+ prop::Property::Getter getter, prop::Property::Setter setter,
+ std::function<QString (Glib::VariantBase)> printer = print_gvariant);
+ void bind_int(const QString &name, QString suffix,
+ boost::optional< std::pair<int64_t, int64_t> > range,
+ prop::Property::Getter getter, prop::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<sigrok::Configurable> configurable_;
+};
+
+} // binding
+} // pv
+
+#endif // PULSEVIEW_PV_BINDING_DEVICE_H
+++ /dev/null
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
- *
- * 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
- */
-
-#include <stdint.h>
-
-#include <QDebug>
-
-#include "deviceoptions.hpp"
-
-#include <pv/prop/bool.hpp>
-#include <pv/prop/double.hpp>
-#include <pv/prop/enum.hpp>
-#include <pv/prop/int.hpp>
-
-#include <libsigrokcxx/libsigrokcxx.hpp>
-
-using boost::optional;
-using std::function;
-using std::make_pair;
-using std::pair;
-using std::shared_ptr;
-using std::string;
-using std::vector;
-
-using sigrok::Capability;
-using sigrok::Configurable;
-using sigrok::ConfigKey;
-using sigrok::Error;
-
-using pv::prop::Bool;
-using pv::prop::Double;
-using pv::prop::Enum;
-using pv::prop::Int;
-using pv::prop::Property;
-
-namespace pv {
-namespace binding {
-
-DeviceOptions::DeviceOptions(shared_ptr<sigrok::Configurable> configurable) :
- configurable_(configurable)
-{
- assert(configurable);
-
- for (auto entry : configurable->config_keys(ConfigKey::DEVICE_OPTIONS)) {
- auto key = entry.first;
- auto capabilities = entry.second;
-
- Glib::VariantContainerBase gvar_list;
-
- if (!capabilities.count(Capability::GET) ||
- !capabilities.count(Capability::SET))
- continue;
-
- if (capabilities.count(Capability::LIST))
- gvar_list = configurable->config_list(key);
-
- string name_str;
- try {
- name_str = key->description();
- } catch (Error e) {
- name_str = key->name();
- }
-
- const QString name = QString::fromStdString(name_str);
-
- const Property::Getter get = [&, key]() {
- return configurable_->config_get(key); };
- const Property::Setter set = [&, key](Glib::VariantBase value) {
- configurable_->config_set(key, value);
- config_changed();
- };
-
- switch (key->id())
- {
- case SR_CONF_SAMPLERATE:
- // Sample rate values are not bound because they are shown
- // in the MainBar
- break;
-
- case SR_CONF_CAPTURE_RATIO:
- bind_int(name, "%", pair<int64_t, int64_t>(0, 100),
- get, set);
- break;
-
- case SR_CONF_PATTERN_MODE:
- case SR_CONF_BUFFERSIZE:
- case SR_CONF_TRIGGER_SOURCE:
- case SR_CONF_TRIGGER_SLOPE:
- case SR_CONF_FILTER:
- case SR_CONF_COUPLING:
- case SR_CONF_CLOCK_EDGE:
- bind_enum(name, gvar_list, get, set);
- break;
-
- case SR_CONF_EXTERNAL_CLOCK:
- case SR_CONF_RLE:
- bind_bool(name, get, set);
- break;
-
- case SR_CONF_TIMEBASE:
- bind_enum(name, gvar_list, get, set, print_timebase);
- break;
-
- case SR_CONF_VDIV:
- bind_enum(name, gvar_list, get, set, print_vdiv);
- break;
-
- case SR_CONF_VOLTAGE_THRESHOLD:
- bind_enum(name, gvar_list, get, set, print_voltage_threshold);
- break;
-
- default:
- break;
- }
- }
-}
-
-void DeviceOptions::bind_bool(const QString &name,
- Property::Getter getter, Property::Setter setter)
-{
- assert(configurable_);
- properties_.push_back(shared_ptr<Property>(new Bool(
- name, getter, setter)));
-}
-
-void DeviceOptions::bind_enum(const QString &name,
- Glib::VariantContainerBase gvar_list, Property::Getter getter,
- Property::Setter setter, function<QString (Glib::VariantBase)> printer)
-{
- Glib::VariantBase gvar;
- vector< pair<Glib::VariantBase, QString> > values;
-
- 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<Property>(new Enum(name, values,
- getter, setter)));
-}
-
-void DeviceOptions::bind_int(const QString &name, QString suffix,
- optional< std::pair<int64_t, int64_t> > range,
- Property::Getter getter, Property::Setter setter)
-{
- assert(configurable_);
-
- properties_.push_back(shared_ptr<Property>(new Int(name, suffix, range,
- getter, setter)));
-}
-
-QString DeviceOptions::print_timebase(Glib::VariantBase gvar)
-{
- uint64_t p, q;
- g_variant_get(gvar.gobj(), "(tt)", &p, &q);
- return QString::fromUtf8(sr_period_string(p * q));
-}
-
-QString DeviceOptions::print_vdiv(Glib::VariantBase gvar)
-{
- uint64_t p, q;
- g_variant_get(gvar.gobj(), "(tt)", &p, &q);
- return QString::fromUtf8(sr_voltage_string(p, q));
-}
-
-QString DeviceOptions::print_voltage_threshold(Glib::VariantBase gvar)
-{
- gdouble lo, hi;
- g_variant_get(gvar.gobj(), "(dd)", &lo, &hi);
- return QString("L<%1V H>%2V").arg(lo, 0, 'f', 1).arg(hi, 0, 'f', 1);
-}
-
-} // binding
-} // pv
+++ /dev/null
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
- *
- * 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_BINDING_DEVICEOPTIONS_H
-#define PULSEVIEW_PV_BINDING_DEVICEOPTIONS_H
-
-#include <boost/optional.hpp>
-
-#include <QObject>
-#include <QString>
-
-#include "binding.hpp"
-
-#include <pv/prop/property.hpp>
-
-namespace sigrok {
- class Configurable;
-}
-
-namespace pv {
-
-namespace binding {
-
-class DeviceOptions : public QObject, public Binding
-{
- Q_OBJECT
-
-public:
- DeviceOptions(std::shared_ptr<sigrok::Configurable> configurable);
-
-Q_SIGNALS:
- void config_changed();
-
-private:
- void bind_bool(const QString &name,
- prop::Property::Getter getter, prop::Property::Setter setter);
- void bind_enum(const QString &name, Glib::VariantContainerBase gvar_list,
- prop::Property::Getter getter, prop::Property::Setter setter,
- std::function<QString (Glib::VariantBase)> printer = print_gvariant);
- void bind_int(const QString &name, QString suffix,
- boost::optional< std::pair<int64_t, int64_t> > range,
- prop::Property::Getter getter, prop::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<sigrok::Configurable> configurable_;
-};
-
-} // binding
-} // pv
-
-#endif // PULSEVIEW_PV_BINDING_DEVICEOPTIONS_H
#include "channels.hpp"
-#include <pv/binding/deviceoptions.hpp>
+#include <pv/binding/device.hpp>
#include <pv/session.hpp>
#include <pv/view/signal.hpp>
void Channels::populate_group(shared_ptr<ChannelGroup> group,
const vector< shared_ptr<pv::view::Signal> > sigs)
{
- using pv::binding::DeviceOptions;
+ using pv::binding::Device;
// Only bind options if this is a group. We don't do it for general
// options, because these properties are shown in the device config
// popup.
- shared_ptr<DeviceOptions> binding;
+ shared_ptr<Device> binding;
if (group)
- binding = shared_ptr<DeviceOptions>(new DeviceOptions(group));
+ binding = shared_ptr<Device>(new Device(group));
// Create a title if the group is going to have any content
if ((!sigs.empty() || (binding && !binding->properties().empty())) &&
class Session;
namespace binding {
-class DeviceOptions;
+class Device;
}
namespace view {
bool updating_channels_;
- std::vector< std::shared_ptr<pv::binding::DeviceOptions> >
+ std::vector< std::shared_ptr<pv::binding::Device> >
group_bindings_;
std::map< QCheckBox*, std::shared_ptr<pv::view::Signal> >
check_box_signal_map_;
layout_.addWidget(binding_.get_property_form(this, true));
}
-pv::binding::DeviceOptions& DeviceOptions::binding()
+pv::binding::Device& DeviceOptions::binding()
{
return binding_;
}
#include <QGroupBox>
#include <QVBoxLayout>
-#include <pv/binding/deviceoptions.hpp>
+#include <pv/binding/device.hpp>
#include <pv/widgets/popup.hpp>
namespace sigrok {
DeviceOptions(std::shared_ptr<sigrok::Device> device,
QWidget *parent);
- pv::binding::DeviceOptions& binding();
+ pv::binding::Device& binding();
private:
std::shared_ptr<sigrok::Device> device_;
QVBoxLayout layout_;
- pv::binding::DeviceOptions binding_;
+ pv::binding::Device binding_;
};
} // namespace popups
}
// Add the options
- shared_ptr<binding::DecoderOptions> binding(
- new binding::DecoderOptions(decoder_stack_, dec));
+ shared_ptr<binding::Decoder> binding(
+ new binding::Decoder(decoder_stack_, dec));
binding->add_properties_to_form(decoder_form, true);
bindings_.push_back(binding);
#include <QSignalMapper>
-#include <pv/binding/decoderoptions.hpp>
+#include <pv/binding/decoder.hpp>
#include <pv/data/decode/row.hpp>
struct srd_channel;
uint64_t decode_start_, decode_end_;
- std::list< std::shared_ptr<pv::binding::DecoderOptions> >
+ std::list< std::shared_ptr<pv::binding::Decoder> >
bindings_;
std::list<ChannelSelector> channel_selectors_;
${PROJECT_SOURCE_DIR}/pv/storesession.cpp
${PROJECT_SOURCE_DIR}/pv/util.cpp
${PROJECT_SOURCE_DIR}/pv/binding/binding.cpp
- ${PROJECT_SOURCE_DIR}/pv/binding/deviceoptions.cpp
+ ${PROJECT_SOURCE_DIR}/pv/binding/device.cpp
${PROJECT_SOURCE_DIR}/pv/data/analog.cpp
${PROJECT_SOURCE_DIR}/pv/data/analogsegment.cpp
${PROJECT_SOURCE_DIR}/pv/data/logic.cpp
set(pulseview_TEST_HEADERS
${PROJECT_SOURCE_DIR}/pv/session.hpp
${PROJECT_SOURCE_DIR}/pv/storesession.hpp
- ${PROJECT_SOURCE_DIR}/pv/binding/deviceoptions.hpp
+ ${PROJECT_SOURCE_DIR}/pv/binding/device.hpp
${PROJECT_SOURCE_DIR}/pv/popups/channels.hpp
${PROJECT_SOURCE_DIR}/pv/popups/deviceoptions.hpp
${PROJECT_SOURCE_DIR}/pv/prop/bool.hpp
if(ENABLE_DECODE)
list(APPEND pulseview_TEST_SOURCES
- ${PROJECT_SOURCE_DIR}/pv/binding/decoderoptions.cpp
+ ${PROJECT_SOURCE_DIR}/pv/binding/decoder.cpp
${PROJECT_SOURCE_DIR}/pv/data/decoderstack.cpp
${PROJECT_SOURCE_DIR}/pv/data/decode/annotation.cpp
${PROJECT_SOURCE_DIR}/pv/data/decode/decoder.cpp