X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fbinding.cpp;h=afdd7030a2a694b889cfe799fcc29cb2edd8c1a2;hb=6e89374a6796f8d5d9cc61b0a2f7e98562a034ae;hp=28a47099144eb8d50883a8d602c2f2d210a56c78;hpb=4206fe26e6b3f6439e382a072f5ff67c009f412a;p=pulseview.git diff --git a/pv/prop/binding/binding.cpp b/pv/prop/binding/binding.cpp index 28a47099..afdd7030 100644 --- a/pv/prop/binding/binding.cpp +++ b/pv/prop/binding/binding.cpp @@ -45,7 +45,8 @@ void Binding::commit() } } -void Binding::add_properties_to_form(QFormLayout *layout) const +void Binding::add_properties_to_form(QFormLayout *layout, + bool auto_commit) const { assert(layout); @@ -53,16 +54,18 @@ void Binding::add_properties_to_form(QFormLayout *layout) const { assert(p); const QString label = p->labeled_widget() ? QString() : p->name(); - layout->addRow(label, p->get_widget(layout->parentWidget())); + layout->addRow(label, p->get_widget(layout->parentWidget(), + auto_commit)); } } -QWidget* Binding::get_property_form(QWidget *parent) const +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); + add_properties_to_form(layout, auto_commit); return form; }