X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fprop%2Fbinding%2Fbinding.cpp;h=afdd7030a2a694b889cfe799fcc29cb2edd8c1a2;hb=6e89374a6796f8d5d9cc61b0a2f7e98562a034ae;hp=5d411686f4a820f8ea686e191091f1b6d8c5500b;hpb=9ba4ca3540ace02b1b5439ec2f4584f82f2aca77;p=pulseview.git diff --git a/pv/prop/binding/binding.cpp b/pv/prop/binding/binding.cpp index 5d411686..afdd7030 100644 --- a/pv/prop/binding/binding.cpp +++ b/pv/prop/binding/binding.cpp @@ -18,53 +18,57 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include -#include - #include -#include "binding.h" +#include #include +#include "binding.h" + using namespace boost; namespace pv { namespace prop { namespace binding { -Binding::Binding() : - _form(NULL) +const std::vector< boost::shared_ptr >& Binding::properties() { + return _properties; } -QWidget* Binding::get_form(QWidget *parent) +void Binding::commit() { - if (_form) - return _form; - - _form = new QWidget(parent); - QFormLayout *const layout = new QFormLayout(_form); - _form->setLayout(layout); - - BOOST_FOREACH(shared_ptr p, _properties) - { + BOOST_FOREACH(shared_ptr p, _properties) { assert(p); - layout->addRow(p->name(), p->get_widget(_form)); + p->commit(); } - - return _form; } -void Binding::commit() +void Binding::add_properties_to_form(QFormLayout *layout, + bool auto_commit) const { - BOOST_FOREACH(shared_ptr p, _properties) + assert(layout); + + BOOST_FOREACH(shared_ptr p, _properties) { assert(p); - p->commit(); + const QString label = p->labeled_widget() ? QString() : p->name(); + layout->addRow(label, p->get_widget(layout->parentWidget(), + auto_commit)); } } +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; +} + } // binding } // prop } // pv