X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fbinding%2Fbinding.hpp;h=5580a0b05b48765d74fd9272beafe4e38ddc2ca8;hp=35492e30ec435e9930303f974ada51e30bee0fbd;hb=4e2195c8d934f7f874b612eaace8c6849e8b475d;hpb=efdec55aec1a137460fa362a381ed1904182bfed diff --git a/pv/binding/binding.hpp b/pv/binding/binding.hpp index 35492e3..5580a0b 100644 --- a/pv/binding/binding.hpp +++ b/pv/binding/binding.hpp @@ -26,12 +26,19 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS #include G_GNUC_END_IGNORE_DEPRECATIONS -#include +#include #include +#include +#include #include +using std::map; +using std::shared_ptr; +using std::vector; + class QFormLayout; +class QLabel; class QWidget; namespace pv { @@ -42,26 +49,32 @@ class Property; namespace binding { -class Binding +class Binding: public QObject { + Q_OBJECT + public: - const std::vector< std::shared_ptr >& properties(); + const vector< shared_ptr >& properties(); void commit(); - void add_properties_to_form(QFormLayout *layout, - bool auto_commit = false) const; + void add_properties_to_form(QFormLayout *layout, bool auto_commit = false); + + QWidget* get_property_form(QWidget *parent, bool auto_commit = false); - QWidget* get_property_form(QWidget *parent, - bool auto_commit = false) const; + void update_property_widgets(); static QString print_gvariant(Glib::VariantBase gvar); +protected Q_SLOTS: + void on_help_clicked(); + protected: - std::vector< std::shared_ptr > properties_; + vector< shared_ptr > properties_; + map help_labels_; }; -} // binding -} // pv +} // namespace binding +} // namespace pv #endif // PULSEVIEW_PV_BINDING_BINDING_HPP