Bug 460926 A11y hierachy is broken on Ubuntu 8.10 (GNOME 2.24), r=Evan.Yan sr=roc
[wine-gecko.git] / accessible / src / html / nsHTMLAreaAccessible.cpp
blob29eaf2916e90dbcbf74f7f947974820bacb2c57d
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Author: Aaron Leventhal (aaronl@netscape.com)
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsHTMLAreaAccessible.h"
40 #include "nsIServiceManager.h"
41 #include "nsIDOMElement.h"
42 #include "nsIDOMHTMLAreaElement.h"
43 #include "nsIFrame.h"
44 #include "nsIImageFrame.h"
45 #include "nsIImageMap.h"
48 ////////////////////////////////////////////////////////////////////////////////
49 // nsHTMLAreaAccessible
51 nsHTMLAreaAccessible::
52 nsHTMLAreaAccessible(nsIDOMNode *aDomNode, nsIAccessible *aParent,
53 nsIWeakReference* aShell):
54 nsHTMLLinkAccessible(aDomNode, aShell)
58 ////////////////////////////////////////////////////////////////////////////////
59 // nsIAccessible
61 nsresult
62 nsHTMLAreaAccessible::GetNameInternal(nsAString & aName)
64 nsresult rv = nsAccessible::GetNameInternal(aName);
65 NS_ENSURE_SUCCESS(rv, rv);
67 if (!aName.IsEmpty())
68 return NS_OK;
70 nsCOMPtr<nsIContent> content(do_QueryInterface(mDOMNode));
71 if (!content->GetAttr(kNameSpaceID_None, nsAccessibilityAtoms::alt,
72 aName)) {
73 return GetValue(aName);
76 return NS_OK;
79 NS_IMETHODIMP
80 nsHTMLAreaAccessible::GetDescription(nsAString& aDescription)
82 aDescription.Truncate();
84 // Still to do - follow IE's standard here
85 nsCOMPtr<nsIDOMHTMLAreaElement> area(do_QueryInterface(mDOMNode));
86 if (area)
87 area->GetShape(aDescription);
89 return NS_OK;
92 NS_IMETHODIMP
93 nsHTMLAreaAccessible::GetFirstChild(nsIAccessible **aChild)
95 NS_ENSURE_ARG_POINTER(aChild);
97 *aChild = nsnull;
98 return NS_OK;
101 NS_IMETHODIMP
102 nsHTMLAreaAccessible::GetLastChild(nsIAccessible **aChild)
104 NS_ENSURE_ARG_POINTER(aChild);
106 *aChild = nsnull;
107 return NS_OK;
110 NS_IMETHODIMP
111 nsHTMLAreaAccessible::GetChildCount(PRInt32 *aCount)
113 NS_ENSURE_ARG_POINTER(aCount);
115 *aCount = 0;
116 return NS_OK;
119 NS_IMETHODIMP
120 nsHTMLAreaAccessible::GetBounds(PRInt32 *x, PRInt32 *y,
121 PRInt32 *width, PRInt32 *height)
123 // Essentially this uses GetRect on mAreas of nsImageMap from nsImageFrame
125 *x = *y = *width = *height = 0;
127 nsPresContext *presContext = GetPresContext();
128 NS_ENSURE_TRUE(presContext, NS_ERROR_FAILURE);
130 nsCOMPtr<nsIContent> ourContent(do_QueryInterface(mDOMNode));
131 NS_ENSURE_TRUE(ourContent, NS_ERROR_FAILURE);
133 nsIFrame *frame = GetFrame();
134 NS_ENSURE_TRUE(frame, NS_ERROR_FAILURE);
135 nsIImageFrame *imageFrame;
136 nsresult rv = frame->QueryInterface(NS_GET_IID(nsIImageFrame), (void**)&imageFrame);
137 NS_ENSURE_SUCCESS(rv, rv);
139 nsCOMPtr<nsIImageMap> map;
140 imageFrame->GetImageMap(presContext, getter_AddRefs(map));
141 NS_ENSURE_TRUE(map, NS_ERROR_FAILURE);
143 nsRect rect, orgRectPixels;
144 rv = map->GetBoundsForAreaContent(ourContent, presContext, rect);
145 NS_ENSURE_SUCCESS(rv, rv);
147 *x = presContext->AppUnitsToDevPixels(rect.x);
148 *y = presContext->AppUnitsToDevPixels(rect.y);
150 // XXX Areas are screwy; they return their rects as a pair of points, one pair
151 // stored into the width and height.
152 *width = presContext->AppUnitsToDevPixels(rect.width - rect.x);
153 *height = presContext->AppUnitsToDevPixels(rect.height - rect.y);
155 // Put coords in absolute screen coords
156 orgRectPixels = frame->GetScreenRectExternal();
157 *x += orgRectPixels.x;
158 *y += orgRectPixels.y;
160 return NS_OK;