Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / prop / binding / binding.h
index 7bb3238b09ffbbf0bfbcefd2f12612d3d6fdcf38..cce8ebf8a15cfe86d174aa5641fa9d514880bcea 100644 (file)
 #ifndef PULSEVIEW_PV_PROP_BINDING_BINDING_H
 #define PULSEVIEW_PV_PROP_BINDING_BINDING_H
 
+#include <glib.h>
+
 #include <vector>
-#include <boost/shared_ptr.hpp>
+#include <memory>
+
+#include <QString>
 
+class QFormLayout;
 class QWidget;
 
 namespace pv {
@@ -36,12 +41,20 @@ namespace binding {
 class Binding
 {
 public:
-       const std::vector< boost::shared_ptr<Property> >& properties();
+       const std::vector< std::shared_ptr<Property> >& properties();
 
-protected:
-       std::vector< boost::shared_ptr<Property> > _properties;
+       void commit();
+
+       void add_properties_to_form(QFormLayout *layout,
+               bool auto_commit = false) const;
 
-       QWidget *_form;
+       QWidget* get_property_form(QWidget *parent,
+               bool auto_commit = false) const;
+
+       static QString print_gvariant(GVariant *const gvar);
+
+protected:
+       std::vector< std::shared_ptr<Property> > _properties;
 };
 
 } // binding