]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/binding.h
Moved decoder config into the popup
[pulseview.git] / pv / prop / binding / binding.h
index f0b06ae288daed7dad5677aeae30028bf0362cb3..9b63c16214f1fffc9e83bd27245b1600d0a2dedd 100644 (file)
@@ -24,6 +24,7 @@
 #include <vector>
 #include <boost/shared_ptr.hpp>
 
+class QFormLayout;
 class QWidget;
 
 namespace pv {
@@ -36,17 +37,18 @@ namespace binding {
 class Binding
 {
 public:
-       Binding();
-
-public:
-       QWidget* get_form(QWidget *parent);
+       const std::vector< boost::shared_ptr<Property> >& properties();
 
        void commit();
 
+       void add_properties_to_form(QFormLayout *layout,
+               bool auto_commit = false) const;
+
+       QWidget* get_property_form(QWidget *parent,
+               bool auto_commit = false) const;
+
 protected:
        std::vector< boost::shared_ptr<Property> > _properties;
-
-       QWidget *_form;
 };
 
 } // binding