]> sigrok.org Git - pulseview.git/blame_incremental - pv/binding/binding.cpp
session: apply input format match to interactively loaded files, too
[pulseview.git] / pv / binding / binding.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <cassert>
21
22#include <QFormLayout>
23#include <QLabel>
24
25#include <pv/prop/property.hpp>
26
27#include "binding.hpp"
28
29using std::shared_ptr;
30using std::string;
31using std::vector;
32
33namespace pv {
34namespace binding {
35
36const vector< shared_ptr<prop::Property> >& Binding::properties()
37{
38 return properties_;
39}
40
41void Binding::commit()
42{
43 for (shared_ptr<pv::prop::Property> p : properties_) {
44 assert(p);
45 p->commit();
46 }
47}
48
49void Binding::add_properties_to_form(QFormLayout *layout,
50 bool auto_commit) const
51{
52 assert(layout);
53
54 for (shared_ptr<pv::prop::Property> p : properties_) {
55 assert(p);
56
57 QWidget *const widget = p->get_widget(layout->parentWidget(), auto_commit);
58 if (p->labeled_widget()) {
59 layout->addRow(widget);
60 } else {
61 auto *lbl = new QLabel(p->name());
62 lbl->setToolTip(p->desc());
63 layout->addRow(lbl, widget);
64 }
65 }
66}
67
68QWidget* Binding::get_property_form(QWidget *parent,
69 bool auto_commit) const
70{
71 QWidget *const form = new QWidget(parent);
72 QFormLayout *const layout = new QFormLayout(form);
73 form->setLayout(layout);
74 add_properties_to_form(layout, auto_commit);
75 return form;
76}
77
78void Binding::update_property_widgets()
79{
80 for (shared_ptr<pv::prop::Property> p : properties_) {
81 assert(p);
82 p->update_widget();
83 }
84}
85
86QString Binding::print_gvariant(Glib::VariantBase gvar)
87{
88 QString s;
89
90 if (!gvar.gobj())
91 s = QString::fromStdString("(null)");
92 else if (gvar.is_of_type(Glib::VariantType("s")))
93 s = QString::fromStdString(
94 Glib::VariantBase::cast_dynamic<Glib::Variant<string>>(gvar).get());
95 else
96 s = QString::fromStdString(gvar.print());
97
98 return s;
99}
100
101} // namespace binding
102} // namespace pv