summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/linuxaccessibility/struct_marshallers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/platformsupport/linuxaccessibility/struct_marshallers.cpp')
-rw-r--r--src/platformsupport/linuxaccessibility/struct_marshallers.cpp234
1 files changed, 234 insertions, 0 deletions
diff --git a/src/platformsupport/linuxaccessibility/struct_marshallers.cpp b/src/platformsupport/linuxaccessibility/struct_marshallers.cpp
new file mode 100644
index 0000000000..61e1a763d0
--- /dev/null
+++ b/src/platformsupport/linuxaccessibility/struct_marshallers.cpp
@@ -0,0 +1,234 @@
+/****************************************************************************
+**
+** 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 <atspi/atspi-constants.h>
+#include <QtCore/qdebug.h>
+#include <QtDBus/qdbusmetatype.h>
+
+#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<QSpiIntList>();
+ qDBusRegisterMetaType<QSpiUIntList>();
+ qDBusRegisterMetaType<QSpiAccessibleCacheItem>();
+ qDBusRegisterMetaType<QSpiAccessibleCacheArray>();
+ qDBusRegisterMetaType<QSpiObjectReference>();
+ qDBusRegisterMetaType<QSpiObjectReferenceArray>();
+ qDBusRegisterMetaType<QSpiAttributeSet>();
+ qDBusRegisterMetaType<QSpiAction>();
+ qDBusRegisterMetaType<QSpiActionArray>();
+ qDBusRegisterMetaType<QSpiEventListener>();
+ qDBusRegisterMetaType<QSpiEventListenerArray>();
+ qDBusRegisterMetaType<QSpiDeviceEvent>();
+ qDBusRegisterMetaType<QSpiAppUpdate>();
+ qDBusRegisterMetaType<QSpiRelationArrayEntry>();
+ qDBusRegisterMetaType<QSpiRelationArray>();
+}
+
+QT_END_NAMESPACE