Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/platformsupport/linuxaccessibility/cache.cpp |
Source code | Switch to Preprocessed file |
Line | Source | Count |
---|---|---|
1 | /**************************************************************************** | - |
2 | ** | - |
3 | ** Copyright (C) 2015 The Qt Company Ltd. | - |
4 | ** Contact: http://www.qt.io/licensing/ | - |
5 | ** | - |
6 | ** This file is part of the QtGui module of the Qt Toolkit. | - |
7 | ** | - |
8 | ** $QT_BEGIN_LICENSE:LGPL21$ | - |
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 The Qt Company. For licensing terms | - |
14 | ** and conditions see http://www.qt.io/terms-conditions. For further | - |
15 | ** information use the contact form at http://www.qt.io/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 or version 3 as published by the Free | - |
20 | ** Software Foundation and appearing in the file LICENSE.LGPLv21 and | - |
21 | ** LICENSE.LGPLv3 included in the packaging of this file. Please review the | - |
22 | ** following information to ensure the GNU Lesser General Public License | - |
23 | ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and | - |
24 | ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | - |
25 | ** | - |
26 | ** As a special exception, The Qt Company gives you certain additional | - |
27 | ** rights. These rights are described in The Qt Company LGPL Exception | - |
28 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. | - |
29 | ** | - |
30 | ** $QT_END_LICENSE$ | - |
31 | ** | - |
32 | ****************************************************************************/ | - |
33 | - | |
34 | - | |
35 | #include "cache_p.h" | - |
36 | #include "bridge_p.h" | - |
37 | - | |
38 | #ifndef QT_NO_ACCESSIBILITY | - |
39 | #include "cache_adaptor.h" | - |
40 | - | |
41 | #define QSPI_OBJECT_PATH_CACHE "/org/a11y/atspi/cache" | - |
42 | - | |
43 | QT_BEGIN_NAMESPACE | - |
44 | - | |
45 | /*! | - |
46 | \class QSpiDBusCache | - |
47 | \internal | - |
48 | \brief This class is responsible for the AT-SPI cache interface. | - |
49 | - | |
50 | The idea behind the cache is that starting an application would | - |
51 | result in many dbus calls. The way GTK/Gail/ATK work is that | - |
52 | they create accessibles for all objects on startup. | - |
53 | In order to avoid querying all the objects individually via DBus | - |
54 | they get sent by using the GetItems call of the cache. | - |
55 | - | |
56 | Additionally the AddAccessible and RemoveAccessible signals | - |
57 | are responsible for adding/removing objects from the cache. | - |
58 | - | |
59 | Currently the Qt bridge chooses to ignore these. | - |
60 | */ | - |
61 | - | |
62 | QSpiDBusCache::QSpiDBusCache(QDBusConnection c, QObject* parent) | - |
63 | : QObject(parent) | - |
64 | { | - |
65 | new CacheAdaptor(this); | - |
66 | c.registerObject(QLatin1String(QSPI_OBJECT_PATH_CACHE), this, QDBusConnection::ExportAdaptors); | - |
67 | } never executed: end of block | 0 |
68 | - | |
69 | void QSpiDBusCache::emitAddAccessible(const QSpiAccessibleCacheItem& item) | - |
70 | { | - |
71 | emit AddAccessible(item); | - |
72 | } never executed: end of block | 0 |
73 | - | |
74 | void QSpiDBusCache::emitRemoveAccessible(const QSpiObjectReference& item) | - |
75 | { | - |
76 | emit RemoveAccessible(item); | - |
77 | } never executed: end of block | 0 |
78 | - | |
79 | QSpiAccessibleCacheArray QSpiDBusCache::GetItems() | - |
80 | { | - |
81 | return QSpiAccessibleCacheArray(); never executed: return QSpiAccessibleCacheArray(); | 0 |
82 | } | - |
83 | - | |
84 | QT_END_NAMESPACE | - |
85 | #endif //QT_NO_ACCESSIBILITY | - |
Source code | Switch to Preprocessed file |