From d42c8663e8fd441838a238bfb845a7c80c37b253 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 28 Mar 2006 18:56:08 +0000 Subject: * qt/*: * dbus/qdbus.h: Sync with KDE Subversion revision 523647. Hopefully, this will be the last of the source-incompatible changes. Documentation has been improved; support for QList has been added; QDBusObject is gone; QDBus(Abstract)Interface is now a QObject with auto-generated meta-object; QDBusIntrospection is marked private, since QMetaObject can be used now; lots of bugfixes. --- qt/qdbusstandardinterfaces.h | 206 ------------------------------------------- 1 file changed, 206 deletions(-) delete mode 100644 qt/qdbusstandardinterfaces.h (limited to 'qt/qdbusstandardinterfaces.h') diff --git a/qt/qdbusstandardinterfaces.h b/qt/qdbusstandardinterfaces.h deleted file mode 100644 index f2c88c31..00000000 --- a/qt/qdbusstandardinterfaces.h +++ /dev/null @@ -1,206 +0,0 @@ -/* -*- C++ -*- - * - * Copyright (C) 2005 Thiago Macieira - * Copyright (C) 2006 Trolltech AS. All rights reserved. - * Author: Thiago Macieira - * - * Licensed under the Academic Free License version 2.1 - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#ifndef QDBUS_STANDARD_INTERFACES_H -#define QDBUS_STANDARD_INTERFACES_H - -#include "qdbusinterface.h" -#include "qdbusreply.h" -#include -#include -#include - -class QDBusConnection; - -class QDBUS_EXPORT QDBusPeerInterface: public QDBusInterface -{ -public: - static inline const char* staticInterfaceName() - { return DBUS_INTERFACE_PEER; } - - static inline const char* staticIntrospectionData() - { - return - " \n" - " \n" - " \n"; - } - -public: - explicit QDBusPeerInterface(const QDBusObject& obj) - : QDBusInterface(obj, QLatin1String(staticInterfaceName())) - { } - - ~QDBusPeerInterface(); - - inline virtual QString introspectionData() const - { return QString::fromLatin1(staticIntrospectionData()); } - - inline QDBusReply ping() - { return call(QLatin1String("Ping")); } -}; - -class QDBUS_EXPORT QDBusIntrospectableInterface: public QDBusInterface -{ -public: - static inline const char* staticInterfaceName() - { return DBUS_INTERFACE_INTROSPECTABLE; } - - static inline const char* staticIntrospectionData() - { - return - " \n" - " \n" - " \n" - " \n" - " \n"; - } -public: - explicit QDBusIntrospectableInterface(const QDBusObject& obj) - : QDBusInterface(obj, QLatin1String(staticInterfaceName())) - { } - - ~QDBusIntrospectableInterface(); - - inline virtual QString introspectionData() const - { return QLatin1String(staticIntrospectionData()); } - - inline QDBusReply introspect() - { return call(QLatin1String("Introspect")); } -}; - -class QDBUS_EXPORT QDBusPropertiesInterface: public QDBusInterface -{ -public: - static inline const char* staticInterfaceName() - { return DBUS_INTERFACE_PROPERTIES; } - - static inline const char* staticIntrospectionData() - { - return - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n"; - } -public: - explicit QDBusPropertiesInterface(const QDBusObject& obj) - : QDBusInterface(obj, QLatin1String(staticInterfaceName())) - { } - - ~QDBusPropertiesInterface(); - - inline virtual QString introspectionData() const - { return QString::fromLatin1(staticIntrospectionData()); } - - inline QDBusReply set(const QString& interfaceName, const QString& propertyName, - const QDBusVariant &value) - { return call(QLatin1String("Set.ssv"), interfaceName, propertyName, value); } - - inline QDBusReply get(const QString& interfaceName, const QString& propertyName) - { return call(QLatin1String("Get.ss"), interfaceName, propertyName); } -}; - -#if 0 -class QDBUS_EXPORT QDBusBusInterface: public QDBusInterface -{ -public: - static inline const char* staticInterfaceName() - { return DBUS_INTERFACE_DBUS; } - - static const char* staticIntrospectionData(); - -public: - explicit QDBusBusInterface(const QDBusObject& obj) - : QDBusInterface(obj, staticInterfaceName()) - { } - - ~QDBusBusInterface(); - - inline virtual QString introspectionData() const - { return staticIntrospectionData(); } - - inline QDBusReply requestName(const QString& name, unsigned flags) - { return call(QLatin1String("RequestName.su"), name, flags); } - - inline QDBusReply releaseName(const QString& name) - { return call(QLatin1String("ReleaseName.s"), name); } - - inline QDBusReply startServiceByName(const QString& name, unsigned flags) - { return call(QLatin1String("StartServiceByName.su"), name, flags); } - - inline QDBusReply Hello() - { return call(QLatin1String("Hello")); } - - inline QDBusReply nameHasOwner(const QString& name) - { return call(QLatin1String("NameHasOwner.s"), name); } - - inline QDBusReply listNames() - { return call(QLatin1String("ListNames")); } - - inline QDBusReply addMatch(const QString& rule) - { return call(QLatin1String("AddMatch"), rule); } - - inline QDBusReply removeMatch(const QString& rule) - { return call(QLatin1String("RemoveMatch"), rule); } - - inline QDBusReply getNameOwner(const QString& name) - { return call(QLatin1String("GetNameOwner.s"), name); } - - inline QDBusReply listQueuedOwners(const QString& name) - { return call(QLatin1String("ListQueuedOwners.s"), name); } - - inline QDBusReply getConnectionUnixUser(const QString& connectionName) - { return call(QLatin1String("GetConnectionUnixUser.s"), connectionName); } - - inline QDBusReply getConnectionUnixProcessID(const QString& connectionName) - { return call(QLatin1String("GetConnectionUnixProcessID.s"), connectionName); } - - inline QDBusReply getConnectionSELinuxSecurityContext(const QString& connectionName) - { return call(QLatin1String("GetConnectionSELinuxSecurityContext.s"), connectionName); } - - inline QDBusReply reloadConfig() - { return call(QLatin1String("ReloadConfig")); } -}; -#endif - -namespace org { - namespace freedesktop { - namespace DBus { - typedef ::QDBusPeerInterface Peer; - typedef ::QDBusIntrospectableInterface Introspectable; - typedef ::QDBusPropertiesInterface Properties; - } - } -} - -#endif -- cgit