StoreSession: Support output formats other than srzip
[pulseview.git] / pv / prop / binding / binding.cpp
index 7d38cb4629b5498c5d9cd0bc92dd4982909b8177..062ce6676a34fbb2d6b218b9c358ba9e061f10af 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#include "binding.h"
+#include <cassert>
+
+#include <QFormLayout>
+
+#include <pv/prop/property.hpp>
+
+#include "binding.hpp"
+
+using std::shared_ptr;
 
 namespace pv {
 namespace prop {
 namespace binding {
 
-const std::vector< boost::shared_ptr<Property> >& Binding::properties()
+const std::vector< std::shared_ptr<Property> >& Binding::properties()
+{
+       return properties_;
+}
+
+void Binding::commit()
+{
+       for (shared_ptr<pv::prop::Property> p : properties_) {
+               assert(p);
+               p->commit();
+       }
+}
+
+void Binding::add_properties_to_form(QFormLayout *layout,
+       bool auto_commit) const
 {
-       return _properties;
+       assert(layout);
+
+       for (shared_ptr<pv::prop::Property> p : properties_)
+       {
+               assert(p);
+
+               QWidget *const widget = p->get_widget(layout->parentWidget(),
+                       auto_commit);
+               if (p->labeled_widget())
+                       layout->addRow(widget);
+               else
+                       layout->addRow(p->name(), widget);
+       }
+}
+
+QWidget* Binding::get_property_form(QWidget *parent,
+       bool auto_commit) const
+{
+       QWidget *const form = new QWidget(parent);
+       QFormLayout *const layout = new QFormLayout(form);
+       form->setLayout(layout);
+       add_properties_to_form(layout, auto_commit);
+       return form;
+}
+
+QString Binding::print_gvariant(Glib::VariantBase gvar)
+{
+       QString s;
+
+       if (!gvar.gobj())
+               s = QString::fromStdString("(null)");
+       else if (gvar.is_of_type(Glib::VariantType("s")))
+               s = QString::fromStdString(
+                       Glib::VariantBase::cast_dynamic<Glib::Variant<std::string>>(
+                               gvar).get());
+       else
+               s = QString::fromStdString(gvar.print());
+
+       return s;
 }
 
 } // binding