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