74 lines
4.7 KiB
ActionScript
Executable File
74 lines
4.7 KiB
ActionScript
Executable File
/*
|
|
Copyright (c) 2009 Yahoo! Inc. All rights reserved.
|
|
The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license
|
|
*/
|
|
package com.yahoo.astra.accessibility
|
|
{
|
|
/**
|
|
* Constants for MSAA accessibility roles available in Flash Player.
|
|
*/
|
|
public class ObjectRoles
|
|
{
|
|
public static const ROLE_SYSTEM_TITLEBAR:uint = 0x00000001;
|
|
public static const ROLE_SYSTEM_MENUBAR:uint = 0x00000002;
|
|
public static const ROLE_SYSTEM_SCROLLBAR:uint = 0x00000003;
|
|
public static const ROLE_SYSTEM_GRIP:uint = 0x00000004;
|
|
public static const ROLE_SYSTEM_SOUND:uint = 0x00000005;
|
|
public static const ROLE_SYSTEM_CURSOR:uint = 0x00000006;
|
|
public static const ROLE_SYSTEM_CARET:uint = 0x00000007;
|
|
public static const ROLE_SYSTEM_ALERT:uint = 0x00000008;
|
|
public static const ROLE_SYSTEM_WINDOW:uint = 0x00000009;
|
|
public static const ROLE_SYSTEM_CLIENT:uint = 0x0000000A;
|
|
public static const ROLE_SYSTEM_MENUPOPUP:uint = 0x0000000B;
|
|
public static const ROLE_SYSTEM_MENUITEM:uint = 0x0000000C;
|
|
public static const ROLE_SYSTEM_TOOLTIP:uint = 0x0000000D;
|
|
public static const ROLE_SYSTEM_APPLICATION:uint = 0x0000000E;
|
|
public static const ROLE_SYSTEM_DOCUMENT:uint = 0x0000000F;
|
|
public static const ROLE_SYSTEM_PANE:uint = 0x00000010;
|
|
public static const ROLE_SYSTEM_CHART:uint = 0x00000011;
|
|
public static const ROLE_SYSTEM_DIALOG:uint = 0x00000012;
|
|
public static const ROLE_SYSTEM_BORDER:uint = 0x00000013;
|
|
public static const ROLE_SYSTEM_GROUPING:uint = 0x00000014;
|
|
public static const ROLE_SYSTEM_SEPARATOR:uint = 0x00000015;
|
|
public static const ROLE_SYSTEM_TOOLBAR:uint = 0x00000016;
|
|
public static const ROLE_SYSTEM_STATUSBAR:uint = 0x00000017;
|
|
public static const ROLE_SYSTEM_TABLE:uint = 0x00000018;
|
|
public static const ROLE_SYSTEM_COLUMNHEADER:uint = 0x00000019;
|
|
public static const ROLE_SYSTEM_ROWHEADER:uint = 0x0000001A;
|
|
public static const ROLE_SYSTEM_COLUMN:uint = 0x0000001B;
|
|
public static const ROLE_SYSTEM_ROW:uint = 0x0000001C;
|
|
public static const ROLE_SYSTEM_CELL:uint = 0x0000001D;
|
|
public static const ROLE_SYSTEM_LINK:uint = 0x0000001E;
|
|
public static const ROLE_SYSTEM_HELPBALLOON:uint = 0x0000001F;
|
|
public static const ROLE_SYSTEM_CHARACTER:uint = 0x00000020;
|
|
public static const ROLE_SYSTEM_LIST:uint = 0x00000021;
|
|
public static const ROLE_SYSTEM_LISTITEM:uint = 0x00000022;
|
|
public static const ROLE_SYSTEM_OUTLINE:uint = 0x00000023;
|
|
public static const ROLE_SYSTEM_OUTLINEITEM:uint = 0x00000024;
|
|
public static const ROLE_SYSTEM_PAGETAB:uint = 0x00000025;
|
|
public static const ROLE_SYSTEM_PROPERTYPAGE:uint = 0x00000026;
|
|
public static const ROLE_SYSTEM_INDICATOR:uint = 0x00000027;
|
|
public static const ROLE_SYSTEM_GRAPHIC:uint = 0x00000028;
|
|
public static const ROLE_SYSTEM_STATICTEXT:uint = 0x00000029;
|
|
public static const ROLE_SYSTEM_TEXT:uint = 0x0000002A;
|
|
public static const ROLE_SYSTEM_PUSHBUTTON:uint = 0x0000002B;
|
|
public static const ROLE_SYSTEM_CHECKBUTTON:uint = 0x0000002C;
|
|
public static const ROLE_SYSTEM_RADIOBUTTON:uint = 0x0000002D;
|
|
public static const ROLE_SYSTEM_COMBOBOX:uint = 0x0000002E;
|
|
public static const ROLE_SYSTEM_DROPLIST:uint = 0x0000002F;
|
|
public static const ROLE_SYSTEM_PROGRESSBAR:uint = 0x00000030;
|
|
public static const ROLE_SYSTEM_DIAL:uint = 0x00000031;
|
|
public static const ROLE_SYSTEM_HOTKEYFIELD:uint = 0x00000032;
|
|
public static const ROLE_SYSTEM_SLIDER:uint = 0x00000033;
|
|
public static const ROLE_SYSTEM_SPINBUTTON:uint = 0x00000034;
|
|
public static const ROLE_SYSTEM_DIAGRAM:uint = 0x00000035;
|
|
public static const ROLE_SYSTEM_ANIMATION:uint = 0x00000036;
|
|
public static const ROLE_SYSTEM_EQUATION:uint = 0x00000037;
|
|
public static const ROLE_SYSTEM_BUTTONDROPDOWN:uint = 0x00000038;
|
|
public static const ROLE_SYSTEM_BUTTONMENU:uint = 0x00000039;
|
|
public static const ROLE_SYSTEM_BUTTONDROPDOWNGRID:uint = 0x0000003A;
|
|
public static const ROLE_SYSTEM_WHITESPACE:uint = 0x0000003B;
|
|
public static const ROLE_SYSTEM_PAGETABLIST:uint = 0x0000003C;
|
|
public static const ROLE_SYSTEM_CLOCK:uint = 0x0000003D;
|
|
}
|
|
} |