Add implementations of QAIM::sibling in public APIs.
[profile/ivi/qtbase.git] / src / gui / accessible / qplatformaccessibility.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include "qplatformaccessibility.h"
42 #include <private/qfactoryloader_p.h>
43 #include "qaccessibleplugin.h"
44 #include "qaccessibleobject.h"
45 #include "qaccessiblebridge.h"
46 #include <QtGui/QGuiApplication>
47
48 #include <QDebug>
49
50 QT_BEGIN_NAMESPACE
51
52 #ifndef QT_NO_ACCESSIBILITY
53
54 /* accessiblebridge plugin discovery stuff */
55 #ifndef QT_NO_LIBRARY
56 Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, bridgeloader,
57     (QAccessibleBridgeFactoryInterface_iid, QLatin1String("/accessiblebridge")))
58 #endif
59
60 Q_GLOBAL_STATIC(QVector<QAccessibleBridge *>, bridges)
61
62 /*!
63     \class QPlatformAccessibility
64     \since 5.0
65     \internal
66     \preliminary
67     \ingroup qpa
68     \ingroup accessibility
69
70     \brief The QPlatformAccessibility class is the base class for
71     integrating accessibility backends
72
73     \sa QAccessible
74 */
75 QPlatformAccessibility::QPlatformAccessibility()
76 {
77 }
78
79 QPlatformAccessibility::~QPlatformAccessibility()
80 {
81 }
82
83 void QPlatformAccessibility::notifyAccessibilityUpdate(QAccessibleEvent *event)
84 {
85     initialize();
86
87     if (!bridges() || bridges()->isEmpty())
88         return;
89
90     for (int i = 0; i < bridges()->count(); ++i)
91         bridges()->at(i)->notifyAccessibilityUpdate(event);
92 }
93
94 void QPlatformAccessibility::setRootObject(QObject *o)
95 {
96     initialize();
97     if (bridges()->isEmpty())
98         return;
99
100     if (!o)
101         return;
102
103     for (int i = 0; i < bridges()->count(); ++i) {
104         QAccessibleInterface *iface = QAccessible::queryAccessibleInterface(o);
105         bridges()->at(i)->setRootObject(iface);
106     }
107 }
108
109 void QPlatformAccessibility::initialize()
110 {
111     static bool isInit = false;
112     if (isInit)
113         return;
114     isInit = true;      // ### not atomic
115
116 #ifndef QT_NO_LIBRARY
117     typedef QMultiMap<int, QString> PluginKeyMap;
118     typedef PluginKeyMap::const_iterator PluginKeyMapConstIterator;
119
120     const PluginKeyMap keyMap = bridgeloader()->keyMap();
121     QAccessibleBridgePlugin *factory = 0;
122     int i = -1;
123     const PluginKeyMapConstIterator cend = keyMap.constEnd();
124     for (PluginKeyMapConstIterator it = keyMap.constBegin(); it != cend; ++it) {
125         if (it.key() != i) {
126             i = it.key();
127             factory = qobject_cast<QAccessibleBridgePlugin*>(bridgeloader()->instance(i));
128         }
129         if (factory)
130             if (QAccessibleBridge *bridge = factory->create(it.value()))
131                 bridges()->append(bridge);
132     }
133 #endif
134 }
135
136 void QPlatformAccessibility::cleanup()
137 {
138     qDeleteAll(*bridges());
139 }
140
141 #endif // QT_NO_ACCESSIBILITY
142
143 QT_END_NAMESPACE