diff -r 000000000000 -r 6474c204b198 accessible/src/generic/ImageAccessible.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/accessible/src/generic/ImageAccessible.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,93 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_a11y_ImageAccessible_h__ +#define mozilla_a11y_ImageAccessible_h__ + +#include "BaseAccessibles.h" +#include "nsIAccessibleImage.h" + +class nsGenericHTMLElement; + +namespace mozilla { +namespace a11y { + +/* Accessible for supporting images + * supports: + * - gets name, role + * - support basic state + */ +class ImageAccessible : public LinkableAccessible, + public nsIAccessibleImage +{ +public: + ImageAccessible(nsIContent* aContent, DocAccessible* aDoc); + + // nsISupports + NS_DECL_ISUPPORTS_INHERITED + + // nsIAccessible + NS_IMETHOD GetActionName(uint8_t aIndex, nsAString& aName); + NS_IMETHOD DoAction(uint8_t index); + + // nsIAccessibleImage + NS_DECL_NSIACCESSIBLEIMAGE + + // Accessible + virtual a11y::role NativeRole(); + virtual uint64_t NativeState(); + virtual already_AddRefed NativeAttributes() MOZ_OVERRIDE; + + // ActionAccessible + virtual uint8_t ActionCount(); + +protected: + // Accessible + virtual ENameValueFlag NativeName(nsString& aName) MOZ_OVERRIDE; + +private: + /** + * Return whether the element has a longdesc URI. + */ + bool HasLongDesc() const + { + nsCOMPtr uri = GetLongDescURI(); + return uri; + } + + /** + * Return an URI for showlongdesc action if any. + */ + already_AddRefed GetLongDescURI() const; + + /** + * Used by GetActionName and DoAction to ensure the index for opening the + * longdesc URL is valid. + * It is always assumed that the highest possible index opens the longdesc. + * This doesn't check that there is actually a longdesc, just that the index + * would be correct if there was one. + * + * @param aIndex The 0-based index to be tested. + * + * @returns true if index is valid for longdesc action. + */ + inline bool IsLongDescIndex(uint8_t aIndex); + +}; + +//////////////////////////////////////////////////////////////////////////////// +// Accessible downcasting method + +inline ImageAccessible* +Accessible::AsImage() +{ + return IsImage() ? static_cast(this) : nullptr; +} + +} // namespace a11y +} // namespace mozilla + +#endif +