From: APTX Date: Fri, 6 Apr 2012 16:57:35 +0000 (-0400) Subject: Update .gitignore and remove generated files X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=b14b41d7ace2cb936bc04b05d410bba68e1dd603;p=libferris.git Update .gitignore and remove generated files --- diff --git a/.gitignore b/.gitignore index e7eb021..f01eb37 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,20 @@ ferrisxslt.pc *.la *.lo *.so + + +# these files are actually generated and should not have been in the reelase package +DBusGlue/broker_adaptor.h +DBusGlue/broker_interface.h +DBusGlue/org_freedesktop_DBus.h +DBusGlue/org_freedesktop_DBus_Introspectable.h +DBusGlue/org_freedesktop_Hal_Device.h +DBusGlue/org_freedesktop_Hal_Device_Volume.h +DBusGlue/org_freedesktop_Hal_Manager.h +DBusGlue/worker_adaptor.h +DBusGlue/worker_interface.h +plugins/context/amarok/player_interface.cpp +plugins/context/amarok/tracklist_interface.cpp +plugins/context/xwin/klipper_interface.cpp +plugins/context/xwin/klipper_interface_public.hh + diff --git a/DBusGlue/broker_adaptor.h b/DBusGlue/broker_adaptor.h deleted file mode 100644 index 5bae597..0000000 --- a/DBusGlue/broker_adaptor.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c broker -a broker_adaptor /ferris/DBusGlue/ferris_internal_metadata_broker_introspect.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * This file may have been hand-edited. Look for HAND-EDIT comments - * before re-generating it. - */ - -#ifndef BROKER_ADAPTOR_H_1329958831 -#define BROKER_ADAPTOR_H_1329958831 - -#include -#include -class QByteArray; -template class QList; -template class QMap; -class QString; -class QStringList; -class QVariant; - -/* - * Adaptor class for interface com.libferris.Metadata.Broker - */ -class broker: public QDBusAbstractAdaptor -{ - Q_OBJECT - Q_CLASSINFO("D-Bus Interface", "com.libferris.Metadata.Broker") - Q_CLASSINFO("D-Bus Introspection", "" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" - "") -public: - broker(QObject *parent); - virtual ~broker(); - -public: // PROPERTIES -public Q_SLOTS: // METHODS - int Random(); - int asyncGet(const QString &earl, const QString &name); - int asyncPut(const QString &earl, const QString &name, const QByteArray &value); -Q_SIGNALS: // SIGNALS - void asyncGetFailed(int reqid, const QString &earl, int eno, const QString &ename, const QString &edesc); - void asyncGetResult(int reqid, const QString &earl, const QString &name, const QByteArray &value); - void asyncPutCommitted(int reqid, const QString &earl, const QString &name); - void asyncPutFailed(int reqid, const QString &earl, int eno, const QString &ename, const QString &edesc); -}; - -#endif diff --git a/DBusGlue/broker_interface.h b/DBusGlue/broker_interface.h deleted file mode 100644 index cf92215..0000000 --- a/DBusGlue/broker_interface.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c broker -p broker_interface /ferris/DBusGlue/ferris_internal_metadata_broker_introspect.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef BROKER_INTERFACE_H_1329958831 -#define BROKER_INTERFACE_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface com.libferris.Metadata.Broker - */ -class broker: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "com.libferris.Metadata.Broker"; } - -public: - broker(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~broker(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply Random() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Random"), argumentList); - } - - inline QDBusPendingReply asyncGet(const QString &earl, const QString &name) - { - QList argumentList; - argumentList << QVariant::fromValue(earl) << QVariant::fromValue(name); - return asyncCallWithArgumentList(QLatin1String("asyncGet"), argumentList); - } - - inline QDBusPendingReply asyncPut(const QString &earl, const QString &name, const QByteArray &value) - { - QList argumentList; - argumentList << QVariant::fromValue(earl) << QVariant::fromValue(name) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("asyncPut"), argumentList); - } - -Q_SIGNALS: // SIGNALS - void asyncGetFailed(int reqid, const QString &earl, int eno, const QString &ename, const QString &edesc); - void asyncGetResult(int reqid, const QString &earl, const QString &name, const QByteArray &value); - void asyncPutCommitted(int reqid, const QString &earl, const QString &name); - void asyncPutFailed(int reqid, const QString &earl, int eno, const QString &ename, const QString &edesc); -}; - -#endif diff --git a/DBusGlue/org_freedesktop_DBus.h b/DBusGlue/org_freedesktop_DBus.h deleted file mode 100644 index 18123f4..0000000 --- a/DBusGlue/org_freedesktop_DBus.h +++ /dev/null @@ -1,159 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c fdoDBus -p org_freedesktop_DBus /ferris/DBusGlue/org.freedesktop.DBus.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef ORG_FREEDESKTOP_DBUS_H_1329958831 -#define ORG_FREEDESKTOP_DBUS_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface org.freedesktop.DBus - */ -class fdoDBus: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "org.freedesktop.DBus"; } - -public: - fdoDBus(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~fdoDBus(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply<> AddMatch(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("AddMatch"), argumentList); - } - - inline QDBusPendingReply GetAdtAuditSessionData(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("GetAdtAuditSessionData"), argumentList); - } - - inline QDBusPendingReply GetConnectionSELinuxSecurityContext(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("GetConnectionSELinuxSecurityContext"), argumentList); - } - - inline QDBusPendingReply GetConnectionUnixProcessID(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("GetConnectionUnixProcessID"), argumentList); - } - - inline QDBusPendingReply GetConnectionUnixUser(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("GetConnectionUnixUser"), argumentList); - } - - inline QDBusPendingReply GetId() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("GetId"), argumentList); - } - - inline QDBusPendingReply GetNameOwner(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("GetNameOwner"), argumentList); - } - - inline QDBusPendingReply Hello() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Hello"), argumentList); - } - - inline QDBusPendingReply ListActivatableNames() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("ListActivatableNames"), argumentList); - } - - inline QDBusPendingReply ListNames() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("ListNames"), argumentList); - } - - inline QDBusPendingReply ListQueuedOwners(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("ListQueuedOwners"), argumentList); - } - - inline QDBusPendingReply NameHasOwner(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("NameHasOwner"), argumentList); - } - - inline QDBusPendingReply ReleaseName(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("ReleaseName"), argumentList); - } - - inline QDBusPendingReply<> ReloadConfig() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("ReloadConfig"), argumentList); - } - - inline QDBusPendingReply<> RemoveMatch(const QString &in0) - { - QList argumentList; - argumentList << QVariant::fromValue(in0); - return asyncCallWithArgumentList(QLatin1String("RemoveMatch"), argumentList); - } - - inline QDBusPendingReply RequestName(const QString &in0, uint in1) - { - QList argumentList; - argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); - return asyncCallWithArgumentList(QLatin1String("RequestName"), argumentList); - } - - inline QDBusPendingReply StartServiceByName(const QString &in0, uint in1) - { - QList argumentList; - argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1); - return asyncCallWithArgumentList(QLatin1String("StartServiceByName"), argumentList); - } - -Q_SIGNALS: // SIGNALS - void NameAcquired(const QString &in0); - void NameLost(const QString &in0); - void NameOwnerChanged(const QString &in0, const QString &in1, const QString &in2); -}; - -#endif diff --git a/DBusGlue/org_freedesktop_DBus_Introspectable.h b/DBusGlue/org_freedesktop_DBus_Introspectable.h deleted file mode 100644 index a33b782..0000000 --- a/DBusGlue/org_freedesktop_DBus_Introspectable.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c fdoDBusIntrospectable -p org_freedesktop_DBus_Introspectable /ferris/DBusGlue/org.freedesktop.DBus.Introspectable.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef ORG_FREEDESKTOP_DBUS_INTROSPECTABLE_H_1329958831 -#define ORG_FREEDESKTOP_DBUS_INTROSPECTABLE_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface org.freedesktop.DBus.Introspectable - */ -class fdoDBusIntrospectable: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "org.freedesktop.DBus.Introspectable"; } - -public: - fdoDBusIntrospectable(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~fdoDBusIntrospectable(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply Introspect() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Introspect"), argumentList); - } - -Q_SIGNALS: // SIGNALS -}; - -#endif diff --git a/DBusGlue/org_freedesktop_Hal_Device.h b/DBusGlue/org_freedesktop_Hal_Device.h deleted file mode 100644 index 26f8976..0000000 --- a/DBusGlue/org_freedesktop_Hal_Device.h +++ /dev/null @@ -1,278 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c fdoHalDevice -p org_freedesktop_Hal_Device /ferris/DBusGlue/org.freedesktop.Hal.Device.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef ORG_FREEDESKTOP_HAL_DEVICE_H_1329958831 -#define ORG_FREEDESKTOP_HAL_DEVICE_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface org.freedesktop.Hal.Device - */ -class fdoHalDevice: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "org.freedesktop.Hal.Device"; } - -public: - fdoHalDevice(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~fdoHalDevice(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply<> AcquireInterfaceLock(const QString &interface_name, bool exclusive) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name) << QVariant::fromValue(exclusive); - return asyncCallWithArgumentList(QLatin1String("AcquireInterfaceLock"), argumentList); - } - - inline QDBusPendingReply<> AddCapability(const QString &capability) - { - QList argumentList; - argumentList << QVariant::fromValue(capability); - return asyncCallWithArgumentList(QLatin1String("AddCapability"), argumentList); - } - - inline QDBusPendingReply AddonIsReady() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("AddonIsReady"), argumentList); - } - - inline QDBusPendingReply ClaimInterface(const QString &interface_name, const QString &introspection_xml) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name) << QVariant::fromValue(introspection_xml); - return asyncCallWithArgumentList(QLatin1String("ClaimInterface"), argumentList); - } - - inline QDBusPendingReply EmitCondition(const QString &condition_name, const QString &condition_details) - { - QList argumentList; - argumentList << QVariant::fromValue(condition_name) << QVariant::fromValue(condition_details); - return asyncCallWithArgumentList(QLatin1String("EmitCondition"), argumentList); - } - - inline QDBusPendingReply GetAllProperties() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("GetAllProperties"), argumentList); - } - - inline QDBusPendingReply GetProperty(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetProperty"), argumentList); - } - - inline QDBusPendingReply GetPropertyBoolean(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyBoolean"), argumentList); - } - - inline QDBusPendingReply GetPropertyDouble(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyDouble"), argumentList); - } - - inline QDBusPendingReply GetPropertyInteger(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyInteger"), argumentList); - } - - inline QDBusPendingReply GetPropertyString(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyString"), argumentList); - } - - inline QDBusPendingReply GetPropertyStringList(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyStringList"), argumentList); - } - - inline QDBusPendingReply GetPropertyType(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("GetPropertyType"), argumentList); - } - - inline QDBusPendingReply IsCallerLockedOut(const QString &interface_name, const QString &caller_sysbus_name) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name) << QVariant::fromValue(caller_sysbus_name); - return asyncCallWithArgumentList(QLatin1String("IsCallerLockedOut"), argumentList); - } - - inline QDBusPendingReply IsCallerPrivileged(const QString &action, const QStringList &action_parameters, const QString &caller_sysbus_name) - { - QList argumentList; - argumentList << QVariant::fromValue(action) << QVariant::fromValue(action_parameters) << QVariant::fromValue(caller_sysbus_name); - return asyncCallWithArgumentList(QLatin1String("IsCallerPrivileged"), argumentList); - } - - inline QDBusPendingReply IsLockedByOthers(const QString &interface_name) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name); - return asyncCallWithArgumentList(QLatin1String("IsLockedByOthers"), argumentList); - } - - inline QDBusPendingReply Lock(const QString &reason) - { - QList argumentList; - argumentList << QVariant::fromValue(reason); - return asyncCallWithArgumentList(QLatin1String("Lock"), argumentList); - } - - inline QDBusPendingReply PropertyExists(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("PropertyExists"), argumentList); - } - - inline QDBusPendingReply QueryCapability(const QString &capability) - { - QList argumentList; - argumentList << QVariant::fromValue(capability); - return asyncCallWithArgumentList(QLatin1String("QueryCapability"), argumentList); - } - - inline QDBusPendingReply<> ReleaseInterfaceLock(const QString &interface_name) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name); - return asyncCallWithArgumentList(QLatin1String("ReleaseInterfaceLock"), argumentList); - } - - inline QDBusPendingReply<> RemoveProperty(const QString &key) - { - QList argumentList; - argumentList << QVariant::fromValue(key); - return asyncCallWithArgumentList(QLatin1String("RemoveProperty"), argumentList); - } - - inline QDBusPendingReply Reprobe() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Reprobe"), argumentList); - } - - inline QDBusPendingReply Rescan() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Rescan"), argumentList); - } - - inline QDBusPendingReply<> SetMultipleProperties(const QVariantMap &properties) - { - QList argumentList; - argumentList << QVariant::fromValue(properties); - return asyncCallWithArgumentList(QLatin1String("SetMultipleProperties"), argumentList); - } - - inline QDBusPendingReply<> SetProperty(const QString &key, const QDBusVariant &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetProperty"), argumentList); - } - - inline QDBusPendingReply<> SetPropertyBoolean(const QString &key, bool value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetPropertyBoolean"), argumentList); - } - - inline QDBusPendingReply<> SetPropertyDouble(const QString &key, double value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetPropertyDouble"), argumentList); - } - - inline QDBusPendingReply<> SetPropertyInteger(const QString &key, int value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetPropertyInteger"), argumentList); - } - - inline QDBusPendingReply<> SetPropertyString(const QString &key, const QString &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetPropertyString"), argumentList); - } - - inline QDBusPendingReply<> SetPropertyStringList(const QString &key, const QStringList &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("SetPropertyStringList"), argumentList); - } - - inline QDBusPendingReply<> StringListAppend(const QString &key, const QString &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("StringListAppend"), argumentList); - } - - inline QDBusPendingReply<> StringListPrepend(const QString &key, const QString &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("StringListPrepend"), argumentList); - } - - inline QDBusPendingReply<> StringListRemove(const QString &key, const QString &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("StringListRemove"), argumentList); - } - - inline QDBusPendingReply Unlock() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("Unlock"), argumentList); - } - -Q_SIGNALS: // SIGNALS - void Condition(const QString &cond_name, const QString &cond_details); - void InterfaceLockAcquired(const QString &interface_name, const QString &lock_holder, int num_locks); - void InterfaceLockReleased(const QString &interface_name, const QString &lock_holder, int num_locks); -}; - -#endif diff --git a/DBusGlue/org_freedesktop_Hal_Device_Volume.h b/DBusGlue/org_freedesktop_Hal_Device_Volume.h deleted file mode 100644 index 0bb04bb..0000000 --- a/DBusGlue/org_freedesktop_Hal_Device_Volume.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c fdoHalDeviceVolume -p org_freedesktop_Hal_Device_Volume /ferris/DBusGlue/org.freedesktop.Hal.Device.Volume.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef ORG_FREEDESKTOP_HAL_DEVICE_VOLUME_H_1329958831 -#define ORG_FREEDESKTOP_HAL_DEVICE_VOLUME_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface org.freedesktop.Hal.Device.Volume - */ -class fdoHalDeviceVolume: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "org.freedesktop.Hal.Device.Volume"; } - -public: - fdoHalDeviceVolume(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~fdoHalDeviceVolume(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply Eject(const QStringList &extra_options) - { - QList argumentList; - argumentList << QVariant::fromValue(extra_options); - return asyncCallWithArgumentList(QLatin1String("Eject"), argumentList); - } - - inline QDBusPendingReply Mount(const QString &mount_point, const QString &fstype, const QStringList &extra_options) - { - QList argumentList; - argumentList << QVariant::fromValue(mount_point) << QVariant::fromValue(fstype) << QVariant::fromValue(extra_options); - return asyncCallWithArgumentList(QLatin1String("Mount"), argumentList); - } - - inline QDBusPendingReply Unmount(const QStringList &extra_options) - { - QList argumentList; - argumentList << QVariant::fromValue(extra_options); - return asyncCallWithArgumentList(QLatin1String("Unmount"), argumentList); - } - -Q_SIGNALS: // SIGNALS -}; - -#endif diff --git a/DBusGlue/org_freedesktop_Hal_Manager.h b/DBusGlue/org_freedesktop_Hal_Manager.h deleted file mode 100644 index 2b0d813..0000000 --- a/DBusGlue/org_freedesktop_Hal_Manager.h +++ /dev/null @@ -1,115 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c fdoHalManager -p org_freedesktop_Hal_Manager /ferris/DBusGlue/org.freedesktop.Hal.Manager.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef ORG_FREEDESKTOP_HAL_MANAGER_H_1329958831 -#define ORG_FREEDESKTOP_HAL_MANAGER_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface org.freedesktop.Hal.Manager - */ -class fdoHalManager: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "org.freedesktop.Hal.Manager"; } - -public: - fdoHalManager(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~fdoHalManager(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply<> AcquireGlobalInterfaceLock(const QString &interface_name, bool exclusive) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name) << QVariant::fromValue(exclusive); - return asyncCallWithArgumentList(QLatin1String("AcquireGlobalInterfaceLock"), argumentList); - } - - inline QDBusPendingReply<> CommitToGdl(const QString &temporary_udi, const QString &global_udi) - { - QList argumentList; - argumentList << QVariant::fromValue(temporary_udi) << QVariant::fromValue(global_udi); - return asyncCallWithArgumentList(QLatin1String("CommitToGdl"), argumentList); - } - - inline QDBusPendingReply DeviceExists(const QDBusObjectPath &udi) - { - QList argumentList; - argumentList << QVariant::fromValue(udi); - return asyncCallWithArgumentList(QLatin1String("DeviceExists"), argumentList); - } - - inline QDBusPendingReply > FindDeviceByCapability(const QString &capability) - { - QList argumentList; - argumentList << QVariant::fromValue(capability); - return asyncCallWithArgumentList(QLatin1String("FindDeviceByCapability"), argumentList); - } - - inline QDBusPendingReply > FindDeviceStringMatch(const QString &key, const QString &value) - { - QList argumentList; - argumentList << QVariant::fromValue(key) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("FindDeviceStringMatch"), argumentList); - } - - inline QDBusPendingReply GetAllDevices() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("GetAllDevices"), argumentList); - } - - inline QDBusPendingReply NewDevice() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("NewDevice"), argumentList); - } - - inline QDBusPendingReply<> ReleaseGlobalInterfaceLock(const QString &interface_name) - { - QList argumentList; - argumentList << QVariant::fromValue(interface_name); - return asyncCallWithArgumentList(QLatin1String("ReleaseGlobalInterfaceLock"), argumentList); - } - - inline QDBusPendingReply<> Remove(const QString &udi) - { - QList argumentList; - argumentList << QVariant::fromValue(udi); - return asyncCallWithArgumentList(QLatin1String("Remove"), argumentList); - } - - inline QDBusPendingReply<> SingletonAddonIsReady(const QString &command_line) - { - QList argumentList; - argumentList << QVariant::fromValue(command_line); - return asyncCallWithArgumentList(QLatin1String("SingletonAddonIsReady"), argumentList); - } - -Q_SIGNALS: // SIGNALS - void DeviceAdded(const QString &udi); - void DeviceRemoved(const QString &udi); - void GlobalInterfaceLockAcquired(const QString &interface_name, const QString &lock_holder, int num_locks); - void GlobalInterfaceLockReleased(const QString &interface_name, const QString &lock_holder, int num_locks); - void NewCapability(const QString &udi, const QString &cap_name); -}; - -#endif diff --git a/DBusGlue/worker_adaptor.h b/DBusGlue/worker_adaptor.h deleted file mode 100644 index eeb87cd..0000000 --- a/DBusGlue/worker_adaptor.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c worker -a worker_adaptor /ferris/DBusGlue/ferris_internal_metadata_worker_introspect.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * This file may have been hand-edited. Look for HAND-EDIT comments - * before re-generating it. - */ - -#ifndef WORKER_ADAPTOR_H_1329958831 -#define WORKER_ADAPTOR_H_1329958831 - -#include -#include -class QByteArray; -template class QList; -template class QMap; -class QString; -class QStringList; -class QVariant; - -/* - * Adaptor class for interface com.libferris.Metadata.Worker - */ -class worker: public QDBusAbstractAdaptor -{ - Q_OBJECT - Q_CLASSINFO("D-Bus Interface", "com.libferris.Metadata.Worker") - Q_CLASSINFO("D-Bus Introspection", "" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" -" \n" - "") -public: - worker(QObject *parent); - virtual ~worker(); - -public: // PROPERTIES -public Q_SLOTS: // METHODS - QByteArray get(const QString &earl, const QString &name); - int ping(); - void set(const QString &earl, const QString &name, const QByteArray &value); -Q_SIGNALS: // SIGNALS -}; - -#endif diff --git a/DBusGlue/worker_interface.h b/DBusGlue/worker_interface.h deleted file mode 100644 index 211309e..0000000 --- a/DBusGlue/worker_interface.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c worker -p worker_interface /ferris/DBusGlue/ferris_internal_metadata_worker_introspect.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * Do not edit! All changes made to it will be lost. - */ - -#ifndef WORKER_INTERFACE_H_1329958831 -#define WORKER_INTERFACE_H_1329958831 - -#include -#include -#include -#include -#include -#include -#include -#include - -/* - * Proxy class for interface com.libferris.Metadata.Worker - */ -class worker: public QDBusAbstractInterface -{ - Q_OBJECT -public: - static inline const char *staticInterfaceName() - { return "com.libferris.Metadata.Worker"; } - -public: - worker(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0); - - ~worker(); - -public Q_SLOTS: // METHODS - inline QDBusPendingReply get(const QString &earl, const QString &name) - { - QList argumentList; - argumentList << QVariant::fromValue(earl) << QVariant::fromValue(name); - return asyncCallWithArgumentList(QLatin1String("get"), argumentList); - } - - inline QDBusPendingReply ping() - { - QList argumentList; - return asyncCallWithArgumentList(QLatin1String("ping"), argumentList); - } - - inline QDBusPendingReply<> set(const QString &earl, const QString &name, const QByteArray &value) - { - QList argumentList; - argumentList << QVariant::fromValue(earl) << QVariant::fromValue(name) << QVariant::fromValue(value); - return asyncCallWithArgumentList(QLatin1String("set"), argumentList); - } - -Q_SIGNALS: // SIGNALS -}; - -#endif diff --git a/plugins/context/amarok/player_interface.cpp b/plugins/context/amarok/player_interface.cpp deleted file mode 100644 index 23e6227..0000000 --- a/plugins/context/amarok/player_interface.cpp +++ /dev/null @@ -1,28 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -i dbus-extra-types.hh -c player -p player_interface /ferris/plugins/context/amarok/player_interface.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * This file may have been hand-edited. Look for HAND-EDIT comments - * before re-generating it. - */ - -#include "player_interface.h" - -/* - * Implementation of interface class player - */ - -player::player(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) - : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) -{ -} - -player::~player() -{ -} - - -#include "player_interface.moc" diff --git a/plugins/context/amarok/tracklist_interface.cpp b/plugins/context/amarok/tracklist_interface.cpp deleted file mode 100644 index 27d1bbf..0000000 --- a/plugins/context/amarok/tracklist_interface.cpp +++ /dev/null @@ -1,28 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -N -m -c tracklist -p tracklist_interface /ferris/plugins/context/amarok/tracklist_interface.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * This file may have been hand-edited. Look for HAND-EDIT comments - * before re-generating it. - */ - -#include "tracklist_interface.h" - -/* - * Implementation of interface class tracklist - */ - -tracklist::tracklist(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) - : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) -{ -} - -tracklist::~tracklist() -{ -} - - -#include "tracklist_interface.moc" diff --git a/plugins/context/xwin/klipper_interface.cpp b/plugins/context/xwin/klipper_interface.cpp deleted file mode 100644 index 92ee9bb..0000000 --- a/plugins/context/xwin/klipper_interface.cpp +++ /dev/null @@ -1,26 +0,0 @@ -/* - * This file was generated by qdbusxml2cpp version 0.7 - * Command line was: qdbusxml2cpp -c klipper -p klipper_interface /ferris/plugins/context/xwin/klipper_interface.xml - * - * qdbusxml2cpp is Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). - * - * This is an auto-generated file. - * This file may have been hand-edited. Look for HAND-EDIT comments - * before re-generating it. - */ - -#include "klipper_interface.h" - -/* - * Implementation of interface class klipper - */ - -klipper::klipper(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent) - : QDBusAbstractInterface(service, path, staticInterfaceName(), connection, parent) -{ -} - -klipper::~klipper() -{ -} - diff --git a/plugins/context/xwin/klipper_interface_public.hh b/plugins/context/xwin/klipper_interface_public.hh deleted file mode 100644 index 5fc9915..0000000 --- a/plugins/context/xwin/klipper_interface_public.hh +++ /dev/null @@ -1,125 +0,0 @@ -/**************************************************************************** -** Meta object code from reading C++ file 'klipper_interface.h' -** -** Created: Thu Feb 23 11:00:40 2012 -** by: The Qt Meta Object Compiler version 63 (Qt 4.8.0) -** -** WARNING! All changes made in this file will be lost! -*****************************************************************************/ - -#include "klipper_interface.h" -#if !defined(Q_MOC_OUTPUT_REVISION) -#error "The header file 'klipper_interface.h' doesn't include ." -#elif Q_MOC_OUTPUT_REVISION != 63 -#error "This file was generated using the moc from 4.8.0. It" -#error "cannot be used with the include files from this version of Qt." -#error "(The moc has changed too much.)" -#endif - -QT_BEGIN_MOC_NAMESPACE -static const uint qt_meta_data_klipper[] = { - - // content: - 6, // revision - 0, // classname - 0, 0, // classinfo - 8, 14, // methods - 0, 0, // properties - 0, 0, // enums/sets - 0, 0, // constructors - 0, // flags - 0, // signalCount - - // slots: signature, parameters, type, tag, flags - 29, 8, 9, 8, 0x0a, - 54, 8, 9, 8, 0x0a, - 105, 8, 78, 8, 0x0a, - 130, 128, 78, 8, 0x0a, - 190, 8, 159, 8, 0x0a, - 218, 216, 9, 8, 0x0a, - 248, 8, 9, 8, 0x0a, - 286, 8, 9, 8, 0x0a, - - 0 // eod -}; - -static const char qt_meta_stringdata_klipper[] = { - "klipper\0\0QDBusPendingReply<>\0" - "clearClipboardContents()\0" - "clearClipboardHistory()\0" - "QDBusPendingReply\0" - "getClipboardContents()\0i\0" - "getClipboardHistoryItem(int)\0" - "QDBusPendingReply\0" - "getClipboardHistoryMenu()\0s\0" - "setClipboardContents(QString)\0" - "showKlipperManuallyInvokeActionMenu()\0" - "showKlipperPopupMenu()\0" -}; - -void klipper::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) -{ - if (_c == QMetaObject::InvokeMetaMethod) { - Q_ASSERT(staticMetaObject.cast(_o)); - klipper *_t = static_cast(_o); - switch (_id) { - case 0: { QDBusPendingReply<> _r = _t->clearClipboardContents(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply<>*>(_a[0]) = _r; } break; - case 1: { QDBusPendingReply<> _r = _t->clearClipboardHistory(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply<>*>(_a[0]) = _r; } break; - case 2: { QDBusPendingReply _r = _t->getClipboardContents(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply*>(_a[0]) = _r; } break; - case 3: { QDBusPendingReply _r = _t->getClipboardHistoryItem((*reinterpret_cast< int(*)>(_a[1]))); - if (_a[0]) *reinterpret_cast< QDBusPendingReply*>(_a[0]) = _r; } break; - case 4: { QDBusPendingReply _r = _t->getClipboardHistoryMenu(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply*>(_a[0]) = _r; } break; - case 5: { QDBusPendingReply<> _r = _t->setClipboardContents((*reinterpret_cast< const QString(*)>(_a[1]))); - if (_a[0]) *reinterpret_cast< QDBusPendingReply<>*>(_a[0]) = _r; } break; - case 6: { QDBusPendingReply<> _r = _t->showKlipperManuallyInvokeActionMenu(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply<>*>(_a[0]) = _r; } break; - case 7: { QDBusPendingReply<> _r = _t->showKlipperPopupMenu(); - if (_a[0]) *reinterpret_cast< QDBusPendingReply<>*>(_a[0]) = _r; } break; - default: ; - } - } -} - -const QMetaObjectExtraData klipper::staticMetaObjectExtraData = { - 0, qt_static_metacall -}; - -const QMetaObject klipper::staticMetaObject = { - { &QDBusAbstractInterface::staticMetaObject, qt_meta_stringdata_klipper, - qt_meta_data_klipper, &staticMetaObjectExtraData } -}; - -#ifdef Q_NO_DATA_RELOCATION -const QMetaObject &klipper::getStaticMetaObject() { return staticMetaObject; } -#endif //Q_NO_DATA_RELOCATION - -const QMetaObject *klipper::metaObject() const -{ - return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; -} - -void *klipper::qt_metacast(const char *_clname) -{ - if (!_clname) return 0; - if (!strcmp(_clname, qt_meta_stringdata_klipper)) - return static_cast(const_cast< klipper*>(this)); - return QDBusAbstractInterface::qt_metacast(_clname); -} - -int klipper::qt_metacall(QMetaObject::Call _c, int _id, void **_a) -{ - _id = QDBusAbstractInterface::qt_metacall(_c, _id, _a); - if (_id < 0) - return _id; - if (_c == QMetaObject::InvokeMetaMethod) { - if (_id < 8) - qt_static_metacall(this, _c, _id, _a); - _id -= 8; - } - return _id; -} -QT_END_MOC_NAMESPACE