Remove "All rights reserved" line from license headers.
[profile/ivi/qtdeclarative.git] / src / plugins / accessible / shared / qdeclarativeaccessible.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 QtDeclarative 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 <qnamespace.h>
43 #include "qdeclarativeaccessible.h"
44
45 #ifndef QT_NO_ACCESSIBILITY
46
47 QT_BEGIN_NAMESPACE
48
49
50 QString Q_GUI_EXPORT qTextBeforeOffsetFromString(int offset, QAccessible2::BoundaryType boundaryType,
51         int *startOffset, int *endOffset, const QString& text);
52 QString Q_GUI_EXPORT qTextAtOffsetFromString(int offset, QAccessible2::BoundaryType boundaryType,
53         int *startOffset, int *endOffset, const QString& text);
54 QString Q_GUI_EXPORT qTextAfterOffsetFromString(int offset, QAccessible2::BoundaryType boundaryType,
55         int *startOffset, int *endOffset, const QString& text);
56
57 QDeclarativeAccessible::QDeclarativeAccessible(QObject *object)
58     :QAccessibleObject(object)
59 {
60 }
61
62 QDeclarativeAccessible::~QDeclarativeAccessible()
63 {
64 }
65
66 QAccessibleInterface *QDeclarativeAccessible::childAt(int x, int y) const
67 {
68     // Note that this function will disregard stacking order.
69     // (QAccessibleQuickView::childAt() does this correctly and more efficient)
70
71     // If the item clips its children, we can return early if the coordinate is outside its rect
72     if (clipsChildren()) {
73         if (!rect().contains(x, y))
74             return 0;
75     }
76
77     for (int i = childCount() - 1; i >= 0; --i) {
78         QAccessibleInterface *childIface = child(i);
79         if (childIface && !childIface->state().invisible) {
80             if (childIface->rect().contains(x, y))
81                 return childIface;
82         }
83         delete childIface;
84     }
85     return 0;
86 }
87
88 QAccessible::State QDeclarativeAccessible::state() const
89 {
90     QAccessible::State state;
91
92     //QRect viewRect(QPoint(0, 0), m_implementation->size());
93     //QRect itemRect(m_item->scenePos().toPoint(), m_item->boundingRect().size().toSize());
94
95     QRect viewRect_ = viewRect();
96     QRect itemRect = rect();
97
98    // qDebug() << "viewRect" << viewRect << "itemRect" << itemRect;
99     // error case:
100     if (viewRect_.isNull() || itemRect.isNull()) {
101         state.invisible = true;
102     }
103
104     if (!viewRect_.intersects(itemRect)) {
105         state.offscreen = true;
106         // state.invisible = true; // no set at this point to ease development
107     }
108
109     if (!object()->property("visible").toBool() || qFuzzyIsNull(object()->property("opacity").toDouble())) {
110         state.invisible = true;
111     }
112
113     if ((role() == QAccessible::CheckBox || role() == QAccessible::RadioButton) && object()->property("checked").toBool()) {
114         state.checked = true;
115     }
116
117     if (role() == QAccessible::EditableText)
118         state.focusable = true;
119
120     //qDebug() << "state?" << m_item->property("state").toString() << m_item->property("status").toString() << m_item->property("visible").toString();
121
122     return state;
123 }
124
125 QStringList QDeclarativeAccessible::actionNames() const
126 {
127     QStringList actions;
128     switch (role()) {
129     case QAccessible::PushButton:
130         actions << QAccessibleActionInterface::pressAction();
131         break;
132     case QAccessible::RadioButton:
133     case QAccessible::CheckBox:
134         actions << QAccessibleActionInterface::checkAction();
135         break;
136     default:
137         break;
138     }
139     return actions;
140 }
141
142 void QDeclarativeAccessible::doAction(const QString &actionName)
143 {
144     if (role() == QAccessible::PushButton && actionName == QAccessibleActionInterface::pressAction()) {
145         QMetaObject::invokeMethod(object(), "accessibleAction");
146     }
147     if ((role() == QAccessible::CheckBox || role() == QAccessible::RadioButton) && actionName == QAccessibleActionInterface::checkAction()) {
148         bool checked = object()->property("checked").toBool();
149         object()->setProperty("checked",  QVariant(!checked));
150     }
151 }
152
153 QStringList QDeclarativeAccessible::keyBindingsForAction(const QString &actionName) const
154 {
155     Q_UNUSED(actionName)
156     return QStringList();
157 }
158
159 QT_END_NAMESPACE
160
161 #endif // QT_NO_ACCESSIBILITY