/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "struct_marshallers_p.h" #include #include #include #include "bridge_p.h" QT_BEGIN_NAMESPACE QSpiObjectReference::QSpiObjectReference() : path(QDBusObjectPath(ATSPI_DBUS_PATH_NULL)) {} /* QSpiAccessibleCacheArray */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiAccessibleCacheItem &item) { argument.beginStructure(); argument << item.path; argument << item.application; argument << item.parent; argument << item.children; argument << item.supportedInterfaces; argument << item.name; argument << item.role; argument << item.description; argument << item.state; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAccessibleCacheItem &item) { argument.beginStructure(); argument >> item.path; argument >> item.application; argument >> item.parent; argument >> item.children; argument >> item.supportedInterfaces; argument >> item.name; argument >> item.role; argument >> item.description; argument >> item.state; argument.endStructure(); return argument; } /* QSpiObjectReference */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiObjectReference &address) { argument.beginStructure(); argument << address.service; argument << address.path; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiObjectReference &address) { argument.beginStructure(); argument >> address.service; argument >> address.path; argument.endStructure(); return argument; } /* QSpiAction */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiAction &action) { argument.beginStructure(); argument << action.name; argument << action.description; argument << action.keyBinding; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAction &action) { Q_UNUSED(action) qWarning() << "QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAction &action): implement me!"; return argument; } QDBusArgument &operator<<(QDBusArgument &argument, const QSpiEventListener &ev) { argument.beginStructure(); argument << ev.listenerAddress; argument << ev.eventName; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiEventListener &ev) { argument.beginStructure(); argument >> ev.listenerAddress; argument >> ev.eventName; argument.endStructure(); return argument; } /* QSpiAppUpdate */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiAppUpdate &update) { argument.beginStructure(); argument << update.type << update.address; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAppUpdate &update) { argument.beginStructure(); argument >> update.type >> update.address; argument.endStructure(); return argument; } /* QSpiRelationArrayEntry */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiRelationArrayEntry &entry) { argument.beginStructure(); argument << entry.first << entry.second; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiRelationArrayEntry &entry) { argument.beginStructure(); argument >> entry.first >> entry.second; argument.endStructure(); return argument; } /* QSpiDeviceEvent */ /*---------------------------------------------------------------------------*/ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiDeviceEvent &event) { argument.beginStructure(); argument << event.type << event.id << event.hardwareCode << event.modifiers << event.timestamp << event.text << event.isText; argument.endStructure(); return argument; } const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiDeviceEvent &event) { argument.beginStructure(); argument >> event.type >> event.id >> event.hardwareCode >> event.modifiers >> event.timestamp >> event.text >> event.isText; argument.endStructure(); return argument; } void qSpiInitializeStructTypes() { qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); qDBusRegisterMetaType(); } QT_END_NAMESPACE