]> sigrok.org Git - pulseview.git/blame - pv/prop/property.hpp
DecodeSignal: Use srd_session_terminate_reset() for multi-segment data
[pulseview.git] / pv / prop / property.hpp
CommitLineData
c8df6005
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
c8df6005
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_PROP_PROPERTY_HPP
21#define PULSEVIEW_PV_PROP_PROPERTY_HPP
c8df6005 22
8ada6ef1
DE
23#include <glib.h>
24// Suppress warnings due to use of deprecated std::auto_ptr<> by glibmm.
25G_GNUC_BEGIN_IGNORE_DEPRECATIONS
db71cc90 26#include <glibmm.h>
8ada6ef1 27G_GNUC_END_IGNORE_DEPRECATIONS
9b258927 28
f896568b 29#include <functional>
aca9aa83 30
c8df6005
JH
31#include <QString>
32#include <QWidget>
33
6f925ba9
UH
34using std::function;
35
c8df6005
JH
36class QWidget;
37
38namespace pv {
39namespace prop {
40
b1fe148e 41class Property : public QObject
c8df6005 42{
b1fe148e
JH
43 Q_OBJECT;
44
9b258927 45public:
6f925ba9
UH
46 typedef function<Glib::VariantBase ()> Getter;
47 typedef function<void (Glib::VariantBase)> Setter;
9b258927 48
c8df6005 49protected:
9a267f8d 50 Property(QString name, QString desc, Getter getter, Setter setter);
c8df6005
JH
51
52public:
53 const QString& name() const;
9a267f8d 54 const QString& desc() const;
c8df6005 55
b1fe148e
JH
56 virtual QWidget* get_widget(QWidget *parent,
57 bool auto_commit = false) = 0;
de1d99bb 58 virtual bool labeled_widget() const;
c8df6005 59
24bb0bd1
JH
60 virtual void commit() = 0;
61
9b258927 62protected:
8dbbc7f0
JH
63 const Getter getter_;
64 const Setter setter_;
9b258927 65
c8df6005 66private:
8dbbc7f0 67 QString name_;
9a267f8d 68 QString desc_;
c8df6005
JH
69};
70
870ea3db
UH
71} // namespace prop
72} // namespace pv
c8df6005 73
7a01bd36 74#endif // PULSEVIEW_PV_PROP_PROPERTY_HPP