]> sigrok.org Git - pulseview.git/blame - pv/binding/binding.hpp
DecoderStack: Force a viewport update more frequently
[pulseview.git] / pv / binding / binding.hpp
CommitLineData
cf47ef78
JH
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
7a01bd36
JH
21#ifndef PULSEVIEW_PV_BINDING_BINDING_HPP
22#define PULSEVIEW_PV_BINDING_BINDING_HPP
cf47ef78 23
8ada6ef1
DE
24#include <glib.h>
25// Suppress warnings due to use of deprecated std::auto_ptr<> by glibmm.
26G_GNUC_BEGIN_IGNORE_DEPRECATIONS
db71cc90 27#include <glibmm.h>
8ada6ef1 28G_GNUC_END_IGNORE_DEPRECATIONS
5b1994c4 29
c8df6005 30#include <vector>
f9abf97e 31#include <memory>
c8df6005 32
5b1994c4
JH
33#include <QString>
34
4e5a4405 35class QFormLayout;
c8df6005
JH
36class QWidget;
37
cf47ef78 38namespace pv {
c8df6005 39
61703a01 40namespace prop {
c8df6005 41class Property;
61703a01 42}
c8df6005 43
cf47ef78
JH
44namespace binding {
45
46class Binding
47{
c8df6005 48public:
61703a01 49 const std::vector< std::shared_ptr<prop::Property> >& properties();
3a69ef6b 50
8481fbdf
JH
51 void commit();
52
f904b412
JH
53 void add_properties_to_form(QFormLayout *layout,
54 bool auto_commit = false) const;
4206fe26 55
f904b412
JH
56 QWidget* get_property_form(QWidget *parent,
57 bool auto_commit = false) const;
8481fbdf 58
e8d00928 59 static QString print_gvariant(Glib::VariantBase gvar);
5b1994c4 60
c8df6005 61protected:
61703a01 62 std::vector< std::shared_ptr<prop::Property> > properties_;
cf47ef78
JH
63};
64
65} // binding
cf47ef78
JH
66} // pv
67
7a01bd36 68#endif // PULSEVIEW_PV_BINDING_BINDING_HPP