~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/accessibility/AccessibilityImageMapLink.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Apple Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 *
 
8
 * 1.  Redistributions of source code must retain the above copyright
 
9
 *     notice, this list of conditions and the following disclaimer.
 
10
 * 2.  Redistributions in binary form must reproduce the above copyright
 
11
 *     notice, this list of conditions and the following disclaimer in the
 
12
 *     documentation and/or other materials provided with the distribution.
 
13
 * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
 
14
 *     its contributors may be used to endorse or promote products derived
 
15
 *     from this software without specific prior written permission.
 
16
 *
 
17
 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
 
18
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
19
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
20
 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 
21
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
22
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
23
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
24
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
27
 */
 
28
 
 
29
#include "config.h"
 
30
#include "AccessibilityImageMapLink.h"
 
31
 
 
32
#include "AXObjectCache.h"
 
33
#include "AccessibilityRenderObject.h"
 
34
#include "Document.h"
 
35
#include "HTMLNames.h"
 
36
#include "RenderBoxModelObject.h"
 
37
 
 
38
namespace WebCore {
 
39
    
 
40
using namespace HTMLNames;
 
41
 
 
42
AccessibilityImageMapLink::AccessibilityImageMapLink()
 
43
    : m_areaElement(0)
 
44
    , m_mapElement(0)
 
45
{
 
46
}
 
47
 
 
48
AccessibilityImageMapLink::~AccessibilityImageMapLink()
 
49
{
 
50
}    
 
51
 
 
52
PassRefPtr<AccessibilityImageMapLink> AccessibilityImageMapLink::create()
 
53
{
 
54
    return adoptRef(new AccessibilityImageMapLink());
 
55
}
 
56
 
 
57
AccessibilityObject* AccessibilityImageMapLink::parentObject() const
 
58
{
 
59
    if (m_parent)
 
60
        return m_parent;
 
61
    
 
62
    if (!m_mapElement.get() || !m_mapElement->renderer())
 
63
        return 0;
 
64
    
 
65
    return m_mapElement->document()->axObjectCache()->getOrCreate(m_mapElement->renderer());
 
66
}
 
67
    
 
68
AccessibilityRole AccessibilityImageMapLink::roleValue() const
 
69
{
 
70
    if (!m_areaElement)
 
71
        return WebCoreLinkRole;
 
72
    
 
73
    const AtomicString& ariaRole = getAttribute(roleAttr);
 
74
    if (!ariaRole.isEmpty())
 
75
        return AccessibilityObject::ariaRoleToWebCoreRole(ariaRole);
 
76
 
 
77
    return WebCoreLinkRole;
 
78
}
 
79
    
 
80
Element* AccessibilityImageMapLink::actionElement() const
 
81
{
 
82
    return anchorElement();
 
83
}
 
84
    
 
85
Element* AccessibilityImageMapLink::anchorElement() const
 
86
{
 
87
    return m_areaElement.get();
 
88
}
 
89
 
 
90
KURL AccessibilityImageMapLink::url() const
 
91
{
 
92
    if (!m_areaElement.get())
 
93
        return KURL();
 
94
    
 
95
    return m_areaElement->href();
 
96
}
 
97
 
 
98
void AccessibilityImageMapLink::accessibilityText(Vector<AccessibilityText>& textOrder)
 
99
{
 
100
    String description = accessibilityDescription();
 
101
    if (!description.isEmpty())
 
102
        textOrder.append(AccessibilityText(description, AlternativeText));
 
103
 
 
104
    const AtomicString& titleText = getAttribute(titleAttr);
 
105
    if (!titleText.isEmpty())
 
106
        textOrder.append(AccessibilityText(titleText, TitleTagText));
 
107
 
 
108
    const AtomicString& summary = getAttribute(summaryAttr);
 
109
    if (!summary.isEmpty())
 
110
        textOrder.append(AccessibilityText(summary, SummaryText));
 
111
}
 
112
    
 
113
String AccessibilityImageMapLink::accessibilityDescription() const
 
114
{
 
115
    const AtomicString& ariaLabel = getAttribute(aria_labelAttr);
 
116
    if (!ariaLabel.isEmpty())
 
117
        return ariaLabel;
 
118
    const AtomicString& alt = getAttribute(altAttr);
 
119
    if (!alt.isEmpty())
 
120
        return alt;
 
121
 
 
122
    return String();
 
123
}
 
124
    
 
125
String AccessibilityImageMapLink::title() const
 
126
{
 
127
    const AtomicString& title = getAttribute(titleAttr);
 
128
    if (!title.isEmpty())
 
129
        return title;
 
130
    const AtomicString& summary = getAttribute(summaryAttr);
 
131
    if (!summary.isEmpty())
 
132
        return summary;
 
133
 
 
134
    return String();
 
135
}
 
136
 
 
137
LayoutRect AccessibilityImageMapLink::elementRect() const
 
138
{
 
139
    if (!m_mapElement.get() || !m_areaElement.get())
 
140
        return LayoutRect();
 
141
 
 
142
    RenderObject* renderer;
 
143
    if (m_parent && m_parent->isAccessibilityRenderObject())
 
144
        renderer = static_cast<AccessibilityRenderObject*>(m_parent)->renderer();
 
145
    else
 
146
        renderer = m_mapElement->renderer();
 
147
    
 
148
    if (!renderer)
 
149
        return LayoutRect();
 
150
    
 
151
    return m_areaElement->computeRect(renderer);
 
152
}
 
153
    
 
154
String AccessibilityImageMapLink::stringValueForMSAA() const
 
155
{
 
156
    return url();
 
157
}
 
158
 
 
159
String AccessibilityImageMapLink::nameForMSAA() const
 
160
{
 
161
    return accessibilityDescription();
 
162
}
 
163
 
 
164
} // namespace WebCore