X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fstring.cpp;h=37efc148255848be1103e8cb5beca9ea48485c20;hb=819f4c25391a9c74d3d2f528d462142d5c4aad4d;hp=b9de789b90298042104bd0b60b2ea94e8bd45668;hpb=7112a4581822c43241a55fbd61c98bee062d452b;p=pulseview.git diff --git a/pv/prop/string.cpp b/pv/prop/string.cpp index b9de789..37efc14 100644 --- a/pv/prop/string.cpp +++ b/pv/prop/string.cpp @@ -20,13 +20,11 @@ #include +#include #include #include "string.h" -using namespace std; -using namespace boost; - namespace pv { namespace prop { @@ -38,7 +36,7 @@ String::String(QString name, { } -QWidget* String::get_widget(QWidget *parent) +QWidget* String::get_widget(QWidget *parent, bool auto_commit) { if (_line_edit) return _line_edit; @@ -47,11 +45,15 @@ QWidget* String::get_widget(QWidget *parent) GVariant *const value = _getter ? _getter() : NULL; if (value) { - _line_edit->setText(QString( + _line_edit->setText(QString::fromUtf8( g_variant_get_string(value, NULL))); g_variant_unref(value); } + if (auto_commit) + connect(_line_edit, SIGNAL(textEdited(const QString&)), + this, SLOT(on_text_edited(const QString&))); + return _line_edit; } @@ -66,5 +68,10 @@ void String::commit() _setter(g_variant_new_string(ba.data())); } +void String::on_text_edited(const QString&) +{ + commit(); +} + } // prop } // pv