2007-06-05 08:41:07 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=2:tabstop=2:
|
|
|
|
*/
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-06-05 08:41:07 -07:00
|
|
|
|
|
|
|
#ifndef _nsARIAMap_H_
|
|
|
|
#define _nsARIAMap_H_
|
|
|
|
|
2012-04-13 07:17:03 -07:00
|
|
|
#include "ARIAStateMap.h"
|
2012-01-11 19:07:35 -08:00
|
|
|
#include "mozilla/a11y/Role.h"
|
2007-09-24 18:19:03 -07:00
|
|
|
|
2012-06-10 16:37:47 -07:00
|
|
|
class nsIAtom;
|
2010-12-01 00:53:17 -08:00
|
|
|
class nsIContent;
|
2012-04-16 02:24:23 -07:00
|
|
|
class nsINode;
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Value constants
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to define if role requires to expose nsIAccessibleValue.
|
|
|
|
*/
|
2007-06-05 08:41:07 -07:00
|
|
|
enum EValueRule
|
|
|
|
{
|
2009-06-24 19:12:38 -07:00
|
|
|
/**
|
|
|
|
* nsIAccessibleValue isn't exposed.
|
|
|
|
*/
|
2007-06-05 08:41:07 -07:00
|
|
|
eNoValue,
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* nsIAccessibleValue is implemented, supports value, min and max from
|
|
|
|
* aria-valuenow, aria-valuemin and aria-valuemax.
|
|
|
|
*/
|
|
|
|
eHasValueMinMax
|
2007-06-05 08:41:07 -07:00
|
|
|
};
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Action constants
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to define if the role requires to expose action.
|
|
|
|
*/
|
2008-10-08 05:54:58 -07:00
|
|
|
enum EActionRule
|
|
|
|
{
|
|
|
|
eNoAction,
|
|
|
|
eActivateAction,
|
|
|
|
eClickAction,
|
2012-02-01 17:13:09 -08:00
|
|
|
ePressAction,
|
2008-10-08 05:54:58 -07:00
|
|
|
eCheckUncheckAction,
|
2009-04-19 23:06:19 -07:00
|
|
|
eExpandAction,
|
2008-10-08 05:54:58 -07:00
|
|
|
eJumpAction,
|
|
|
|
eOpenCloseAction,
|
|
|
|
eSelectAction,
|
2009-04-19 23:06:19 -07:00
|
|
|
eSortAction,
|
2008-10-08 05:54:58 -07:00
|
|
|
eSwitchAction
|
|
|
|
};
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Live region constants
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to define if role exposes default value of aria-live attribute.
|
|
|
|
*/
|
2009-02-18 22:56:19 -08:00
|
|
|
enum ELiveAttrRule
|
|
|
|
{
|
|
|
|
eNoLiveAttr,
|
|
|
|
eOffLiveAttr,
|
|
|
|
ePoliteLiveAttr
|
|
|
|
};
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Role constants
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ARIA role overrides role from native markup.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool kUseMapRole = true;
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ARIA role doesn't override the role from native markup.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool kUseNativeRole = false;
|
2009-06-11 11:18:24 -07:00
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ARIA attribute characteristic masks
|
2009-02-15 00:15:31 -08:00
|
|
|
|
|
|
|
/**
|
2009-03-10 13:44:43 -07:00
|
|
|
* This mask indicates the attribute should not be exposed as an object
|
2012-05-28 18:18:45 -07:00
|
|
|
* attribute via the catch-all logic in Accessible::GetAttributes.
|
2009-03-10 13:44:43 -07:00
|
|
|
* This means it either isn't mean't to be exposed as an object attribute, or
|
|
|
|
* that it should, but is already handled in other code.
|
2009-02-15 00:15:31 -08:00
|
|
|
*/
|
2009-03-10 13:44:43 -07:00
|
|
|
const PRUint8 ATTR_BYPASSOBJ = 0x0001;
|
2009-02-15 00:15:31 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This mask indicates the attribute is expected to have an NMTOKEN or bool value.
|
2012-05-28 18:18:45 -07:00
|
|
|
* (See for example usage in Accessible::GetAttributes)
|
2009-02-15 00:15:31 -08:00
|
|
|
*/
|
|
|
|
const PRUint8 ATTR_VALTOKEN = 0x0010;
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
/**
|
|
|
|
* Small footprint storage of persistent aria attribute characteristics.
|
|
|
|
*/
|
|
|
|
struct nsAttributeCharacteristics
|
|
|
|
{
|
|
|
|
nsIAtom** attributeName;
|
|
|
|
const PRUint8 characteristics;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// State map entry
|
2007-06-05 08:41:07 -07:00
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
/**
|
|
|
|
* Used in nsRoleMapEntry.state if no nsIAccessibleStates are automatic for
|
|
|
|
* a given role.
|
|
|
|
*/
|
2007-06-11 02:46:39 -07:00
|
|
|
#define kNoReqStates 0
|
2007-06-05 08:41:07 -07:00
|
|
|
|
2009-12-15 08:03:39 -08:00
|
|
|
enum EDefaultStateRule
|
|
|
|
{
|
|
|
|
//eNoDefaultState,
|
|
|
|
eUseFirstState
|
|
|
|
};
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Role map entry
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For each ARIA role, this maps the nsIAccessible information.
|
|
|
|
*/
|
2007-06-05 08:41:07 -07:00
|
|
|
struct nsRoleMapEntry
|
|
|
|
{
|
|
|
|
// ARIA role: string representation such as "button"
|
2012-06-10 16:37:47 -07:00
|
|
|
const char *roleString;
|
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
// Role mapping rule: maps to this nsIAccessibleRole
|
2012-01-11 19:07:35 -08:00
|
|
|
mozilla::a11y::role role;
|
2007-06-05 08:41:07 -07:00
|
|
|
|
2009-06-11 11:18:24 -07:00
|
|
|
// Role rule: whether to use mapped role or native semantics
|
2011-09-28 23:19:26 -07:00
|
|
|
bool roleRule;
|
2009-06-11 11:18:24 -07:00
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
// Value mapping rule: how to compute nsIAccessible value
|
|
|
|
EValueRule valueRule;
|
2008-10-08 05:54:58 -07:00
|
|
|
|
|
|
|
// Action mapping rule, how to expose nsIAccessible action
|
|
|
|
EActionRule actionRule;
|
|
|
|
|
2009-02-18 22:56:19 -08:00
|
|
|
// 'live' and 'container-live' object attributes mapping rule: how to expose
|
|
|
|
// these object attributes if ARIA 'live' attribute is missed.
|
|
|
|
ELiveAttrRule liveAttRule;
|
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
// Automatic state mapping rule: always include in nsIAccessibleStates
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 state; // or kNoReqStates if no nsIAccessibleStates are automatic for this role.
|
2012-04-05 09:23:30 -07:00
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
// ARIA properties supported for this role
|
2007-12-11 18:10:26 -08:00
|
|
|
// (in other words, the aria-foo attribute to nsIAccessibleStates mapping rules)
|
2007-06-05 08:41:07 -07:00
|
|
|
// Currently you cannot have unlimited mappings, because
|
|
|
|
// a variable sized array would not allow the use of
|
|
|
|
// C++'s struct initialization feature.
|
2012-04-05 09:23:30 -07:00
|
|
|
mozilla::a11y::aria::EStateRule attributeMap1;
|
|
|
|
mozilla::a11y::aria::EStateRule attributeMap2;
|
|
|
|
mozilla::a11y::aria::EStateRule attributeMap3;
|
2007-06-05 08:41:07 -07:00
|
|
|
};
|
|
|
|
|
2009-06-24 19:12:38 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ARIA map
|
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
/**
|
|
|
|
* These are currently initialized (hardcoded) in nsARIAMap.cpp,
|
|
|
|
* and provide the mappings for WAI-ARIA roles and properties using the
|
|
|
|
* structs defined in this file.
|
|
|
|
*/
|
|
|
|
struct nsARIAMap
|
|
|
|
{
|
2008-02-06 20:14:59 -08:00
|
|
|
/**
|
|
|
|
* Empty role map entry. Used by accessibility service to create an accessible
|
|
|
|
* if the accessible can't use role of used accessible class. For example,
|
|
|
|
* it is used for table cells that aren't contained by table.
|
|
|
|
*/
|
|
|
|
static nsRoleMapEntry gEmptyRoleMap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* State map of ARIA states applied to any accessible not depending on
|
|
|
|
* the role.
|
|
|
|
*/
|
2012-04-05 09:23:30 -07:00
|
|
|
static mozilla::a11y::aria::EStateRule gWAIUnivStateMap[];
|
|
|
|
|
2009-02-15 00:15:31 -08:00
|
|
|
/**
|
|
|
|
* Map of attribute to attribute characteristics.
|
|
|
|
*/
|
|
|
|
static nsAttributeCharacteristics gWAIUnivAttrMap[];
|
|
|
|
static PRUint32 gWAIUnivAttrMapLength;
|
2011-11-30 04:36:20 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return accessible state from ARIA universal states applied to the given
|
|
|
|
* element.
|
|
|
|
*/
|
2012-04-05 09:23:30 -07:00
|
|
|
static PRUint64 UniversalStatesFor(mozilla::dom::Element* aElement)
|
2011-11-30 04:36:20 -08:00
|
|
|
{
|
|
|
|
PRUint64 state = 0;
|
|
|
|
PRUint32 index = 0;
|
2012-04-05 09:23:30 -07:00
|
|
|
while (mozilla::a11y::aria::MapToState(gWAIUnivStateMap[index],
|
|
|
|
aElement, &state))
|
2011-11-30 04:36:20 -08:00
|
|
|
index++;
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
2007-06-05 08:41:07 -07:00
|
|
|
};
|
|
|
|
|
2012-04-16 02:24:23 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace a11y {
|
|
|
|
namespace aria {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the role map entry for a given DOM node. This will use the first
|
|
|
|
* ARIA role if the role attribute provides a space delimited list of roles.
|
|
|
|
*
|
|
|
|
* @param aNode [in] the DOM node to get the role map entry for
|
|
|
|
* @return a pointer to the role map entry for the ARIA role, or nsnull
|
|
|
|
* if none
|
|
|
|
*/
|
|
|
|
nsRoleMapEntry* GetRoleMap(nsINode* aNode);
|
|
|
|
|
|
|
|
} // namespace aria
|
|
|
|
} // namespace a11y
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2007-06-05 08:41:07 -07:00
|
|
|
#endif
|