Rename QDeclarative symbols to QQuick and QQml
[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 <QtQuick/qquickitem.h>
45 #include <QtQuick/private/qquickitem_p.h>
46
47 #include "qaccessiblequickitem.h"
48 #include "qqmlaccessible.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 QString QAccessibleQuickView::text(QAccessible::Text text) const
95 {
96 #ifdef Q_ACCESSIBLE_QUICK_ITEM_ENABLE_DEBUG_DESCRIPTION
97     if (text == QAccessible::DebugDescription) {
98         return QString::fromAscii(object()->metaObject()->className()) ;
99     }
100 #else
101     Q_UNUSED(text)
102 #endif
103     return view()->windowTitle();
104 }
105
106
107 /*!
108   \internal
109
110   Can also return \a item itself
111   */
112 static QQuickItem *childAt_helper(QQuickItem *item, int x, int y)
113 {
114     if (item->opacity() == 0.0 || !item->isVisible() || !item->isEnabled())
115         return 0;
116
117     if (item->flags() & QQuickItem::ItemClipsChildrenToShape) {
118         if (!itemScreenRect(item).contains(x, y))
119             return 0;
120     }
121
122     QQuickItemPrivate *itemPrivate = QQuickItemPrivate::get(item);
123
124     QList<QQuickItem *> children = itemPrivate->paintOrderChildItems();
125     for (int i = children.count() - 1; i >= 0; --i) {
126         QQuickItem *child = children.at(i);
127         if (QQuickItem *childChild = childAt_helper(child, x, y))
128             return childChild;
129     }
130
131     QRect screenRect = itemScreenRect(item);
132
133     if (screenRect.contains(x, y))
134         return item;
135
136     return 0;
137 }
138
139 QAccessibleInterface *QAccessibleQuickView::childAt(int x, int y) const
140 {
141     Q_ASSERT(view());
142     QQuickItem *root = view()->rootItem();
143     if (root) {
144         if (QQuickItem *item = childAt_helper(root, x, y))
145             return QAccessible::queryAccessibleInterface(item);
146     }
147     return 0;
148 }
149
150 int QAccessibleQuickView::indexOfChild(const QAccessibleInterface *iface) const
151 {
152     if (iface) {
153         QQuickItem *declarativeRoot = view()->rootObject();
154         if (declarativeRoot == iface->object())
155             return 0;
156     }
157     return -1;
158
159 }
160
161 QT_END_NAMESPACE
162
163 #endif // QT_NO_ACCESSIBILITY