2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#ifndef COMPLEXPONG_H
|
|
|
|
#define COMPLEXPONG_H
|
|
|
|
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtDBus/QDBusAbstractAdaptor>
|
|
|
|
#include <QtDBus/QDBusVariant>
|
|
|
|
|
2023-03-28 10:22:39 +00:00
|
|
|
class Pong : public QDBusAbstractAdaptor
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-04-20 12:31:12 +00:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.example.QtDBus.ComplexPong.Pong")
|
2011-04-27 10:05:43 +00:00
|
|
|
Q_PROPERTY(QString value READ value WRITE setValue)
|
|
|
|
public:
|
|
|
|
QString value() const;
|
|
|
|
void setValue(const QString &newValue);
|
|
|
|
|
2023-03-28 10:22:39 +00:00
|
|
|
Pong(QObject *obj) : QDBusAbstractAdaptor(obj) { }
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
signals:
|
|
|
|
void aboutToQuit();
|
2023-03-28 10:22:39 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
public slots:
|
|
|
|
QDBusVariant query(const QString &query);
|
|
|
|
Q_NOREPLY void quit();
|
2023-03-28 10:22:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_value;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|