]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/double.cpp
Use libsigrok C++ bindings (patch version 7).
[pulseview.git] / pv / prop / double.cpp
index 6f6fe0c1ea7e228ca7ed1487efa13e7202a3f5c2..54540bc68ded41c0575c3202726ac383665b5814 100644 (file)
@@ -24,8 +24,8 @@
 
 #include "double.h"
 
-using namespace std;
-using namespace boost;
+using boost::optional;
+using std::pair;
 
 namespace pv {
 namespace prop {
@@ -46,11 +46,25 @@ Double::Double(QString name,
 {
 }
 
-QWidget* Double::get_widget(QWidget *parent)
+Double::~Double()
+{
+}
+
+QWidget* Double::get_widget(QWidget *parent, bool auto_commit)
 {
        if (_spin_box)
                return _spin_box;
 
+       if (!_getter)
+               return NULL;
+
+       Glib::VariantBase variant = _getter();
+       if (!variant.gobj())
+               return NULL;
+
+       double value = Glib::VariantBase::cast_dynamic<Glib::Variant<double>>(
+               variant).get();
+
        _spin_box = new QDoubleSpinBox(parent);
        _spin_box->setDecimals(_decimals);
        _spin_box->setSuffix(_suffix);
@@ -59,12 +73,11 @@ QWidget* Double::get_widget(QWidget *parent)
        if (_step)
                _spin_box->setSingleStep(*_step);
 
-       GVariant *const value = _getter ? _getter() : NULL;
+       _spin_box->setValue(value);
 
-       if (value) {
-               _spin_box->setValue(g_variant_get_double(value));
-               g_variant_unref(value);
-       }
+       if (auto_commit)
+               connect(_spin_box, SIGNAL(valueChanged(double)),
+                       this, SLOT(on_value_changed(double)));
 
        return _spin_box;
 }
@@ -76,7 +89,12 @@ void Double::commit()
        if (!_spin_box)
                return;
 
-       _setter(g_variant_new_double(_spin_box->value()));
+       _setter(Glib::Variant<double>::create(_spin_box->value()));
+}
+
+void Double::on_value_changed(double)
+{
+       commit();
 }
 
 } // prop