[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[651] | 3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the QtDBus module of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
[561] | 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
[2] | 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
[561] | 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
[2] | 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | #ifndef QDBUSBUS_H
|
---|
| 43 | #define QDBUSBUS_H
|
---|
| 44 |
|
---|
| 45 | #include <QtCore/qstringlist.h>
|
---|
| 46 |
|
---|
| 47 | #include <QtDBus/qdbusabstractinterface.h>
|
---|
| 48 | #include <QtDBus/qdbusreply.h>
|
---|
| 49 |
|
---|
| 50 | QT_BEGIN_HEADER
|
---|
| 51 |
|
---|
| 52 | QT_BEGIN_NAMESPACE
|
---|
| 53 |
|
---|
| 54 | QT_MODULE(DBus)
|
---|
| 55 |
|
---|
| 56 | class QDBusConnection;
|
---|
| 57 | class QString;
|
---|
| 58 | class QByteArray;
|
---|
| 59 |
|
---|
| 60 | /*
|
---|
| 61 | * Proxy class for interface org.freedesktop.DBus
|
---|
| 62 | */
|
---|
| 63 | class QDBUS_EXPORT QDBusConnectionInterface: public QDBusAbstractInterface
|
---|
| 64 | {
|
---|
| 65 | Q_OBJECT
|
---|
| 66 | Q_ENUMS(ServiceQueueOptions ServiceReplacementOptions RegisterServiceReply)
|
---|
| 67 | friend class QDBusConnectionPrivate;
|
---|
| 68 | static inline const char *staticInterfaceName();
|
---|
| 69 |
|
---|
| 70 | explicit QDBusConnectionInterface(const QDBusConnection &connection, QObject *parent);
|
---|
| 71 | ~QDBusConnectionInterface();
|
---|
| 72 |
|
---|
| 73 | Q_PROPERTY(QDBusReply<QStringList> registeredServiceNames READ registeredServiceNames)
|
---|
| 74 |
|
---|
| 75 | public:
|
---|
| 76 | enum ServiceQueueOptions {
|
---|
| 77 | DontQueueService,
|
---|
| 78 | QueueService,
|
---|
| 79 | ReplaceExistingService
|
---|
| 80 | };
|
---|
| 81 | enum ServiceReplacementOptions {
|
---|
| 82 | DontAllowReplacement,
|
---|
| 83 | AllowReplacement
|
---|
| 84 | };
|
---|
| 85 | enum RegisterServiceReply {
|
---|
| 86 | ServiceNotRegistered = 0,
|
---|
| 87 | ServiceRegistered,
|
---|
| 88 | ServiceQueued
|
---|
| 89 | };
|
---|
| 90 |
|
---|
| 91 | public Q_SLOTS:
|
---|
| 92 | QDBusReply<QStringList> registeredServiceNames() const;
|
---|
| 93 | QDBusReply<bool> isServiceRegistered(const QString &serviceName) const;
|
---|
| 94 | QDBusReply<QString> serviceOwner(const QString &name) const;
|
---|
| 95 | QDBusReply<bool> unregisterService(const QString &serviceName);
|
---|
| 96 | QDBusReply<QDBusConnectionInterface::RegisterServiceReply> registerService(const QString &serviceName,
|
---|
| 97 | ServiceQueueOptions qoption = DontQueueService,
|
---|
| 98 | ServiceReplacementOptions roption = DontAllowReplacement);
|
---|
| 99 |
|
---|
| 100 | QDBusReply<uint> servicePid(const QString &serviceName) const;
|
---|
| 101 | QDBusReply<uint> serviceUid(const QString &serviceName) const;
|
---|
| 102 |
|
---|
| 103 | QDBusReply<void> startService(const QString &name);
|
---|
| 104 |
|
---|
| 105 | Q_SIGNALS:
|
---|
| 106 | void serviceRegistered(const QString &service);
|
---|
| 107 | void serviceUnregistered(const QString &service);
|
---|
| 108 | void serviceOwnerChanged(const QString &name, const QString &oldOwner, const QString &newOwner);
|
---|
| 109 | void callWithCallbackFailed(const QDBusError &error, const QDBusMessage &call);
|
---|
| 110 |
|
---|
| 111 | #ifndef Q_QDOC
|
---|
| 112 | // internal signals
|
---|
| 113 | // do not use
|
---|
| 114 | void NameAcquired(const QString &);
|
---|
| 115 | void NameLost(const QString &);
|
---|
| 116 | void NameOwnerChanged(const QString &, const QString &, const QString &);
|
---|
| 117 | protected:
|
---|
| 118 | void connectNotify(const char *);
|
---|
| 119 | void disconnectNotify(const char *);
|
---|
| 120 | #endif
|
---|
| 121 | };
|
---|
| 122 |
|
---|
| 123 | QT_END_NAMESPACE
|
---|
| 124 |
|
---|
| 125 | Q_DECLARE_BUILTIN_METATYPE(QDBusConnectionInterface::RegisterServiceReply, UInt)
|
---|
| 126 |
|
---|
| 127 | QT_END_HEADER
|
---|
| 128 |
|
---|
| 129 | #endif
|
---|