]> sigrok.org Git - pulseview.git/blame - pv/prop/string.cpp
Added Binding::add_properties_to_form
[pulseview.git] / pv / prop / string.cpp
CommitLineData
7112a458
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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
21#include <assert.h>
22
23#include <QSpinBox>
24
25#include "string.h"
26
27using namespace std;
28using namespace boost;
29
30namespace pv {
31namespace prop {
32
33String::String(QString name,
34 Getter getter,
35 Setter setter) :
36 Property(name, getter, setter),
37 _line_edit(NULL)
38{
39}
40
41QWidget* String::get_widget(QWidget *parent)
42{
43 if (_line_edit)
44 return _line_edit;
45
46 _line_edit = new QLineEdit(parent);
47
48 GVariant *const value = _getter ? _getter() : NULL;
49 if (value) {
50 _line_edit->setText(QString(
51 g_variant_get_string(value, NULL)));
52 g_variant_unref(value);
53 }
54
55 return _line_edit;
56}
57
58void String::commit()
59{
60 assert(_setter);
61
62 if (!_line_edit)
63 return;
64
65 QByteArray ba = _line_edit->text().toLocal8Bit();
66 _setter(g_variant_new_string(ba.data()));
67}
68
69} // prop
70} // pv