]> sigrok.org Git - pulseview.git/blob - pv/prop/string.cpp
Removed Sample Rate binding from DeviceOptions
[pulseview.git] / pv / prop / string.cpp
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 <QLineEdit>
24 #include <QSpinBox>
25
26 #include "string.h"
27
28 using namespace std;
29 using namespace boost;
30
31 namespace pv {
32 namespace prop {
33
34 String::String(QString name,
35         Getter getter,
36         Setter setter) :
37         Property(name, getter, setter),
38         _line_edit(NULL)
39 {
40 }
41
42 QWidget* String::get_widget(QWidget *parent, bool auto_commit)
43 {
44         if (_line_edit)
45                 return _line_edit;
46
47         _line_edit = new QLineEdit(parent);
48
49         GVariant *const value = _getter ? _getter() : NULL;
50         if (value) {
51                 _line_edit->setText(QString(
52                         g_variant_get_string(value, NULL)));
53                 g_variant_unref(value);
54         }
55
56         if (auto_commit)
57                 connect(_line_edit, SIGNAL(textEdited(const QString&)),
58                         this, SLOT(on_text_edited(const QString&)));
59
60         return _line_edit;
61 }
62
63 void String::commit()
64 {
65         assert(_setter);
66
67         if (!_line_edit)
68                 return;
69
70         QByteArray ba = _line_edit->text().toLocal8Bit();
71         _setter(g_variant_new_string(ba.data()));
72 }
73
74 void String::on_text_edited(const QString&)
75 {
76         commit();
77 }
78
79 } // prop
80 } // pv