1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY gnomeversion "2.24">
<!ENTITY manrevision "2.24.0">
<!ENTITY date "September 2008">
<!ENTITY LEGAL SYSTEM "legal.xml">
<!ENTITY gad SYSTEM "gad.xml">
<!ENTITY gtest SYSTEM "gtest.xml">
]>
<?db.chunk.max_depth 4?>
<book id="index" lang="zh-CN">
<title>GNOME 辅助功能开发者指南</title>
<bookinfo>
<abstract role="description">
<para>GNOME 辅助功能指南是为那些想确保自己的程序能为更广泛的用户使用的开发人员准备的。本指南同时涵盖了许多第508节的要求。</para>
</abstract>
<copyright><year>2008</year> <holder>Vincent Alexander</holder></copyright>
<copyright><year>2001, 2002</year> <holder>Calum Benson, Brian Cameron, Bill Haneman, Padraig O'Briain, Sharon Snider</holder></copyright>
<publisher role="maintainer">
<publishername>GNOME 文档项目</publishername>
</publisher>
<legalnotice id="legalnotice">
<para>在自由软件基金会发表的 GNU 自由文档许可证(GFDL)条款的约束下,此文档可以复制、分发和修改。许可证版本应为 1.1 或更新,章节应未加篡改,封面未经涂写。您可以从<ulink type="help" url="ghelp:fdl"> 这里</ulink>下载一份 GFDL,或从本手册附带的 COPYING-DOCS 文件中获取它。</para>
<para>此手册是 GNOME 手册系列的一部分,依照 GFDL 发布。如果想单独分发此手册,您需要向手册添加一份许可证协议,如许可证第 6 节所述。</para>
<para>许多名字被各公司注册为商标,以区别它们的产品和服务。任何 GNOME 文档中出现这些名字时,Gnome 文档项目作者都对它们加以留意,将其全名大写或首字母大写。</para>
<para>DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: <orderedlist>
<listitem>
<para>DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND</para>
</listitem>
<listitem>
<para>UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.</para>
</listitem>
</orderedlist></para>
</legalnotice>
<authorgroup>
<author><firstname>Vincent</firstname> <surname>Alexander</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
<author><firstname>Calum</firstname> <surname>Benson</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
<author><firstname>Brian</firstname> <surname>Cameron</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
<author><firstname>Bill</firstname> <surname>Haneman</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
<author><firstname>Padraig</firstname> <surname>O'Briain</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
<author><firstname>Sharon</firstname> <surname>Snider</surname> <affiliation> <orgname>GNOME 文档项目</orgname> </affiliation></author>
</authorgroup>
<revhistory>
<revision><revnumber> GNOME 2.24 辅助功能开发者指南 V2.24.0 </revnumber> <date>2008年9月</date> <revdescription>
<para role="author">GNOME 文档项目</para>
<para role="publisher">GNOME 文档项目</para>
</revdescription></revision>
<revision><revnumber> GNOME 2.24 辅助功能开发者指南 V2.24.0 </revnumber> <date>2008年9月</date> <revdescription>
<para role="author">GNOME 文档项目</para>
<para role="publisher">GNOME 文档项目</para>
</revdescription></revision>
</revhistory>
<releaseinfo>本手册描述 GNOME 2.24 桌面。</releaseinfo>
<legalnotice>
<title>反馈</title>
<para>报告 bug 或者为 GNOME 桌面和本手册提供建议, 请点击 <ulink type="help" url="ghelp:user-guide?feedback">GNOME 反馈页面</ulink>.</para>
</legalnotice>
<othercredit class="translator">
<personname>
<firstname>keyring</firstname>
</personname>
<email>keyrings@163.com</email>
</othercredit>
<copyright>
<year>2013</year>
<holder>keyring</holder>
</copyright>
</bookinfo>
<chapter id="gad" status="draft">
<title>什么是辅助功能?</title>
<para>辅助功能是指协助残疾人士参与大量日常活动,包括日常工作以及服务、产品、资讯的使用。GNOME 包含一系列库与支持框架能让残疾人士使用 GNOME 用户环境的所有功能。</para>
<para>因此,必要时综合利用辅助技术——语音接口,屏幕阅读器,复用输入设备等等——可以帮助那些永久性或暂时性残疾人士便捷地使用 GNOME 桌面和应用程序。辅助技术对那些不在家里或办公室中使用电脑的人也非常有用。比如,如果你被堵在车流之中,你可以使用语音输入和输出来查阅你的电子邮件。</para>
<para>辅助技术通过使用辅助工具包 (ATK) 的 API 接收来自应用程序的信息,ATK 可以在 GNOME 仓库中找到。由于辅助 API 内置到了 GNOME 的 widgets 中,所以你不需做额外工作就可以让你的 GNOME 程序合理运行在辅助技术上。例如,辅助技术能够自动读取你设置在程序中的部件的标签(比如 GTK 的函数调用:<function>gtk_label_set_text()</function> 或者 <function>gtk_button_new_with_label()</function>)。它们也能找到与某个部件相关联的任何提示文本,然后使用该文本来向用户描述那个部件。</para>
<para>当然,你也可以多花点心思,利用辅助技术来让你的程序运行的更加流畅。这除了可以帮助个人用户,也可以让你的产品在政府部门和教育市场中更具吸引力,因为如今法律要求这个领域的很多应用必须得无障碍。</para>
<section>
<title>残疾类型</title>
<para>仅在美国,大约有3000万人因为不合理设计而无法便利使用电脑。在全球范围下,大约有8%的互联网使用者有不同程度的残疾。残疾可分为以下几种:</para>
<itemizedlist>
<listitem>
<para><emphasis>视觉障碍 </emphasis>——包括弱视(视力昏暗模糊,远/近视,色盲和视力狭窄)到完全失明。一些糟糕的文本字体颜色选择和需要手眼协调的任务(比如移动鼠标)都可能为这些用户造成困难。</para>
</listitem>
<listitem>
<para><emphasis>运动障碍 </emphasis>——肌肉控制力差或虚弱到不足以使用标准键鼠。例如,他们可能无法同时按住两个键,或者更容易意外按错。</para>
</listitem>
<listitem>
<para><emphasis>听觉障碍 </emphasis>—— 包括弱听而听不懂到完全失聪。那些单靠声音来传达重要信息的应用程序会对这部分用户造成困难。</para>
</listitem>
<listitem>
<para><emphasis>认知与语言障碍 </emphasis>——包括阅读障碍与记忆障碍,只靠说写来处理与理解事物。复杂或不一致的显示,或者拙劣的词汇选择都会造成这部分用户使用电脑困难。</para>
</listitem>
<listitem>
<para><emphasis>癫痫疾病</emphasis>——对一些敏感的用户,某些光或声音会造成癫痫发作。</para>
</listitem>
</itemizedlist>
</section>
<section id="gad-how-it-works">
<title>辅助功能在 GNOME 中如何工作</title>
<para>辅助工具包 (ATK) 描述了一组接口,要访问它们就需要通过 GUI 组件自行实现。这些接口是工具包无关的,意思就是你可以用任意部件集来实现,比如 GTK,Motif 或者 Qt 。</para>
<para>GTK 部件集对接口的实现叫 GAIL(GNOME Accessbility Implementation Library) 模块,它会在运行 GTK 程序时动态加载。加载后,你的应用程序中使用标准 GTK 部件的部分就会自动有一个底层辅助功能,根本不需要你修改程序。如果 GAIL 没有加载,那 GTK 部件集将会有一个默认的辅助功能实现,但只是名义上遵循 ATK 规范而不会返回任何信息。应用程序使用了 Bonobo 控件的,尤其是在进程外使用的,也会从 libgail-gnome 模块加载辅助功能支持代码。GNOME 桌面上的程序是否自动加载这些辅助功能支持库决定于<application>gconf</application> 键, "/desktop/gnome/interface/accessibility";这个布尔值为"true"则启用辅助技术支持,应用程序调用 gnome_program_init 后就会自动在运行阶段加载合适的辅助功能库。 "纯 GTK+ 应用程序",比如那些只使用 gtk+ 但不链接 libgnome 的,这就需要依赖 GTK_MODULES 环境变量的值,必须将之设为 "gail:atk-bridge" 以获取辅助技术的支持。</para>
<para>长久以来,大部分其他桌面平台所使用的辅助技术必须为桌面应用维护一个复杂的离屏模式,这种模式基于对操作系统事件的监听,使用不受支持的操作系统、应用程序特性和 API,还有一些其他高度不可移植的技术。这就使得辅助技术支持有点 "不健壮",需要特定的操作系统和指定的应用程序,甚至还要指定的应用程序版本。相反,在 GNOME 桌面,通过 GNOME 辅助功能框架,使用服务提供者接口(SPI)独立工具包,AT(辅助技术) 需要的所有信息均可由运行的应用程序提供。SPI 为基于 UNIX 的 AT 提供一些内置服务,比如屏幕阅读器和屏幕放大镜。通过一致而稳定的 API 从运行的程序中获取辅助信息,可以在大多数情况下避免使用离屏模式。对应用程序的辅助功能支持一般通过合适的 API (比如,ATK 多用于原生C程序而Java辅助 API 用于Java 应用)内置在应用程序工具包中,然后通过相应的 "bridge" 导出成通用 "AT-SPI" 接口(见下图)。</para>
<figure id="gad-architecture">
<title>GNOME 辅助功能架构</title>
<mediaobject><imageobject> <imagedata fileref="figures/GNOME_desktop_Accessibility.png" format="PNG"/> </imageobject> <textobject> <phrase> GNOME 辅助功能架构图解</phrase> </textobject></mediaobject>
</figure>
<para>GNOME 内置辅助功能支持意味着使用 GNOME 部件创建应用程序可以 "免费" 获得辅助技术的支持,而不用额外使用与内置支持相冲突的迂回方法。</para>
<para>如果一个 gtk+/GNOME 部件遵循本文档中的普遍辅助指南,实现了 ATK 接口并在用户界面上扮演合适的角色,则它是具有辅助性的。 ATK 的执行由 "stock" GNOME 部件工具集提供,而且大多数情况下,由现有 GTK+/GNOME 部件派生出来的新部件同时也会继承合适的辅助功能支持。</para>
<para>
Though GNOME's built-in accessibility support provides significant functionality without any accessibility-specific code changes on the part of the application, applications can often improve on the default descriptions provided for some of the widgets, and tailor them to that widget's specific purpose in your application, via straightforward calls to ATK methods in the application. For instance, in most cases applications should add or change the textual descriptions for these widgets with the appropriate ATK function call, so that an assisitive technology can describe their purpose or state to the user. See <link linkend="gad-coding-guidelines">Coding Guidelines for Supporting Accessibility</link> for more information.
</para>
<para>如果你的程序使用自定义部件,可能需要做些工作让它们得以使用辅助技术。参阅 <link linkend="gad-custom"> 让自定义组件获得辅助功能 </link> 和 <link linkend="gad-api-examples"> 使用辅助 API 的示例 </link> 获取更多信息。</para>
<para>此外,关于 GTK/GTK+ 更多深入内容,请参阅 <ulink url="http://library.gnome.org/devel/gtk"> GTK+ 参考手册 </ulink>, <ulink url="http://live.gnome.org/GAP/AtkGuide/Gtk">ATK 指南的 GTK 章节</ulink>, GNOME 网站托管的 <ulink url="http://library.gnome.org/devel/gtk-tutorial/stable/">GTK+ 2.0 教程</ulink> 和官方 <ulink url="http://library.gnome.org/devel/gtk-faq/stable/">GTK+ FAQ</ulink>。</para>
</section>
<section id="dev-start">
<title>开发者快速指南</title>
<para>这有一些常用出发点:</para>
<section id="dev-start-1">
<title>如何确定应用程序是否具有辅助功能?</title>
<para>
To start right in, see <link linkend="gad-overview">Making a GNOME Application Accessible - Overview</link>. For a pre-coding perspective, see <link linkend="gad-ui-guidelines">User Interface Guidelines for Supporting Accessibility</link> or <link linkend="gad-coding-guidelines">Coding Guidelines for Supporting Accessibility</link>. For a checklist of post-design test items, see <link linkend="gad-checklist">User Interface Checklist</link>.
</para>
</section>
<section id="dev-start-2">
<title>有哪些常见陷阱?</title>
<para><link linkend="gad-checklist">用户界面审查清单</link>涵盖了所有设计阶段容易被忽略的地方。</para>
</section>
<section id="dev-start-3">
<title>如何实现常见的 ATK 功能?</title>
<para>可以在<link linkend="gad-api">这里</link>找到一份常见 ATK 调用的简短列表。</para>
</section>
<section id="dev-start-4">
<title>如何实现更复杂的 ATK 功能?</title>
<para>参考 <link linkend="gad-custom"> 让自定义组件获得辅助功能 </link> 和 <link linkend="gad-api-examples"> 使用辅助功能 API 的示例 </link>来获取更多信息。</para>
</section>
<section id="dev-start-5">
<title>ATK,、AT-SPI、 GAIL 和 GTK+ 介绍</title>
<screenshot>
<mediaobject><imageobject> <imagedata fileref="figures/gaa.jpg"/> </imageobject> <textobject> <phrase> GNOME 辅助功能架构 </phrase> </textobject></mediaobject>
</screenshot>
<para>ATK 工具包可以提供额外辅助功能支持让 GNOME 使用者充分利用电脑。ATK 用于诸如屏幕阅读器、放大镜和输入设备等工具来允许通过其他方式与桌面进行富交互。详情可参阅 <ulink url="http://java-gnome.sourceforge.net/4.0/doc/api/org/gnome/atk/package-summary.html"> ATK SourceForge 的项目 </ulink> 和 <ulink url="http://library.gnome.org/devel/atk/stable/">ATK 库</ulink>。</para>
<para>AT-SPI 是基础服务接口,用于辅助技术查询和接收来自正在运行的程序的通知。全部 API 可以查阅 <ulink url="http://library.gnome.org/devel/at-spi-cspi/stable/">here</ulink>。额外材料可参阅 <ulink url="http://accessibility.kde.org/developer/atk.php#coreclasses"> KDE 辅助功能开发者社区 </ulink>。</para>
<para>GAIL (GNOME Accessibility Implementation Library) 是 ATK 辅助功能接口的默认实现。GTK 工具集早已通过 GAIL 模块与 ATK 进行了绑定。许可条款、下载中心和其他信息可参阅 <ulink url="http://www.t2-project.org/packages/gail.html"> 这里 </ulink>。<ulink url="ftp://ftp.gnome.org/pub/GNOME/sources/gail/"> GAIL 源码 </ulink> 也提供了一份出色的教程来说明 ATK 的高级用法。此外,你也可能对 <ulink url="http://library.gnome.org/devel/gail-libgail-util/stable/"> GAIL 参考手册 </ulink>感兴趣。</para>
<para>GTK+ 是个创建图形用户界面的 UI 库。可运行于多种类UNIX平台、Windows和基于帧缓存的设备。GTK+ 在 GNU Library General Public License (GNU LGPL)许可下发行。</para>
<para>此外,关于 GTK/GTK+ 更多深入内容,请参阅 <ulink url="http://library.gnome.org/devel/gtk">GTK+ 参考手册</ulink>,<ulink url="http://wiki.gnome.org/Accessibility/Documentation/GNOME2/AtkGuide/Gtk">ATK 指南的 GTK+ 章节</ulink>, GNOME 网站托管的<ulink url="http://library.gnome.org/devel/gtk-tutorial/stable/">GTK+ 2.0 教程</ulink> 和官方<ulink url="http://library.gnome.org/devel/gtk-faq/stable/">GTK+ FAQ</ulink>。</para>
</section>
</section>
<section id="gad-overview">
<title>让一个 GNOME 应用程序具有辅助功能 - 综述</title>
<para>如果你的应用程序只使用标准 GTK 部件,你可以做很少甚至不做任何事情就能让程序获得(适当的)辅助功能。但要注意那些没有文字说明的GUI对象,比如没有文本标签的图形按钮或者没有工具提示信息的状态指示器。</para>
<para>
You can probably also improve on the default descriptions provided for some of the widgets, and tailor them to that widget's specific purpose in your application. You should add or change the textual descriptions for these widgets with the appropriate ATK function call, so that an assisitive technology can describe their purpose or state to the user. See <link linkend="gad-coding-guidelines">Coding Guidelines for Supporting Accessibility</link> for more information.
</para>
<para>如果你的程序使用自定义部件,可能需要做些工作以使这些部件利用辅助技术。参阅 <link linkend="gad-custom"> 让自定义组件获得辅助功能 </link> 和 <link linkend="gad-api-examples"> 使用辅助功能 API 的示例</link> 获取更多信息。更多详细内容也可参见 Marc Mulcahy 的 2002 GUADEC 演示文档, <ulink url="https://projects.gnome.org/accessibility/talks/GUAD3C/making-apps-accessible/start.html">“制作具有辅助功能的 GNOME 应用程序”。</ulink></para>
</section>
<section id="gad-coding-guidelines">
<title>获取辅助功能的编程指南</title>
<para>这里列出了一些可以在代码里做的事情,让程序更好的利用辅助技术。(当你想设计GUI的时候,可以看看后文里提到的这份列表 <link linkend="gad-ui-guidelines"> 支持辅助功能的UI </link>):</para>
<itemizedlist>
<listitem>
<para>用于那些不显示短字符串的组件(比如图形按钮),使用 <function>atk_object_set_name()</function>为它指定一个名字。你可以用于纯图片按钮、具有逻辑分组的面板、文本区域等等。</para>
</listitem>
<listitem>
<para>如果你没有为组件提供提示信息,使用 <function>atk_object_set_description()</function> 函数为用户提供一个辅助说明。例如,为一个 <guibutton> 关闭 </guibutton>按钮提供辅助说明:</para>
<example>
<title>为 GtkButton 提供辅助性说明</title>
<programlisting>
{
AtkObject *obj;
obj = gtk_widget_get_accessible(button);
atk_object_set_description(obj,_("Closes the window"));
}
</programlisting>
</example>
</listitem>
<listitem>
<para>使用 <function>atk_image_set_description()</function> 可以为程序中所有图片图标提供一个文本说明。</para>
</listitem>
<listitem>
<para>如果多个组件逻辑上是一组的,建议将它们放在一个容器里。</para>
</listitem>
<listitem>
<para>
Whenever you have a label that describes another component, use <function>atk_relation_set_add_relation()</function> so that assistive technologies can find the component with which the label is associated. (If you associate the label with the component using <function>gtk_label_set_mnemonic_widget()</function>, the <constant>ATK_RELATION_LABEL_FOR</constant> relation is generated automatically, so the following code would not be necessary):
</para>
<example>
<title>为一个 GtkWidget 关联一个 GtkLabel</title>
<programlisting>
{
GtkWidget *widget;
GtkLabel *label;
AtkObject *atk_widget, *atk_label;
AtkRelationSet *relation_set;
AtkRelation *relation;
AtkObject *targets[1];
atk_widget = gtk_widget_get_accessible(widget);
atk_label = gtk_widget_get_accessible (GTK_WIDGET(label));
relation_set = atk_object_ref_relation_set (atk_label);
targets[0] = atk_widget;
relation = atk_relation_new(targets,1, ATK_RELATION_LABEL_FOR);
atk_relation_set_add(relation_set,relation);
g_object_unref(G_OBJECT(relation));
}
</programlisting>
</example>
</listitem>
<listitem>
<para>如果创建了一个自定义 widget,要确认是否支持辅助功能。自定义组件通常继承于其他 GTK 部件,所以必要时得重写辅助功能信息。更多信息请参考 <link linkend="gad-custom"> 让自定义组件获得辅助功能 </link>。</para>
</listitem>
<listitem>
<para>不要重复造轮子!如果你的 GUI 有一个非辅助性的容器,那么该容器内的任何组件都可能失去辅助性。</para>
</listitem>
</itemizedlist>
</section>
<section id="gad-api">
<title>辅助功能 API</title>
<para>这里是一部分基础 API 调用,你可以用来确认程序是否利用辅助技术并工作良好。全部的辅助功能 API 非常全面,比如可以让你写出自定义辅助部件。</para>
<table frame="all">
<title>常用 ATK API 调用</title>
<tgroup cols="2" align="left">
<thead>
<row>
<entry>API</entry>
<entry>描述</entry>
</row>
</thead>
<tbody>
<row>
<entry>
<para><function>AtkObject* gtk_widget_get_accessible (GtkWidget*)</function></para>
</entry>
<entry>
<para>
Returns the accessible object that describes the specified GTK widget to an assistive technology.
</para>
</entry>
</row>
<row>
<entry>
<para><function>void atk_object_set_name (AtkObject*, const gchar*)</function></para>
</entry>
<entry>
<para>为辅助对象命名。例如,如果对象是个图形按钮,按下会使得程序退出,那你可以为它命名为 "退出"。</para>
</entry>
</row>
<row>
<entry>
<para><function>void atk_object_set_description (AtkObject*, const gchar*)</function></para>
</entry>
<entry>
<para>为辅助对象设置文字说明。例如,如果对象是个图形化的"关闭"按钮,那文字说明可以写成"关闭窗口"。</para>
</entry>
</row>
<row>
<entry>
<para><function>AtkRelation* atk_relation_new (AtkObject**, gint, AtkRelationType)</function></para>
</entry>
<entry>
<para>在指定的键与指定的目标对象列表之间创建一个新的关系。这个关系通常指的是一个部件以某种方式关联到另一个之间的辅助技术。例如,同一个窗口下,有一个特定的 GtkLabel 才是 GtkTreeView 的标题。</para>
</entry>
</row>
<row>
<entry>
<para><function>void atk_image_set_description (AtkImage*, const gchar*)</function></para>
</entry>
<entry>
<para>为图片辅助对象设置文字说明。例如,如果对象是面板内的一个虚拟桌面的缩略图,这个文字说明可以写成 "桌面 1 内的窗口排列图"。</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section id="gad-api-examples">
<title>使用辅助功能 API 的示例</title>
<para>前文提过,如果使用标准 GTK 部件或者任何其他实现了 ATK 接口的部件库,你可以只做一点甚至不做任何事情就可以让你的应用程序获得辅助功能。这样的话,通常只需做两件事:</para>
<itemizedlist>
<listitem>
<para>使用 <function>atk_object_set_description()</function> 或者 <function>atk_image_set_description():</function> 为控件和图片提供文字说明</para>
<example>
<title>为按钮设置辅助功能说明</title>
<programlisting>
{
AtkObject *obj;
obj = gtk_widget_get_accessible(button);
atk_object_set_description(obj,_("Opens Preferences dialog"));
}
</programlisting>
</example>
<para>
</para>
</listitem>
<listitem>
<para>使用 <function>atk_relation_new()</function> and <function>atk_relation_set_add()</function> 在任意特殊组合中的部件之间指定关系</para>
<example>
<title>在两个控件之间指定辅助关系</title>
<programlisting>
{
GtkWidget *widget;
GtkLabel *label;
AtkObject *atk_widget, *atk_label;
AtkRelationSet *relation_set;
AtkRelation *relation;
AtkObject *targets[1];
atk_widget = gtk_widget_get_accessible (widget);
atk_label = gtk_widget_get_accessible (GTK_WIDGET(label));
relation_set = atk_object_ref_relation_set (atk_label);
targets[0] = atk_widget;
relation = atk_relation_new(targets,1, ATK_RELATION_LABEL_FOR);
atk_relation_set_add(relation_set,relation);
g_object_unref(G_OBJECT(relation));
}
</programlisting>
</example>
</listitem>
</itemizedlist>
<para>
The examples in the rest of this section are mostly to give you a flavor of the scope of the ATK. They cover techniques that you may never need to use as an application developer, although they may be of interest if you are writing your own custom widgets (see <link linkend="gad-custom">Making Custom Components Accessible</link>) or if you want to write an assistive technology application. Whatever the purpose, the <ulink url="ftp://ftp.gnome.org/pub/GNOME/sources/gail/">GAIL source code</ulink> serves as an excellent tutorial for advanced ATK usage. Please note that since GTK+ 3.1.10, Gail has been merged into GTK+ and is no longer a module on its own.
</para>
<section>
<title>Gtk 模块</title>
<para>程序使用 GAIL(GTK 部件的辅助功能实现库)时,它会被当作 GTK 模块引入程序。GTK 模块在 <varname>GTK_MODULES</varname> 环境变量指定了模块名称时,会被加载到程序空间。如果有多个模块库,以冒号间隔。例如:</para>
<para><userinput>setenv GTK_MODULES "libgail:libtestprops"</userinput></para>
<para>所有 GTK 模块都有一个<function>gtk_module_init()</function> 函数。</para>
</section>
<section>
<title>收集一个应用程序的辅助信息</title>
<para>程序若想利用 ATK 调用,需要做下列一件(或以上)的事情:</para>
<orderedlist>
<listitem>
<para>创建一个事件监视器,比如使用 <function>atk_add_focus_tracker()</function> 函数:</para>
<programlisting>atk_add_focus_tracker (_my_focus_tracker);</programlisting>
<para> <function>_my_focus_tracker()</function> 函数原型:</para>
<programlisting>void _my_focus_tracker (AtkObject *aobject);</programlisting>
</listitem>
<listitem>
<para>建立一个全局事件监听器,使用 atk_add_global_event_listener():</para>
<programlisting>
mouse_watcher_focus_id = atk_add_global_event_listener(_my_global_listener,"Gtk:GtkWidget:enter_notify_event");
</programlisting>
<para><function>_my_global_listener</function> 拥有一个 Glib <type>GSignalEmissionHook</type> 原型。这个例子说明,一个 <type>GtkWidget</type> 对象无论何时触发一个 enter_notify_even 信号,都会调用 <function>_my_global_listener()</function>。</para>
</listitem>
<listitem>
<para>下列函数调用可以访问 ATK 顶层对象。</para>
<programlisting>AtkObject *root_obj = atk_get_root();</programlisting>
<para>返回一个包含当前运行程序中所有顶层窗口的 <type>AtkObject</type>。通过根对象的子节点(相当于顶层窗口),用户可以层层浏览对象。</para>
</listitem>
</orderedlist>
</section>
<section>
<title>查询一个 <type>AtkObject</type> 的接口</title>
<para>在程序中定位到具有辅助性 <type>AtkObject</type> 的对象后 (比如使用 <function>gtk_widget_get_accessible()</function>),你可以用不同方式查到哪些接口已被实现:</para>
<orderedlist>
<listitem>
<para>可以使用提供的 <function>ATK_IS_...</function> 宏,例如:</para>
<itemizedlist>
<listitem>
<para><function>ATK_IS_ACTION(atkobj)</function></para>
</listitem>
<listitem>
<para><function>ATK_IS_COMPONENT(atkobj)</function></para>
</listitem>
<listitem>
<para>等等。(每个接口都有一个)</para>
</listitem>
</itemizedlist>
<para>如果宏返回 <function>TRUE</function>,则该接口可安全用于那个 ATK 对象上。</para>
</listitem>
<listitem>
<para>调用 <function>atk_object_get_role()</function> 来测试 <type>AtkObject</type> 的角色。任何已知角色均有一个指定数字对应 ATK API。</para>
</listitem>
</orderedlist>
</section>
<section>
<title>建立一个 ATK 信号处理函数</title>
<para>使用 <constant>column_inserted</constant> 信号来举例:</para>
<programlisting>
table_column_inserted_id = g_signal_connect_closure_by_id (my_atk_obj,
g_signal_lookup("column_inserted", G_OBJECT_TYPE(my_atk_obj)), 0,
g_cclosure_new(G_CALLBACK (_my_table_column_inserted_func), NULL, NULL), FALSE);
</programlisting>
<para>这会使无论何时 <type>AtkObject</type> <varname>my_atk_object</varname> 发出一个 column_inserted 信号,都会调用 <function>_my_table_column_inserted_func()</function>。</para>
<para>
Connecting to a signal is slightly different if the signal supports detail. The <constant>children_changed</constant> signal supports the <parameter>add</parameter> detail. To connect to a signal when the <parameter>add</parameter> detail is also specified, this technique is used:
</para>
<programlisting>
child_added_id = g_signal_connect_closure (my_atk_obj,"children_changed::add",
g_cclosure_new (G_CALLBACK(_my_children_changed_func), NULL, NULL), FALSE);
</programlisting>
<para>
This will cause <function>_my_children_changed_func()</function> to be called whenever a <constant>children_changed</constant> signal with the <parameter>add</parameter> detail is emitted on the <type>AtkObject</type> <varname>my_atk_obj</varname>.
</para>
</section>
<section>
<title>实现一个 ATK 对象</title>
<para>你可能需要为那些未在 GAIL(或者其他部件集中的同等库) 中实现辅助功能的部件亲自动手实现 ATK 对象。该实现应该作为一个 GTK 模块,而且要被包含在 <envar>GTK_MODULES</envar> 环境变量中,以使之在运行时被加载。</para>
<section>
<title>注册</title>
<para>这个例子中,我们假设一个对象叫 GTK_TYPE_MYTYPE,ATK 的实现叫 <type>MYATKIMP_TYPE_MYTYPE</type>,需要的工厂叫 <type>MYATKIMP_TYPE_MYTYPE_FACTORY</type>。</para>
<para>为 GTK 对象注册一个 ATK 实现,需要在模块的 <function>gtk_module_init()</function> 函数中做以下步骤:</para>
<orderedlist>
<listitem>
<para>访问默认注册表:</para>
<programlisting>
default_registry = atk_get_default_registry();
</programlisting>
</listitem>
<listitem><para>在该模块的 <function>gtk_module_init()</function>函数中注册 ATK 对象,函数调用如下:</para>
<programlisting>
atk_registry_set_factory_type (default_registry, GTK_TYPE_MYTYPE,
MYATKIMP_TYPE_MYTYPE_FACTORY);
</programlisting>
</listitem>
</orderedlist>
<para>这样将把 AtkObject 的实现 <type>GTK_TYPE_MYTYPE</type> 注册到 <type>MYATKIMP_TYPE_MYTYPE_FACTORY</type>中。工厂实现后就知道如何构建 <type>MYATKIMP_TYPE_MYTYPE</type>类型的对象了。</para>
</section>
<section>
<title>工厂</title>
<para>
The factory must be implemented as a child of class type <type>ATK_TYPE_OBJECT_FACTORY</type> and must implement the function <function>create_accessible()</function>. This function must create an appropriate <type>AtkObject</type>. A factory can be used to create more than one type of object, in which case its <function>create_accessible()</function> function will need to be smart enough to build and return the correct <type>AtkObject</type>.
</para>
</section>
<section>
<title>为指定对象实现 ATK</title>
<para>所有 <type>GObject</type> 均要实现一个 <function>get_type()</function> 函数。使用上面的命名惯例将函数命名为 <function>myatkimp_mytype_get_type()</function>。</para>
<para>
In this function, you specify which interfaces your object implements. If the following logic were included in this <function>get_type()</function> function, this object would implement the <type>ATK_TEXT</type> interface:
</para>
<example>
<title> <function>get_type()</function> 函数示例</title>
<programlisting>
static const GInterfaceInfo atk_text_info =
{
(GInterfaceInitFunc) atk_text_interface_init,
(GInterfaceFinalizeFunc) NULL,
NULL
};
g_type_add_interface_static (type, ATK_TYPE_TEXT,
&atk_text_info);
</programlisting>
</example>
<para>函数 <function>atk_text_interface_init()</function> 需要实现的函数原型如下:</para>
<programlisting>
void atk_text_interface_init (AtkTextIface *iface);
</programlisting>
<para>
This function would connect the interface function calls to the specific implementation as follows:
</para>
<example>
<title>连接自定义接口与一个 AtkObject 实现</title>
<programlisting>
void
atk_text_interface_init (AtkTextIface *iface)
{
g_return_if_fail (iface != NULL);
iface->get_text = myatkimp_mytype_get_text;
iface->get_character_at_offset = myatkimp_mytype_get_character_at_offset;
...
}
</programlisting>
</example>
<para>
Then the functions <function>myatkimp_mytype_get_text()</function>, <function>myatkimp_mytype_get_character_at_offset()</function>, and the rest of the <type>ATK_TEXT</type> interface functions would need to be implemented.
</para>
</section>
<section>
<title><type>AtkObject</type> 实现</title>
<para>
<type>AtkObject</type>s are <type>GObjects</type>, and all <type>GObject</type>s need to specify the <function>get_type()</function> function. Here is an example that sets up a class and instance initializer. This <function>get_type()</function> function also specifies that the object implements <type>ATK_TEXT</type> and specifies the parent object to be <type>MYATKIMP_MYPARENTTYPE</type>.
</para>
<example>
<title> <function>get_type()</function> 的实现示例</title>
<programlisting>
GType
myatkimp_mytype_get_type (void)
{
static GType type = 0;
if (!type)
{
static const GTypeInfo tinfo =
{
sizeof (GailLabelClass),
(GBaseInitFunc) NULL, /* base init */
(GBaseFinalizeFunc) NULL, /* base finalize */
(GClassInitFunc) myatkimp_mytype_class_init, /* class init */
(GClassFinalizeFunc) NULL, /* class finalize */
NULL, /* class data */
sizeof (GailLabel), /* instance size */
0, /* nb preallocs */
(GInstanceInitFunc) myatkimp_mytype_instance_init, /* instance init */
NULL /* value table */
};
/* Set up atk_text_info structure used below */
static const GInterfaceInfo atk_text_info =
{
(GInterfaceInitFunc) atk_text_interface_init,
(GInterfaceFinalizeFunc) NULL,
NULL
};
/* Set up typename and specify parent type */
type = g_type_register_static (MYATKIMP_MYPARENTTYPE,
"MyatkimpMytype", &tinfo, 0);
/* This class implements interface ATK_TYPE_TEXT */
g_type_add_interface_static (type, ATK_TYPE_TEXT,
&atk_text_info);
}
return type;
}
</programlisting>
</example>
</section>
<section>
<title>类/实例初始化</title>
<para>不管是 <type>GObject</type> 还是你自己的 <type>AtkObject</type> 实现,都得进行类初始化:</para>
<orderedlist>
<listitem>
<para>
Redefines any function calls defined by the object's parent. This is typically necessary when an object needs to implement a function like <function>atk_object_get_n_accessible_children()</function>. This is necessary if the object has children, but they are not represented with widgets.
</para>
<para>
For example, if your ATK implementation needs to over-ride the <type>AtkObject</type> function <function>get_name()</function>, then the class initializer would look like:
</para>
<example>
<title>类初始化将覆写父类的 <function>get_name()</function> 函数</title>
<programlisting>
myatkimp_mytype_class_init (GailLabelClass *klass)
{
AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
class->get_name = myatkimp_mytype_get_name;
}
</programlisting>
</example>
</listitem>
<listitem><para>Requires a <function>parent->init</function>, <function>parent->notify_gtk</function>, or <function>parent->finalize</function> function. This example defines all three:
</para>
<example>
<title>Class initializer that defines its own <function>init()</function>, <function>notify_gtk()</function> and <function>finalize()</function> functions</title>
<programlisting>
static ParentObjectType *parent_class = NULL;
myatkimp_mytype_class_init (GailLabelClass *klass)
{
ParentObjectType *parent_class = (ParentObjectType*)klass;
/*
* Caching the parent_class is necessary if the init,
* notify_gtk, or finalize functions are set up.
*/
parent_class = g_type_class_ref (MYATKIMP_TYPE_PARENT);
parent_class->init = myatkimp_mytype_widget_init;
parent_class->notify_gtk = myatkimp_mytype_real_notify_gtk;
parent_class->finalize = myatkimp_mytype_finalize;
}
</programlisting>
</example>
<orderedlist>
<listitem>
<para>parent->init</para>
<para>
A <function>parent->init()</function> function may be necessary if the ATK implementation needs to do either of the following:
</para>
<orderedlist>
<listitem>
<para>
Cache any data obtained from a backing GTK widget.
</para>
</listitem>
<listitem>
<para>
Listen to any signals from the backing GTK widget.
</para>
</listitem>
</orderedlist>
<para>
Here is an example of both:
</para>
<example>
<title>自定义 <function>init()</function> 函数</title>
<programlisting>
void
gail_tree_view_widget_init (MyatkimpMytype *mytype,
GtkWidget *gtk_widget)
{
/* Make sure to call the parent's init function */
parent_class->init (widget, gtk_widget);
/* Cache a value in the ATK implementation */
mytype->cached_value = gtk_widget_function_call();
/* Listen to a signal */
gtk_signal_connect (GTK_OBJECT (gtk_widget),
"signal-type",
GTK_SIGNAL_FUNC (_myatkimp_mytype_signal_type),
NULL);
}
</programlisting>
</example>
<para>
In this example, if the specified <type>signal-type</type> signal were generated on the backing <varname>gtk_widget</varname>, then the <function>_myatkimp_mytype_signal_type()</function> function would be called.
</para>
</listitem>
<listitem>
<para>parent->notify_gtk</para>
<para>
If the ATK implementation needs to listen to any property notifications on the backing GTK object, a <function>parent->notify_gtk()</function> function may be necessary. For example:
</para>
<example>
<title>自定义 <function>notify_gtk()</function> 函数</title>
<programlisting>
void
myatkimp_mytype_real_notify_gtk (GObject *obj,
GParamSpec *pspec)
{
GtkWidget *widget = GTK_WIDGET (obj);
AtkObject* atk_obj = gtk_widget_get_accessible (widget);
if (strcmp (pspec->name, "property-of-interest") == 0)
{
/* Handle the property change. */
}
else
{
parent_class->notify_gtk (obj, pspec);
}
}
</programlisting>
</example>
</listitem>
<listitem>
<para>parent->finalize</para>
<para>
If it is necessary to free any data when a <type>GObject</type> instance is destroyed, then a <function>finalize()</function> function is needed to free the memory. For example:
</para>
<example>
<title>自定义 <function>finalize()</function> 函数</title>
<programlisting>
void
myatkimp_mytype_finalize (GObject *object)
{
MyAtkimpMyType *my_type = MYATKIMP_MYTYPE (object);
g_object_unref (my_type->cached_value);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
</programlisting>
</example>
</listitem>
</orderedlist>
</listitem>
</orderedlist>
</section>
</section>
</section>
<section id="gad-custom">
<title>让自定义组件获得辅助功能</title>
<para>
Adding ATK support to your custom widget will assure its cooperation with the accessibility infrastructure. These are the general steps that are required:
</para>
<itemizedlist>
<listitem>
<para>
assess a custom widget according to the applicable <link linkend="gad-ui-guidelines">User Interface Guidelines</link>;
</para>
</listitem>
<listitem>
<para>
determine which <ulink url="http://library.gnome.org/devel/atk/stable/atk.html">ATK interfaces</ulink> a custom widget should implement, according to the widget's feature set and function;
</para>
</listitem>
<listitem>
<para>访问 <ulink url="http://library.gnome.org/devel/atk/stable/atk.html">ATK interfaces</ulink> 可以继承父部件类;</para>
</listitem>
<listitem>
<para>部件类的 ATK 接口可以两种方式实现:</para>
<itemizedlist>
<listitem>
<para>直接由自定义部件,或者</para>
</listitem>
<listitem>
<para>
in an <ulink url="http://library.gnome.org/devel/atk/stable/AtkObject.html"><type>AtkObject</type></ulink> subtype created by a new <ulink url="http://library.gnome.org/devel/atk/stable/AtkObjectFactory.html"><type>AtkObjectFactory</type></ulink> subclass
</para>
</listitem>
</itemizedlist>
<para>如果使用第二种方法,则在运行时必须使用 <type>AtkObjectFactoryRegistry</type> 来注册合适的 factory 类型。</para>
</listitem>
</itemizedlist>
<para><ulink url="ftp://ftp.gnome.org/pub/GNOME/sources/gail/">GAIL source code</ulink> 提供了一个优秀的教程讲解高级 ATK 用法。</para>
</section>
<section id="gad-ui-guidelines">
<title>获取辅助功能支持的用户界面指南</title>
<para>
When designing your application's GUI, there are a number of simple guidelines you should follow to ensure that it can be used by as wide an audience as possible, whether in conjunction with assistive technologies or not. Don't be fooled into thinking that this is just a case of "making your GUI usable by people with disabilities", though, and that you shouldn't bother if you know a disabled person is never going to use your application. Following these guidelines will improve the overall usability of your application for everyone who uses it - including you!
</para>
<section>
<title>综述</title>
<para>
We all get frustrated if we can't find a feature in an application, or make a mistake from which it takes a couple of minutes to recover, if it's possible to recover at all. If you have some sort of disability, the chances are the effort and time penalties involved will be several times worse. Following a few basic guidelines can help prevent these sorts of situations for all users.
</para>
<itemizedlist>
<listitem>
<para>
Provide Undo for every action that changes the user's data or the application's settings. If possible, provide more than one level of undo and redo, and a history list to allow preview of what actions will be undone.
</para>
</listitem>
<listitem>
<para>
Provide commands to restore default settings. If a particular setting could make the application completely unusable for an individual, e.g. by making the fonts very small, it would be useful to provide an option to restore the default settings outside the application itself. This could be done using a command line switch, for example.
</para>
</listitem>
<listitem>
<para>
Help prevent users from doing the wrong thing. This is particularly important for actions that could be done by accident (e.g. mouse actions) or that cannot easily be undone (e.g. overwriting a file). Consider using confirmation dialogs or forcing the user to go into a particular mode to perform potentially destructive actions.
</para>
</listitem>
<listitem>
<para>
Minimize users' memory load. For example, let the user view multiple documents at the same time, and ensure online help or other instructions can remain visible while they carry out the procedure being described. Allow them to copy any information that is displayed, and paste it anywhere that data can be entered.
</para>
</listitem>
<listitem>
<para>
Don't make users insert disks. Depending on a user's particular disability, they may find it difficult to physically insert or change a disk, or they may find it hard to identify the correct disk in the first place. If your application is installed from CD-ROM, provide an option to copy all the files that will be required onto the user's hard drive.
</para>
</listitem>
<listitem>
<para>
Don't place frequently used functions deep in a menu structure. Whether you're using a mouse, keyboard or some other input device, deeply-nested menu items are best avoided. As well as the burden of remembering where to find them, they are always more difficult and time-consuming to access.
</para>
</listitem>
<listitem>
<para>
Don't lead users through unnecessary steps. For example, wizards are useful for users who have trouble handling large numbers of options at one time, but other users may need to minimize the amount of time or keystrokes they use. Such users benefit from being able to skip unnecessary steps or go directly to the one they need. Consider providing a <guibutton>Finish</guibutton> button in wizards that skips right to the end and assumes default responses for the intermediate steps. If the process has many steps, consider asking the user at the start if they want to run through all the steps, or just the most commonly-used ones.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>键盘导航</title>
<para>
A well-designed keyboard user interface plays a key role when you are designing accessible software. Blind users can navigate software more effectively using the keyboard, because using the mouse depends on visual feedback of the mouse pointer location. Also, mobility impairments can prevent a user from successfully navigating using the mouse, because of the fine motor control skills required.
</para>
<para>
It is therefore important to make all mouse actions available from the keyboard, and include keyboard access to all toolbars, menus, links and buttons. Every function your application provides should be available using the keyboard alone. Hide your mouse while you're testing your application if you have to!
</para>
<para>
Most functionality should be easy to make accessible by using keyboard mnemonics and accelerators, and the toolkit's built-in navigation features. However, operations that rely on drag-and-drop, for example, may require more thought.
</para>
<itemizedlist>
<listitem>
<para>
Provide efficient keyboard access to all application features. Some users may be unable to use a mouse, and many "power-users" prefer to use the keyboard anyway. Also, some specialized assistive technology input devices may simulate keyboard events rather than mouse events. Since typing is difficult or even painful for some users, it is important to provide a keyboard interface that minimizes the number of keystrokes required for any given task.
</para>
</listitem>
<listitem>
<para>
Use a logical keyboard navigation order. When navigating around a window with the <keycap>Tab</keycap> key, keyboard focus should move between controls in a predictable order. In Western locales, this is normally left to right and top to bottom.
</para>
</listitem>
<listitem>
<para>
Ensure correct tab order for controls whose enabled state is dependent on checkbox, radio button or toggle button state. When such a button is selected, all its dependent controls should be enabled, and all the dependent controls of any other button in the group should be disabled. When the user selects a checkbox, radio button or toggle button that has dependent controls, do not automatically give focus to the first dependent control, but instead leave the focus on the button.
</para>
</listitem>
<listitem>
<para>
Don't override existing system-level accessibility features. For example, <ulink url="http://www.rehab.uiuc.edu/accessx/overview.html">AccessX</ulink> is an Xserver extension that has been supported since X11R6. The MouseKeys feature of this extension allows mouse movement and button clicks to be simulated using the keypad. Therefore you should not add features to your application that can only be accessed by pressing keys on the keypad, as users relying on the MouseKeys feature will not be able to use them.
</para>
</listitem>
<listitem>
<para>
Provide more than one method to perform keyboard tasks where possible. Some users may find some keys and key combinations easier to use than others.
</para>
</listitem>
<listitem>
<para>
Provide both keyboard and mouse access to functions where possible. Some users may only be able to use either the mouse or the keyboard, but not both.
</para>
</listitem>
<listitem>
<para>
Don't assign awkward reaches to frequently performed keyboard operations. Some people may only be able to use one hand on the keyboard, so shortcuts that can be easily used with one hand are preferable for common operations. In any case, having to frequently perform long or difficult reaches on the keyboard can increase muscle strain for all users, increasing the risk of pain or injury.
</para>
</listitem>
<listitem>
<para>
Don't require repetitive use of simultaneous keypresses. Some users are only able to press and hold one key at a time. Assistive technologies such as AccessX may allow users to press the keys sequentially rather than simultaneously, but this of course means the operation will take longer for them.
</para>
</listitem>
<listitem>
<para>
Ensure that any text that can be selected with the mouse can also be selected with the keyboard. This is a convenience for all users, but especially for those for whom fine control of the mouse is difficult.
</para>
</listitem>
<listitem>
<para>
Ensure that objects that can be resized or moved by drag and drop can also be resized or moved with the keyboard. For example, icons and windows on the desktop. Where precision sizing and placement is potentially important, e.g. shapes in a diagram, also consider providing a dialog into which you can type co-ordinates, or a means of snapping objects to a user-definable grid.
</para>
</listitem>
<listitem>
<para>
Don't use general navigation functions to trigger operations. For example, do not use basic <keycap>Tab</keycap> keyboard navigation in a dialog to activate any actions associated with a control.
</para>
</listitem>
<listitem>
<para>
Show keyboard-invoked menus, windows and tooltips near the object they relate to. In GNOME 2.0, users can call up popup menus with <keycombo><keycap>Shift</keycap><keycap>F10</keycap></keycombo>, and tooltips with <keycombo><keycap>Shift</keycap><keycap>F1</keycap></keycombo>. Do not completely hide or obscure the object to which the menu or tooltip refers, however.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>鼠标交互</title>
<para>记住,不是所有人都能灵巧使用鼠标,某些用户可能很难看见或跟随鼠标指针。</para>
<itemizedlist>
<listitem>
<para>
Don't depend on input from mouse button 2 or button 3. As well as being physically more difficult to click, some pointing devices and many assistive technology devices only support button 1. Some assistive technologies may not emulate the mouse at all, but generate keyboard events instead.
</para>
</listitem>
<listitem>
<para>
Allow all mouse operations to be cancelled. Pressing the <keycap>Esc</keycap> key should cancel any mouse operation in progress, such as dragging and dropping a file in a file manager, or drawing a shape in a drawing program.
</para>
</listitem>
<listitem>
<para>
Provide visual feedback throughout a drag and drop operation. As the mouse passes over valid targets, highlight them and change the mouse pointer. Use the "no drop" mouse pointer when passing over invalid drop targets. See <link linkend="gad-mouse-examples">Mouse Interaction Examples</link>.
</para>
</listitem>
<listitem>
<para>
Don't warp the mouse pointer, or restrict mouse movement to part of the screen. This can interfere with assistive technologies, and is usually confusing even for users who don't rely on ATs.
</para>
</listitem>
<listitem>
<para>
Don't make mouse targets too small. In general, mouse targets should be at least the size of the "hot area" around the resizable window border in the current window manager/theme - bearing in mind that a user with impaired dexterity or vision may be using a window manager with larger areas than the default.
</para>
</listitem>
</itemizedlist>
<section id="gad-mouse-examples">
<title>鼠标交互示例</title>
<figure>
<title>来自 CDE/Motif 的指针 "no-drop" 示例</title>
<mediaobject>
<imageobject>
<imagedata fileref="figures/nodrop.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Example of an "invalid drop target" pointer shape</phrase>
</textobject>
</mediaobject>
</figure>
</section>
</section>
<section>
<title>图形元素</title>
<para>
Provide options to customize the presentation of all the important graphical elements in your application. This will make it easier for people with visual or cognitive impairments to use.
</para>
<itemizedlist>
<listitem>
<para>
Don't hard-code graphic attributes such as line, border or shadow thickness. These elements should ideally be read from the GTK or window manager theme. If this is not possible, provide options within your application to change them.
</para>
</listitem>
<listitem>
<para>
Provide descriptive names for all interface components. The GAIL library provides default accessible descriptions for many GTK widgets, but you will still need to add your own in some cases, such as for widgets that use graphics instead of text (e.g. a well in a color palette, or an icon without a label). Consider overriding the defaults with more helpful or application-specific descriptions where possible.
</para>
</listitem>
<listitem>
<para>
Allow multi-color graphical elements (e.g. toolbar icons) to be shown in monochrome only, if possible. These monochrome images should be shown in the system foreground and background colors, which the user will have chosen for themselves (by their choice of GTK theme) for maximum legibility.
</para>
</listitem>
<listitem>
<para>
Make interactive GUI elements easily identifiable. For example, do not make the user hover the mouse over an object to determine whether it is clickable or not. Leave sufficient space between objects and clearly delineate object boundaries. Don't show GUI elements that look pretty but don't actually do anything, unless you also provide an option to switch them off.
</para>
</listitem>
<listitem>
<para>
Provide an option to hide graphics that don't convey essential information. Graphical images can be distracting to users with some cognitive disorders. The icons on the GNOME foot menu, for example, can be switched off whilst still leaving the menus fully functional.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>字体与文本</title>
<para>
Even to a user with normal vision, textual output provides the majority of the information and feedback in most applications. It is therefore critical to choose and position text carefully on the screen, and leave the choice of font and size to the user, to ensure that people with vision impaiments can also use your application effectively.
</para>
<itemizedlist>
<listitem>
<para>
Don't hard-code font styles and sizes. The user should be able to adjust all sizes and typefaces. If for some reason you cannot make this functionality available, never hardcode any font sizes smaller than 10 points.
</para>
</listitem>
<listitem>
<para>
Provide options to turn off any graphical backdrops or "watermarks" behind text. Such images interfere with the contrast between the text and its background, which can cause difficulty for users with visual impairments.
</para>
</listitem>
<listitem>
<para>
Label objects with names that make sense when taken out of context. Users relying on screen readers or similar assistive technologies will not necessarily be able to immediately understand the relationship between a control and those surrounding it.
</para>
</listitem>
<listitem>
<para>
Don't use the same label more than once in the same window. If you use the same label in different windows, it will help if it means the same thing in both windows. Also, don't use labels that are spelled differently but sound the same, e.g. "Read" and "Red", as this could be confusing for users relying on screen-readers.
</para>
</listitem>
<listitem>
<para>
Position labels consistently throughout your application. This normally means immediately below large icons, immediately to the right of small icons, and immediately above or to the left of other controls. See <link linkend="gad-font-examples">Fonts and Text Examples</link>.
</para>
</listitem>
<listitem>
<para>
When you use static text to label a control, end the label with a colon. For example, <guilabel>Username:</guilabel> to label a text field into which the user should type their username. This helps identify it as a control's label rather than an independent item of text.
</para>
</listitem>
<listitem>
<para>
When you use static text to label a control, ensure that the label immediately precedes that control in the Tab order. This will ensure that the mnemonic (underlined character) you assign to the label will move focus to or activate the correct control when pressed.
</para>
</listitem>
<listitem>
<para>
Provide alternatives to WYSIWYG. Some users may need to print text in a small font but edit in a larger screen font, for example. Possible alternatives include displaying all text in the same font and size (both of which are chosen by the user); a "wrap-to-window" option that allows you to read all the text in a window without scrolling horizontally; a single column view that shows the window's contents in a single column even if they will be printed in multiple columns; and a text-only view, where graphics are shown as placeholders or text descriptions. If the application has panels with child controls, consider allowing the panels to resize along with the parent window.
</para>
</listitem>
</itemizedlist>
<section id="gad-font-examples">
<title>字体与文本示例</title>
<figure id="label-placement-example">
<title>各种 GUI 元素的正确标签布局</title>
<informaltable frame="all">
<tgroup cols="3" align="center">
<tbody>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/label_above.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>List control with label above</phrase>
</textobject>
</mediaobject>
List control with label above
</entry>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/label_below.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Large file manager icon with label underneath</phrase>
</textobject>
</mediaobject>
Large file manager icon with label underneath
</entry>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/label_right.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Small toolbar icon with label to its right</phrase>
</textobject>
</mediaobject>
Small toolbar icon with label to its right
</entry>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/label_left.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Spinbox control with label to its left</phrase>
</textobject>
</mediaobject>
Spinbox control with label to its left
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</figure>
</section>
</section>
<section>
<title>颜色与对比度</title>
<para>
Poor choice of colors on the screen can cause problems for users with color blindness (for whom hue is important) or low-vision (for whom brightness/contrast is important). Generally, you should allow the user to customize the colors in any part of your application that conveys important information.
</para>
<para>
Users with visual impairments may require a high level of contrast between the background and text colors. Often a black background and white text is used to prevent the background from "bleeding" over. These settings are critical for users with visual impairments.
</para>
<itemizedlist>
<listitem>
<para>
Don't hard-code application colors. Some users need to use particular combinations of colors and levels of contrast to be able to read the screen comfortably. Therefore all the main colors you use in your GNOME application should be taken from the GTK theme, so the user can set the colors for all their applications to something legible just by changing the theme. If for some reason you do need to use colors that are not available in the theme, ensure they are customizable within the application itself.
</para>
</listitem>
<listitem>
<para>
Don't use color as the only means to distinguish items of information. All such information should be provided by at least one other method, such as shape, position or textual description. See <link linkend="gad-color-examples">Color and Contrast Examples</link>.
</para>
</listitem>
<listitem>
<para>
Support all the high contrast GNOME themes. Ensure that when one of these themes is selected, all the text in your application appears in the high contrast foreground and background colors specified by the theme.
</para>
</listitem>
<listitem>
<para>
Ensure your application is not dependent on a particular high-contrast theme. Test it with different high-contrast themes to ensure your application respects the settings.
</para>
</listitem>
</itemizedlist>
<section id="gad-color-examples">
<title>颜色与对比度示例</title>
<example>
<title>过度使用颜色的图例</title>
<informaltable frame="all">
<tgroup cols="2">
<tbody>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/color_only.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Example showing changes in stock price using color only</phrase>
</textobject>
</mediaobject>
</entry>
<entry>
This display could cause problems for a red-green color-blind user (color-blindness affects as many as 1 in 7 males in some parts of the world). The lack of contrast between the red text and black background would also make it hard to read for a user with low vision, even with a screen magnifier.
</entry>
</row>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/color_and_arrows.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Example showing changes in stock price using both color and arrows</phrase>
</textobject>
</mediaobject>
</entry>
<entry>
This display reinforces the color-coding with arrows to show the stock price movement, and uses darker shades of green and red on a lighter background to provide higher contrast. This needn't be the default color scheme if testing were to show it to be too distracting for the majority of users, but it should be possible to customize it in this way either by theming or via the application's <guilabel>Preferences</guilabel> dialog.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</example>
</section>
</section>
<section>
<title>放大镜</title>
<para>
Many users, even those not visually impaired, benefit from magnification of text and graphics. However, without magnification, a visually impaired user may not be able to access and use the program at all.
</para>
<itemizedlist>
<listitem>
<para>让用户能放大工作区。</para>
</listitem>
<listitem>
<para>
Provide options in the application to scale the work area. Users need to have an option to magnify the work area 150% to 400% or more. Test the application to confirm the object you are viewing is not affected by changing the magnification settings.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>音频</title>
<para>
People who have difficulty hearing, as well as those who work with the sound on their computers turned off, will be disadvantaged if your application relies on sound to convey information. In general, make sure that the user is able to have any audible information conveyed in other ways.
</para>
<itemizedlist>
<listitem>
<para>
Don't assume that a user will hear audio information. This applies as much to users with broken soundcards as it does to those with hearing impairments!
</para>
</listitem>
<listitem>
<para>
Don't use audio as the only means of conveying information. Give the user the option to have all audio information provided in a visual way as well. This includes providing closed captioning or transcripts for any important spoken sound clips.
</para>
</listitem>
<listitem>
<para>
Allow users to configure frequency and volume of all warning beeps and other sounds. This includes being able to turn off sound altogether.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>动画</title>
<para>
Used sparingly, animation can be useful for drawing attention to important information in your application - and it can look cool, too. However, it can be problematic for some users, so make sure they can turn it off.
</para>
<itemizedlist>
<listitem>
<para>
Don't use flashing or blinking elements having a frequency greater than 2 Hz and lower than 55 Hz. This includes text as well as any graphical objects. Anything in this frequency range may cause particular problems for users susceptible to visually-induced seizures. Note that there is no "safe" frequency, though. If flashing is essential, you should use the system's cursor blink frequency (which should itself be customizable), or allow users to configure the frequency themselves.
</para>
</listitem>
<listitem>
<para>
Don't flash or blink large areas of the screen. Small areas are less likely to trigger seizures in those susceptible to them.
</para>
</listitem>
<listitem>
<para>
Make all animations optional. The animated information should be available in at least one non-animated format, at the user's request.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>键盘焦点</title>
<para>
Showing the keyboard focus position clearly at all times is important, both for users with vision impairments as well as "power-users" who prefer to use the keyboard rather than the mouse. There should never be any confusion as to which control on the desktop has focus at any given time. You ought to be able to leave your computer with the focus on any widget in your application, then go off and phone your girlfriend or walk the dog until you've forgotten which widget you left it on. When you return, you should be able to tell straight away exactly which widget it was.
</para>
<para>
A visual focus indicator is an audio representation of the cursor position relative to the other objects on the desktop. This allows the user to move among objects interactively as the focus changes. The visual focus must be programatically exposed to assistive technologies. Note that in most cases, this is handled automatically by the ATK, without requiring you to do any additional work. However, you will need to be aware of this requirement when writing your own custom widgets, for example.
</para>
<itemizedlist>
<listitem>
<para>
Start focus at the most commonly used control. If no control in a window is deemed to be the "most" useful, start the focus at the first control in the window when that window is opened. Focus should not be started on the <guilabel>OK</guilabel> or <guilabel>Cancel</guilabel> buttons of a dialog even if they are the most commonly used controls, as they can always be activated immediately by pressing <keycap>Enter</keycap> or <keycap>Escape</keycap>.
</para>
</listitem>
<listitem>
<para>
Show current input focus clearly at all times. Remember that in controls that include a scrolling element, it is not always sufficient to highlight just the selected element inside that scrolling area, as it may not be visible. See <link linkend="gad-focus-examples">Keyboard Focus Examples</link>.
</para>
</listitem>
<listitem>
<para>
Show input focus only in the active window. Hide all primary visual focus indicators in all windows that do not have the focus and activation. If a single window has separate panes, only one pane should have the focus indicator, and focus indicators should be hidden in all other panes. If it's important to continue showing which item in an unfocused list is selected, for example, use a secondary focus indicator. See <link linkend="gad-focus-examples">Keyboard Focus Examples</link>.
</para>
</listitem>
<listitem>
<para>
Provide appropriate feedback when the user attempts to navigate past the end of a group of related objects. When navigating a list, for example, stopping with audio feedback is usually preferable to moving the focus back to the first object in the list. Otherwise, users who are blind or have low vision may not realize they have returned to the beginning. In the case of a text search in a document, a dialog may pop up to indicate that the end of the document has been reached, and ask if you want to resume the search at the start of the document.
</para>
</listitem>
<listitem>
<para>
Play the system default audio or visual warning signal when the user presses an inappropriate key, or when a navigation key fails to move the focus. For example, when the focus is on the first character in a text field and the user presses left arrow key, or the user tries to perform multiple selection in a single selection dialog. (Note that users with hearing difficulties should be able to configure a system-wide visual equivalent to the default warning sound.)
</para>
</listitem>
</itemizedlist>
<section id="gad-focus-examples">
<title>键盘焦点示例</title>
<example><title>Example illustrating need to show focus clearly</title>
<informaltable frame="all">
<tgroup cols="2">
<tbody>
<row>
<entry valign="middle">
<mediaobject><imageobject> <imagedata fileref="figures/badfocus1.png" format="PNG"/> </imageobject> <textobject> <phrase> 无法看见该窗口的焦点项,因为它已被滚动离屏 </phrase> </textobject></mediaobject>
</entry>
<entry>该窗口某个控件获得焦点,但不知道是谁...</entry>
</row>
<row>
<entry valign="middle">
<mediaobject><imageobject> <imagedata fileref="figures/badfocus2.png" format="PNG"/> </imageobject> <textobject> <phrase> 滚动列表让焦点项出现在视野中 </phrase> </textobject></mediaobject>
</entry>
<entry>...直到滚动列表,让当前被选的焦点项露出来。</entry>
</row>
<row>
<entry valign="middle">
<mediaobject><imageobject> <imagedata fileref="figures/goodfocus.png" format="PNG"/> </imageobject> <textobject> <phrase> 无论当前被选项是否可见,该 list 控件始终拥有一个实边框指示焦点 </phrase> </textobject></mediaobject>
</entry>
<entry>
If the list control itself is given a "focused" border, it's easy to tell it has focus even when the currently-selected item isn't visible.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</example>
<example>
<title>Example illustrating use of secondary focus</title>
<informaltable frame="all">
<tgroup cols="2">
<tbody>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/badfocus3.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Split-paned window in which both panes seem to have focus</phrase>
</textobject>
</mediaobject>
</entry>
<entry>
In this example, it's impossible to tell just by looking which of the two panes actually has keyboard focus.
</entry>
</row>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/goodfocus3.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Split-pane window in which secondary highlighting is used to show which pane has focus</phrase>
</textobject>
</mediaobject>
</entry>
<entry>
By using a secondary selection highlight color in the inactive pane, it's immediately obvious that the tree control has focus here...
</entry>
</row>
<row>
<entry valign="middle">
<mediaobject>
<imageobject>
<imagedata fileref="figures/goodfocus2.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Split-pane window in which secondary highlighting is used to show which pane has focus</phrase>
</textobject>
</mediaobject>
</entry>
<entry>
...and that the list control has focus here.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</example>
</section>
</section>
<section>
<title>计时器</title>
<para>
Interfaces in which things appear, disappear or happen according to some hard-coded time limit are often a hindrance to accessibility. Some users may read, type or react very slowly in comparison to others. If information they require is hidden before they are finished with it, or obscured by other information popping up which they didn't explicitly request, then your application will become very frustrating or even impossible to use.
</para>
<itemizedlist>
<listitem>
<para>
Don't hard-code timeouts or other time-based features. Examples include automatic scrolling when dragging an object towards the edge of a window, holding down a scrollbar button, or automatically expanding a tree node when an object is dragged over it and held for a short time. These should either be customizable in the application, the GNOME control center, or at worst, manually editable from the command line via a configuration file or GConf entry.
</para>
</listitem>
<listitem>
<para>
Don't briefly show or hide information based on the movement of the mouse pointer. (Exception: system-provided features such as tooltips, which the user can configure on a system-wide level). If you must provide such features, make them optional so users can turn them off when a screen-review utility is installed.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>文档</title>
<para>
People with disabilities cannot use the application effectively if they do not have access to the required manuals and help files. Of particular importance is keyboard navigation, since this is the only way many users can navigate the application.
</para>
<itemizedlist>
<listitem>
<para>
Provide all documentation in an accessible format. ASCII text and HTML are both excellent formats for assistive technologies.
</para>
</listitem>
<listitem>
<para>
Provide alternative text descriptions for all graphics in the documentation.
</para>
</listitem>
<listitem>
<para>
Document all your application's accessibility features. Keyboard navigation and shortcuts are particularly important to document. Include an accessibility section in your documentation, where information on all the accessibility features can be found.
</para>
</listitem>
</itemizedlist>
</section>
</section>
</chapter>
<chapter id="gtest" status="draft">
<title>测试</title>
<para>
There are several points of review to conduct before declaring an application accessible. Over the course of development you may want to consider automated testing techniques. <ulink url="http://ldtp.freedesktop.org/">LDTP</ulink>, for example, may complement your automated testing plan.
</para>
<para>
This section describes a number of tests you can perform manually on an application to test its accessibility. Passing all the tests does not necessarily imply that the application is fully accessible, but if the application fails any of these tests, then further work may need to be done to improve that aspect of its accessibility.
</para>
<section>
<title>键盘导航</title>
<para>
The following keyboard operations should be tested. Do not use the mouse in any part of this test.
</para>
<itemizedlist>
<listitem>
<para>
Using only keyboard commands, move the focus through all menu bars in the application.
</para>
</listitem>
<listitem>
<para>确认:</para>
<itemizedlist>
<listitem>
<para>上下文敏感的菜单显示正确。</para>
</listitem>
<listitem>
<para>工具栏上列出的任何功能均能使用键盘执行。</para>
</listitem>
<listitem>
<para>你可以在应用程序和对话框中的客户区操作每一个控件。</para>
</listitem>
<listitem>
<para>文本和客户区内的对象可被选取。</para>
</listitem>
<listitem>
<para>
Any keyboard enhancements or shortcuts are working as designed.
</para>
</listitem>
</itemizedlist>
</listitem>
</itemizedlist>
</section>
<section>
<title>图形元素</title>
<para>测试并验证使用屏幕阅读器的应用程序:</para>
<itemizedlist>
<listitem>
<para>标签与文本被正确读入,包括菜单与工具栏。</para>
</listitem>
<listitem>
<para>对象信息可正确读取。</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>视觉焦点指示器</title>
<itemizedlist>
<listitem>
<para>
Verify that when moving among objects that the visual focus indicator is easy to identify.
</para>
</listitem>
<listitem>
<para>
Keyboard navigation through the software and menus should be clearly visible when the focus moves.
</para>
</listitem>
<listitem>
<para>
Confirm that the screen reader is tracking the visual focus indicator as you navigate using a keyboard.
</para>
</listitem>
<listitem>
<para>
Run a screen magnification program (if available) and verify that the magnifier can track the visual focus indicator as you navigate using the keyboard and mouse.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>字体与文本</title>
<itemizedlist>
<listitem>
<para>
Change the font in the application and confirm that the settings are maintained.
</para>
</listitem>
<listitem>
<para>
Test the application by changing colors and confirm that all settings are maintained.
</para>
</listitem>
<listitem>
<para>
If magnification is available, test the font, color, and size using the magnification option.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>颜色与对比度</title>
<itemizedlist>
<listitem>
<para>
Print screenshots to a black and white printer and confirm that all information is visible.
</para>
</listitem>
<listitem>
<para>
Test applications using only black and white, high-contrast settings and confirm that all information is conveyed correctly.
</para>
</listitem>
<listitem>
<para>
Test that the application provides at least three combinations of color schemes and that high-contrast schemes are available (e.g. white on black or yellow on blue).
</para>
</listitem>
<listitem>
<para>
Turn on high-contrast settings in the GNOME Control Center and confirm that the application respects these settings.
</para>
</listitem>
<listitem>
<para>
Test various themes to ensure that the software is working for all the available settings.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>音频</title>
<para>
There should be an option in the application to show audio alerts visually.
</para>
<para>
Test that the audio is working correctly by enabling sound in the GNOME Control Center and then perform the following actions:
</para>
<itemizedlist>
<listitem>
<para>
Perform an action that should generate an audio alert and confirm that the application is working as designed.
</para>
</listitem>
<listitem>
<para>
Verify that the application works correctly when increasing or decreasing the volume.
</para>
</listitem>
<listitem>
<para>
Confirm that warning messages and alerts can be heard correctly in a noisy work environment.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>动画</title>
<para>
Verify that an option is available to stop animation and that it is working as designed.
</para>
<para>
Turn the animation off. Confirm that all information is still conveyed correctly.
</para>
</section>
<section>
<title>键盘焦点</title>
<itemizedlist>
<listitem>
<para>
Test all messages to confirm that the user is notified before a message times out and is given the option to indicate that more time is needed.
</para>
</listitem>
<listitem>
<para>
Make sure an option has been included to adjust the response time and confirm that it is working as designed.
</para>
</listitem>
</itemizedlist>
</section>
<section>
<title>文档</title>
<para>
Test ASCII text documentation with a screen reader to confirm that it is clear and precise and can be read by assistive technologies.
</para>
<para>
Test HTML applications using a web browser and screen reader to confirm that the documentation is accessible to assistive technologies.
</para>
<para>
Note: There are web accessibility guidelines available at <ulink url="http://www.w3.org/TR/WAI-WEBCONTENT/">http://www.w3.org/TR/WAI-WEBCONTENT/</ulink>.
</para>
<para>
Confirm the following information is included in the documentation:
</para>
<itemizedlist>
<listitem>
<para>
State if the application does not support the standard keyboard access used by the OS.
</para>
</listitem>
<listitem>
<para>
Identify if there are unique keyboard commands.
</para>
</listitem>
<listitem>
<para>
Identify any unique accessibility features.
</para>
</listitem>
<listitem>
<para>
If an action is documented for the mouse, make sure there is an alternative for using the keyboard.
</para>
</listitem>
</itemizedlist>
</section>
<section id="gad-checklist">
<title>用户界面检查清单</title>
<para>
This section summarizes the guidelines given in <link linkend="gad-ui-guidelines">User Interface Guidelines for Supporting Accessibility</link>. You should refer to that section of the guide for more detailed information on any of the checklist items given here.
</para>
<para>
When testing an application for accessibility, you should go through each of the items in the list. Note whether the application passes or fails each test, or does not apply to that application.
</para>
<table frame="all" pgwide="1">
<title>通用原则列表</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>GP</entry>
<entry>通用原则</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row>
<entry>GP.1</entry>
<entry>每一个改变用户数据或程序设置的操作均可被撤消。</entry>
</row>
<row>
<entry>GP.2</entry>
<entry>所有应用程序设置均可被恢复默认值,而不需要用户记住默认值是什么。</entry>
</row>
<row>
<entry>GP.3</entry>
<entry>安装完成后,应用程序随时都可运行而不需用户插入磁盘/CD。</entry>
</row>
<row><entry>GP.4</entry>
<entry>最频繁的操作要放在菜单结构的最顶层。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>键盘导航检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>KN</entry>
<entry>键盘导航</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row>
<entry>KN.1</entry>
<entry>为所有应用程序特性提供高效地键盘访问。</entry>
</row>
<row>
<entry>KN.2</entry>
<entry>所有窗口拥有一个逻辑键盘导航顺序。</entry>
</row>
<row><entry>KN.3</entry>
<entry>
The correct tab order is used for controls whose enabled state is dependent on checkboxes, radio buttons or toggle buttons.
</entry>
</row>
<row><entry>KN.4</entry>
<entry>键盘访问的应用程序指定函数不能覆盖已存在的系统辅助功能特性。</entry>
</row>
<row><entry>KN.5</entry>
<entry>应用程序应尽可能提供一种以上的方法来执行键盘执行的任务。</entry>
</row>
<row><entry>KN.6</entry>
<entry>尽可能拥有可选组合键。</entry>
</row>
<row><entry>KN.7</entry>
<entry>频繁执行的键盘操作用起来应该顺手(译注:考虑键位)。</entry>
</row>
<row><entry>KN.8</entry>
<entry>应用程序不应使用重复、同时的按键。</entry>
</row>
<row><entry>KN.9</entry>
<entry>应用程序应赋予键盘所有的鼠标功能。</entry>
</row>
<row><entry>KN.10</entry>
<entry>任何文本或对象,可分别用鼠标或键盘选中。</entry>
</row>
<row><entry>KN.11</entry>
<entry>任何可调整大小或移动的对象可分别用鼠标或键盘单独控制。</entry>
</row>
<row><entry>KN.12</entry>
<entry>应用程序不应使用任何通用导航功能来触发操作。</entry>
</row>
<row><entry>KN.13</entry>
<entry>所有键盘绑定的菜单、窗口和提示信息均要出现在与之相关联的对象旁边。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>鼠标交互检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>MI</entry>
<entry>鼠标交互</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>MI.1</entry>
<entry>避免依靠来自鼠标 <mousebutton>右键</mousebutton> 或 <mousebutton>中键</mousebutton> 输入的操作。</entry>
</row>
<row><entry>MI.2</entry>
<entry>所有的鼠标操作在确定之前均可被取消。</entry>
</row>
<row><entry>MI.3</entry>
<entry>为拖放操作提供视觉反馈</entry>
</row>
<row><entry>MI.4</entry>
<entry>鼠标指针不能在程序控制下反常,或者它的移动不因程序而受限于屏幕某个区域。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>图形元素检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>GE</entry>
<entry>图形元素</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>GE.1</entry>
<entry>避免对图形属性,比如线、边框或阴影度进行硬编码。</entry>
</row>
<row><entry>GE.2</entry>
<entry>尽可能让多色图形元素也能显示在单色环境下。</entry>
</row>
<row><entry>GE.3</entry>
<entry>能非常容易区分可交互 GUI 元素与静态 GUI 元素。</entry>
</row>
<row><entry>GE.4</entry>
<entry>提供一个隐藏非必需图形的选项。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>字体与文本检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>FT</entry>
<entry>字体与文本</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>FT.1</entry>
<entry>避免字体风格或大小是硬编码的。</entry>
</row>
<row><entry>FT.2</entry>
<entry>提供一个关闭文本图形背景的选项。</entry>
</row>
<row><entry>FT.3</entry>
<entry>所有标签的名字在失去上下文后仍有意义。</entry>
</row>
<row><entry>FT.4</entry>
<entry>同一个窗口不应重复使用同一个标签名。</entry>
</row>
<row><entry>FT.5</entry>
<entry>标签的位置在整个程序中应始终如一。</entry>
</row>
<row><entry>FT.6</entry>
<entry>
All static text labels that identify other controls end in a colon (:).
</entry>
</row>
<row><entry>FT.7</entry>
<entry>
Static text labels that identify other controls immediately precede those controls in the tab order.
</entry>
</row>
<row><entry>FT.8</entry>
<entry>
An alternative to WYSIWYG is provided. For example, the ability to specify different screen and printer fonts in a text editor.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>颜色与对比度检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>CC</entry>
<entry>颜色与对比度</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>CC.1</entry>
<entry>应用程序的颜色避免硬编码,而应根据当前桌面主题或程序设置来确定并绘制。</entry>
</row>
<row><entry>CC.2</entry>
<entry>颜色仅用于增强说明,而不能用于传达信息或活动。</entry>
</row>
<row>
<entry>CC.3</entry>
<entry>应用程序应支持所有可用的高对比度主题和设置。</entry>
</row>
<row><entry>CC.4</entry>
<entry>软件不应依赖任何特殊的高对比度主题或设置。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>放大功能检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>MG</entry>
<entry>放大镜</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>MG.1</entry>
<entry>应用程序应提供放大工作区域的能力。</entry>
</row>
<row><entry>MG.2</entry>
<entry>应用程序应提供缩放工作区域的选项。</entry>
</row>
<row><entry>MG.3</entry>
<entry>应用程序的功能不受放大或缩小改变的影响。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>音频检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>AU</entry>
<entry>音频</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>AU.1</entry>
<entry>声音不能是传达任何物体信息的唯一方法。</entry>
</row>
<row><entry>AU.2</entry>
<entry>用户可以配置所有声音和警告音的频率与音量。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>动画检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>AN</entry>
<entry>动画</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>AN.1</entry>
<entry>避免使用频率范围在 2Hz—55Hz 间的闪烁元素。</entry>
</row>
<row><entry>AN.2</entry>
<entry>任何闪烁应限制在屏幕的某个小区域里。</entry>
</row>
<row><entry>AN.3</entry>
<entry>如果动画已被启用,至少应提供一个可以在它第一次展示前关闭的选项。</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>键盘焦点检查清单</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>KF</entry>
<entry>键盘焦点</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>KF.1</entry>
<entry>当窗口打开后,焦点应位于最常用的控件上。</entry>
</row>
<row><entry>KF.2</entry>
<entry>当前输入焦点位置总是清晰可见的。</entry>
</row>
<row><entry>KF.3</entry>
<entry>输入焦点总是明确显示在某个窗口上。</entry>
</row>
<row><entry>KF.4</entry>
<entry>
Appropriate audio or visual feedback is provided when the user attempts to navigate past either end of a group of related objects.
</entry>
</row>
<row><entry>KF.5</entry>
<entry>
The default audio or visual warning signal is played when the user presses an inappropriate key.
</entry>
</row>
<row><entry>KF.6</entry>
<entry>
There is sufficient audio information for the visual focus that the user can figure out what to do next.
</entry>
</row>
<row><entry>KF.7</entry>
<entry>
When using assistive technologies, such as a screen reader or braille device, the current program indicates the position and content of the visual focus indicator.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>Timing checklist</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>TM</entry>
<entry>计时器</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>TM.1</entry>
<entry>
There are no hard-coded time-outs or time-based features in the application.
</entry>
</row>
<row><entry>TM.2</entry>
<entry>
The display or hiding of important information is not triggered solely by movement of the mouse pointer.
</entry>
</row>
</tbody>
</tgroup>
</table>
<table frame="all" pgwide="1">
<title>Documentation checklist</title>
<tgroup cols="3" align="left">
<thead>
<row>
<entry>DC</entry>
<entry>文档</entry>
<entry>通过/失败/NA</entry>
</row>
</thead>
<tbody>
<row><entry>DC.1</entry>
<entry>
All documentation is in an accessible format, with textual alternate descriptions provided for all figures and diagrams.
</entry>
</row>
<row><entry>DC.2</entry>
<entry>
The documentation includes a section that covers all the application's accessibility features.
</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section>
<title>GOK (GNOME Onscreen Keyboard)</title>
<note>
<para>
The information on this page is partially outdated: GNOME 3's <application><ulink url="http://wiki.gnome.org/Caribou">Caribou</ulink></application> has effectively replaced GNOME 2's <application>gok</application>.
</para>
</note>
<para>
Your application should be usable via <application>gok</application>; key input should be generated entirely by <application>gok</application>, not the keyboard. The aim here would be to work with your application and the desktop in general, ensuring any type of character input can be performed with the on-screen keyboard.
</para>
<para>
The <application>gok</application> application ships with the GNOME Desktop so should already be present. For full documentation, refer to <ulink url="http://www.gok.ca">the official gok site</ulink>.
</para>
<para>
Follow these steps to verify the correct operation of <application>gok</application> with your application:
</para>
<procedure>
<step>
<para>
Login into the GNOME desktop
</para>
</step>
<step>
<para>
Run <application>gok</application>
</para>
</step>
<step>
<para>启动你的应用程序</para>
</step>
<step>
<para>
Provide input to your application with a pointing device (e.g., mouse or head-tracker) and <application>gok</application>.
</para>
</step>
<step>
<para>
Work using the auto-completion and word prediction features of <application>gok</application>.
</para>
</step>
<step>
<para>
Verify that <application>gok</application> enables and disables the <guibutton>Menus</guibutton> and <guibutton>Toolbars</guibutton> buttons based on the kind of application invoked; for example, the <guibutton>Menus</guibutton> and <guibutton>Toolbars</guibutton> buttons are disabled for the 'Font properties' capplet, but the same buttons are enabled for the <application>Gedit</application> application.
</para>
</step>
<step>
<para>
Verify that the <application>gok</application> on-screen keyboard provided by the <guibutton>Compose</guibutton> button can be used to type in any text for the selected application; run <application>Gedit</application>, click on the text area, and then click on the <guibutton>Compose</guibutton> button in <application>gok</application>. Select the required keys from the on-screen keyboard. The characters should appear in the <application>Gedit</application> text area.
</para>
</step>
<step>
<para>
Verify that the <guibutton>Launcher</guibutton> button allows the user to launch any of the <application>Terminal</application>, <application>Web Browser</application> or <application>Text Editor</application> applications.
</para>
</step>
<step>
<para>
Verify that the <guibutton>Activate</guibutton> button allows the user to activate any of the currently running application windows on the user's desktop, including GNOME panels and the GNOME desktop.
</para>
</step>
<step>
<para>
Verify that the <guibutton>Menus</guibutton> button lists all the available menus in the current application. Verify that clicking on a menu button displays the sub-menu and menu items contained within the sub-menu. Finally, verify that clicking on a menu item activates the menu item. For example, click on the <application>Help Browser</application> application and click on the <guibutton>Menus</guibutton> button. The <application>GOK</application> window now displays the <guibutton>File</guibutton>, <guibutton>Go</guibutton> and <guibutton>Help</guibutton> buttons (the <application>Help Browser</application> menus). Click on the <guibutton>File</guibutton> button and it displays the <guibutton>New Window</guibutton> and <guibutton>Close Window</guibutton> buttons (menu items).
</para>
</step>
<step>
<para>
Verify that the <guibutton>Toolbars</guibutton> button lists all the available buttons in the application toolbar. For example, click on the <application>Help Browser</application> application and then click on the <guibutton>Toolbars</guibutton> button. The <application>GOK</application> window now displays the <guibutton>Back</guibutton>, <guibutton>Forward</guibutton> and <guibutton>Home</guibutton> buttons.
</para>
</step>
<step>
<para>
Verify that the <guibutton>UI Grab</guibutton> button displays all the button objects for the selected application window. For example, open the 'Font Properties' capplet and click on the <guibutton>UI Grab</guibutton> button in the <application>GOK</application> window. The <application>GOK</application> window should now display the names of the buttons in the capplet - <guibutton>Sans</guibutton>, <guibutton>Sans-serif</guibutton>, <guibutton>Close</guibutton> and <guibutton>Help</guibutton>.
</para>
</step>
</procedure>
</section>
<section>
<title>Accerciser</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="figures/at-arch.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>
Accerciser and the GNOME Accessibility Architecture
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
<application>Accerciser</application> is an interactive Python accessibility explorer for the GNOME Desktop. It uses AT-SPI to inspect and control widgets, allowing you to check if an application is providing correct information to assistive technologies and automated test frameworks. <application>Accerciser</application> has a simple plugin framework which you can use to create custom views of accessibility information. Full documentation can be found <ulink url="http://library.gnome.org/devel/accerciser/stable">in the Official Accerciser Manual</ulink>. For a demonstration of <application>Accerciser</application> and <application>PyATSPI</application> (Python-wrappered access and usage of AT-SPI), see <ulink url="http://live.gnome.org/Accessibility/PythonPoweredAccessibility">this article</ulink>. For an excellent walkthrough from the author, see the article titled <ulink url="http://www.linuxjournal.com/article/9991">Make Your Application Accessible with Accerciser</ulink>.
</para>
<note>
<para><application>Accerciser</application> 事实上已经取代了 <application>at-poke</application> 工具。</para>
</note>
</section>
</chapter>
</book>
|