mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
34 lines
739 B
C++
34 lines
739 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef COMPLEXPONG_H
|
|
#define COMPLEXPONG_H
|
|
|
|
#include <QtCore/QObject>
|
|
#include <QtDBus/QDBusAbstractAdaptor>
|
|
#include <QtDBus/QDBusVariant>
|
|
|
|
class Pong : public QDBusAbstractAdaptor
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.example.QtDBus.ComplexPong.Pong")
|
|
Q_PROPERTY(QString value READ value WRITE setValue)
|
|
public:
|
|
QString value() const;
|
|
void setValue(const QString &newValue);
|
|
|
|
Pong(QObject *obj) : QDBusAbstractAdaptor(obj) { }
|
|
|
|
signals:
|
|
void aboutToQuit();
|
|
|
|
public slots:
|
|
QDBusVariant query(const QString &query);
|
|
Q_NOREPLY void quit();
|
|
|
|
private:
|
|
QString m_value;
|
|
};
|
|
|
|
#endif
|