4b31c2e3ee61b53b441a77fe49e7b248c56cd6ec
[profile/ivi/qtdeclarative.git] / src / plugins / accessible / quick / qaccessiblequickview.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qaccessiblequickview.h"
43
44 #include <QtGui/qguiapplication.h>
45
46 #include <QtQuick/qquickitem.h>
47 #include <QtQuick/private/qquickitem_p.h>
48
49 #include "qaccessiblequickitem.h"
50 #include "qqmlaccessible.h"
51
52 #ifndef QT_NO_ACCESSIBILITY
53
54 QT_BEGIN_NAMESPACE
55
56 QAccessibleQuickView::QAccessibleQuickView(QQuickView *object)
57     :QAccessibleObject(object)
58 {
59 }
60
61 int QAccessibleQuickView::childCount() const
62 {
63     return view()->rootItem() ? 1 : 0;
64 }
65
66 QAccessibleInterface *QAccessibleQuickView::parent() const
67 {
68     // FIXME: for now we assume to be a top level window...
69     return QAccessible::queryAccessibleInterface(qApp);
70 }
71
72 QAccessibleInterface *QAccessibleQuickView::child(int index) const
73 {
74     if (index == 0) {
75         if (QQuickItem *declarativeRoot = view()->rootObject())
76             return new QAccessibleQuickItem(declarativeRoot);
77     }
78     return 0;
79 }
80
81 QAccessible::Role QAccessibleQuickView::role() const
82 {
83     return QAccessible::Window; // FIXME
84 }
85
86 QAccessible::State QAccessibleQuickView::state() const
87 {
88     QAccessible::State st;
89     if (view() == QGuiApplication::focusWindow())
90         st.active = true;
91     if (!view()->isVisible())
92         st.invisible = true;
93     return st;
94 }
95
96 QRect QAccessibleQuickView::rect() const
97 {
98     return QRect(view()->x(), view()->y(), view()->width(), view()->height());
99 }
100
101 QString QAccessibleQuickView::text(QAccessible::Text text) const
102 {
103 #ifdef Q_ACCESSIBLE_QUICK_ITEM_ENABLE_DEBUG_DESCRIPTION
104     if (text == QAccessible::DebugDescription) {
105         return QString::fromAscii(object()->metaObject()->className()) ;
106     }
107 #else
108     Q_UNUSED(text)
109 #endif
110     return view()->windowTitle();
111 }
112
113
114 /*!
115   \internal
116
117   Can also return \a item itself
118   */
119 static QQuickItem *childAt_helper(QQuickItem *item, int x, int y)
120 {
121     if (item->opacity() == 0.0 || !item->isVisible() || !item->isEnabled())
122         return 0;
123
124     if (item->flags() & QQuickItem::ItemClipsChildrenToShape) {
125         if (!itemScreenRect(item).contains(x, y))
126             return 0;
127     }
128
129     QScopedPointer<QAccessibleInterface> accessibleInterface(QAccessible::queryAccessibleInterface(item));
130     if (accessibleInterface->childCount() == 0) {
131         return (itemScreenRect(item).contains(x, y)) ? item : 0;
132     }
133
134     QQuickItemPrivate *itemPrivate = QQuickItemPrivate::get(item);
135
136     QList<QQuickItem *> children = itemPrivate->paintOrderChildItems();
137     for (int i = children.count() - 1; i >= 0; --i) {
138         QQuickItem *child = children.at(i);
139         if (QQuickItem *childChild = childAt_helper(child, x, y))
140             return childChild;
141     }
142
143     QRect screenRect = itemScreenRect(item);
144
145     if (screenRect.contains(x, y))
146         return item;
147
148     return 0;
149 }
150
151 QAccessibleInterface *QAccessibleQuickView::childAt(int x, int y) const
152 {
153     Q_ASSERT(view());
154     QQuickItem *root = view()->rootItem();
155     if (root) {
156         if (QQuickItem *item = childAt_helper(root, x, y))
157             return QAccessible::queryAccessibleInterface(item);
158     }
159     return 0;
160 }
161
162 int QAccessibleQuickView::indexOfChild(const QAccessibleInterface *iface) const
163 {
164     if (iface) {
165         QQuickItem *declarativeRoot = view()->rootObject();
166         if (declarativeRoot == iface->object())
167             return 0;
168     }
169     return -1;
170
171 }
172
173 QT_END_NAMESPACE
174
175 #endif // QT_NO_ACCESSIBILITY