// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved. package fl.accessibility { import flash.accessibility.Accessibility; import flash.events.Event; import fl.controls.listClasses.ICellRenderer; import fl.controls.List; import fl.core.UIComponent; /** * The ListAccImpl class, also called the List Accessiblity Implementation class, * is used to make a List component accessible. * *

The ListAccImpl class supports system roles, object-based events, and states.

* *

A List reports the role ROLE_SYSTEM_LIST (0x21) to a screen * reader. Items of a List report the role ROLE_SYSTEM_LISTITEM (0x22).

* *

A List reports the following states to a screen reader:

* * *

Additionally, items of a List report the following states:

* * *

A List dispatches the following events to a screen reader:

* * * @see fl.controls.List List * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ public class ListAccImpl extends SelectableListAccImpl { /** * @private * Static variable triggering the hookAccessibility() method. * This is used for initializing ListAccImpl class to hook its * createAccessibilityImplementation() method to List class * before it gets called from UIComponent. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ private static var accessibilityHooked:Boolean = hookAccessibility(); /** * @private * Static method for swapping the createAccessibilityImplementation() * method of List with the ListAccImpl class. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ private static function hookAccessibility():Boolean { List.createAccessibilityImplementation = createAccessibilityImplementation; return true; } //-------------------------------------------------------------------------- // Class methods //-------------------------------------------------------------------------- /** * @private * Method for creating the Accessibility class. * This method is called from UIComponent. * * @param component The UIComponent instance that this AccImpl instance * is making accessible. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ public static function createAccessibilityImplementation(component:UIComponent):void { component.accessibilityImplementation = new ListAccImpl(component); } /** * Enables accessibility for a List component. * This method is required for the compiler to activate * the accessibility classes for a component. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ public static function enableAccessibility():void { } //-------------------------------------------------------------------------- // Constructor //-------------------------------------------------------------------------- /** * @private * @internal Nivesh says: I don't think we should document the constructors * for the accessibility classes. End-users just have to call the * static enableAccessibility method. They don't really create an * instance of the classes. * * Creates a new List Accessibility Implementation. * * @param master The UIComponent instance that this AccImpl instance * is making accessible. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ public function ListAccImpl(master:UIComponent) { super(master); } //-------------------------------------------------------------------------- // Overridden methods: AccessibilityImplementation //-------------------------------------------------------------------------- /** * @private * IAccessible method for returning the value of the ListItem/List * which is spoken out by the screen reader * The List should return the name of the currently selected item * with m of n string as value when focus moves to List. * * @param childID The child id * * @return Value * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ override public function get_accValue(childID:uint):String { var accValue:String; var list:List = List(master); var index:int = list.selectedIndex; if (childID == 0) { if (index > -1) { var ext:String = " " + (index + 1) + " of " + list.dataProvider.length; var item:Object = list.getItemAt(index); if (item is String) { accValue = item + ext; } else { accValue = list.itemToLabel(item) + ext; } } } return accValue; } //-------------------------------------------------------------------------- // Overridden methods: AccImpl //-------------------------------------------------------------------------- /** * @private * method for returning the name of the ListItem/List * which is spoken out by the screen reader. * The ListItem should return the label as the name * with m of n string and List should return the name * specified in the Accessibility Panel. * * @param childID The child id. * * @return Name. * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ override protected function getName(childID:uint):String { if (childID == 0) { return ""; } var list:List = List(master); // Assuming childID is always ItemID + 1 // because getChildIDArray is not always invoked. if(list.dataProvider) { var item:Object = list.getItemAt(childID - 1); var ext:String = " " + childID + " of " + list.dataProvider.length; if (item is String) { return item + ext; } else { return list.itemToLabel(item) + ext; } } return ""; } } }