blob: 0354cac9567e8bea1279911216078824d9aef696 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.accessibility
{
import flash.accessibility.Accessibility;
import flash.events.Event;
import flash.events.KeyboardEvent;
import flash.ui.Keyboard;
import mx.accessibility.AccConst;
import mx.controls.Button;
import mx.core.UIComponent;
import mx.core.mx_internal;
use namespace mx_internal;
/**
* ButtonAccImpl is a subclass of AccessibilityImplementation
* which implements accessibility for the Button class.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class ButtonAccImpl extends AccImpl
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Class methods
//
//--------------------------------------------------------------------------
/**
* Enables accessibility in the Button class.
*
* <p>This method is called by application startup code
* that is autogenerated by the MXML compiler.
* Afterwards, when instances of Button are initialized,
* their <code>accessibilityImplementation</code> property
* will be set to an instance of this class.</p>
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static function enableAccessibility():void
{
Button.createAccessibilityImplementation =
createAccessibilityImplementation;
}
/**
* @private
* Creates a Button's AccessibilityImplementation object.
* This method is called from UIComponent's
* initializeAccessibility() method.
*/
mx_internal static function createAccessibilityImplementation(
component:UIComponent):void
{
component.accessibilityImplementation =
new ButtonAccImpl(component);
}
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* Constructor.
*
* @param master The UIComponent instance that this AccImpl instance
* is making accessible.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function ButtonAccImpl(master:UIComponent)
{
super(master);
role = AccConst.ROLE_SYSTEM_PUSHBUTTON;
}
//--------------------------------------------------------------------------
//
// Overridden properties: AccImpl
//
//--------------------------------------------------------------------------
//----------------------------------
// eventsToHandle
//----------------------------------
/**
* @private
* Array of events that we should listen for from the master component.
*/
override protected function get eventsToHandle():Array
{
return super.eventsToHandle.concat([ "click", "labelChanged" ]);
}
//--------------------------------------------------------------------------
//
// Overridden methods: AccessibilityImplementation
//
//--------------------------------------------------------------------------
/**
* @private
* IAccessible method for returning the state of the Button.
* States are predefined for all the components in MSAA.
* Values are assigned to each state.
* Depending upon the button being pressed or released,
* a value is returned.
*
* @param childID uint
*
* @return State uint
*/
override public function get_accState(childID:uint):uint
{
var accState:uint = getState(childID);
if (Button(master).selected)
accState |= AccConst.STATE_SYSTEM_PRESSED;
return accState;
}
/**
* @private
* IAccessible method for returning the default action
* of the Button, which is Press.
*
* @param childID uint
*
* @return DefaultAction String
*/
override public function get_accDefaultAction(childID:uint):String
{
return "Press";
}
/**
* @private
* IAccessible method for performing the default action
* associated with Button, which is Press.
*
* @param childID uint
*/
override public function accDoDefaultAction(childID:uint):void
{
if (master.enabled)
{
var event:KeyboardEvent = new KeyboardEvent(KeyboardEvent.KEY_DOWN);
event.keyCode = Keyboard.SPACE;
master.dispatchEvent(event);
event = new KeyboardEvent(KeyboardEvent.KEY_UP);
event.keyCode = Keyboard.SPACE;
master.dispatchEvent(event);
}
}
//--------------------------------------------------------------------------
//
// Overridden methods: AccImpl
//
//--------------------------------------------------------------------------
/**
* @private
* method for returning the name of the Button
* which is spoken out by the screen reader
* The Button should return the label inside as the name of the Button.
* The name returned here would take precedence over the name
* specified in the accessibility panel.
*
* @param childID uint
*
* @return Name String
*/
override protected function getName(childID:uint):String
{
var label:String = Button(master).label;
return label != null && label != "" ? label : "";
}
//--------------------------------------------------------------------------
//
// Overridden event handlers: AccImpl
//
//--------------------------------------------------------------------------
/**
* @private
* Override the generic event handler.
* All AccImpl must implement this
* to listen for events from its master component.
*/
override protected function eventHandler(event:Event):void
{
// Let AccImpl class handle the events
// that all accessible UIComponents understand.
$eventHandler(event);
switch (event.type)
{
case "click":
{
Accessibility.sendEvent(master, 0, AccConst.EVENT_OBJECT_STATECHANGE);
Accessibility.updateProperties();
break;
}
case "labelChanged":
{
Accessibility.sendEvent(master, 0, AccConst.EVENT_OBJECT_NAMECHANGE);
Accessibility.updateProperties();
break;
}
}
}
}
}