summaryrefslogtreecommitdiffstats
path: root/gnome2-accessibility-guide/C/low-vision.xml
blob: 858d2128980d3308d7ab432799353f5f163d03bc (plain)
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
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
<chapter id="low-vision">
<title>Low Vision or Blindness</title>
<para>
From low vision to blindness, the range of visual limitations is broad. Symptoms of low vision include dimness, haziness, extreme far-/near-sightedness, color blindness, and tunnel vision, among others. People with these disabilities are concerned with being able to see text or images on a computer screen and being able to perform tasks that 
require eye-hand coordination, such as moving a computer mouse. Text size and color can make a big difference in legibility for people with low vision.
</para>
<para>
The technologies that can assist those with low vision or blindness are:
</para>
<itemizedlist>
<listitem>
<para>
<emphasis>Desktop Appearance Enhancement</emphasis> - users can configure the desktop to be easy to read; for example, by increasing text size and using high-contrast themes.
</para>
</listitem>
<listitem>
<para>
<emphasis>Screen Magnifier</emphasis> - this is like a magnifying glass. People using them 
are able to control what area of the computer screen they want enlarged, and can move the magnifier to view different areas of the screen. They are also known as screen enlargers or large print programs.
</para>
</listitem>
<listitem>
<para>
<emphasis>Screen Reader</emphasis> - this makes on-screen information available as 
synthesized speech and/or a refreshable braille display. They generally only translate text-based information. Graphics and other non-textual objects can be 
translated if there is alternative text 
describing the item. They are also known as 
blind access utilities or screen reviewers.
</para>
</listitem>
</itemizedlist>


<section id="themes-0">
<title>Desktop Appearance Enhancement</title>
<para>
This chapter describes the methods you can use to change the appearance of the GNOME Desktop in order to enhance the accessibility of the desktop for users with visual 
impairments.
</para>

<section id="themes-1">
<title>Customization Options</title>
<indexterm>
<primary>customizing the desktop appearance</primary>
</indexterm>
<para>
There are several ways to customize the appearance of the GNOME Desktop to suit your 
specific needs:
</para>
<variablelist>
<varlistentry>
<term>Themes</term>
<listitem>
<para>
Themes are the most effective way to change the appearance of the desktop in a consistent manner. See <xref linkend="themes-2"/> for more information about themes and how to use them to achieve the type of desktop environment that you require.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Desktop and Application-Specific Configuration Settings
</term>
<listitem>
<para>
You can customize different components of the desktop to achieve the display settings that you require. You can configure the desktop and applications in addition to using themes or as an alternative to themes. See <xref linkend="themes-7"/> for more information.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
The following table summarizes the changes that you can make to the GNOME Desktop and where you can make the changes. This guide does not provide detailed instructions about how to customize the desktop. For detailed instructions about how to use the customization tools that the desktop provides, refer to the Help for each tool or to the <ulink type="help" url="ghelp:user-guide?prefs">User Guide</ulink>.
</para>
<table frame="topbot" id="themes-TBL-1">
<title>Quick Reference to Customizing the Appearance of the Desktop
</title>
<tgroup cols="2" colsep="0" rowsep="0">
<colspec colname="colspec0" colwidth="50%"/>
<colspec colname="colspec1" colwidth="50%"/>
<thead>
<row rowsep="1">
<entry valign="top">
<para>To change the...</para>
</entry>
<entry valign="top">
<para>Use...
</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry valign="top">
<para>
Overall appearance of the desktop using high-contrast colors, low-contrast colors, or large print.
</para>
</entry>
<entry valign="top">
<para>The <guilabel>Theme</guilabel> section of the <application>Appearance</application> preference tool.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
Appearance of the desktop background only.
</para>
</entry>
<entry valign="top">
<para>
The <guilabel>Desktop Background</guilabel> section of the <application>Appearance</application> preference tool; also the file manager <guilabel>Backgrounds and Emblems</guilabel> menu item.
</para>
</entry>
</row>

<row>
<entry valign="top">
<para>
Appearance of the mouse pointer.
</para>
</entry>
<entry valign="top">
<para>
The <guilabel>Theme</guilabel> section of the <application>Appearance</application> preference tool; use the <guilabel>Pointers</guilabel> tab of the <guilabel>Customize</guilabel> option.
</para>
</entry>
</row>

<row>
<entry valign="top">
<para>
Font displayed on the desktop background and
in all desktop applications.
</para>
</entry>
<entry valign="top">
<para>
The <guilabel>Font</guilabel> section of the <application>Appearance</application> preference tool.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
Default font settings of the <application>Text Editor</application>,  <application>Terminal</application> or <application>Help</application> application.
</para>
</entry>
<entry valign="top">
<para>
Normally these applications use the default 
application font that is specified in the <guilabel>Font</guilabel> section of the <application>Appearance</application> preference tool, but these font settings can also be overridden in the <guilabel>Preferences</guilabel> dialog for the application.
</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
</section>

<section id="themes-2">
<title>Using Themes to Customize the Desktop</title>
<para>
This section describes how to use themes to customize the appearance of the GNOME Desktop.
</para>

<section id="themes-3">
<title>Introduction to Themes</title>
<indexterm>
<primary>themes</primary>
</indexterm>
<para>
A theme is a group of coordinated settings that specifies how a desktop component or a group of desktop components appears. You can use themes to modify and control the appearance of the desktop in a consistent manner. When you apply a theme, the system modifies many desktop components simultaneously to achieve the desired effect. For example, if you apply a theme that increases the font size across the desktop, the theme also modifies the size of panels and icons on the desktop for optimum compatibility with the font size. Some themes have suggested font settings that may optionally be auto-set; in addition, most colors within a theme can be customized.
</para>
<para>
A theme contains settings that affect different parts of the desktop: 
</para>
<variablelist>
<varlistentry>
<term>Controls</term>
<listitem>
<para>
The controls setting for a theme determines the visual appearance of all windows, applications, panels, and panel applications. The controls setting also determines the visual appearance of the GNOME-compliant interface items that appear on windows, applications, panels, and panel applications such as menus, icons, and buttons. Some of the control options that are available in the desktop are designed for special accessibility needs.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Window Border</term>
<listitem>
<para>
The window frame setting determines the appearance of the border around windows only.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Icon</term>
<listitem>
<para>
The icon setting determines the appearance of icons on panels and on the desktop background.
</para>
</listitem>
</varlistentry>
</variablelist>
</section>

<section id="themes-4">
<title>Choosing Themes</title>
<indexterm>
<primary>themes</primary>
<secondary>desktop</secondary>
</indexterm>
<para>To choose a theme, perform the following steps:
</para>
<orderedlist>
<listitem>
<para>
Choose <menuchoice><guimenu>System</guimenu><guisubmenu>Preferences</guisubmenu><guimenuitem>Appearance
</guimenuitem></menuchoice>. The themes
are listed under the <guilabel>Theme</guilabel> tab.
</para>
</listitem>
<listitem>
<para>
Click on a theme in the list box to choose a new theme. The system automatically applies the theme to the desktop, and may also prompt whether to apply a suggested font for the theme. 
</para>
<para>
There are several themes available that suit different accessibility needs, as described in the following table:
</para>
<table frame="topbot" id="themes-TBL-2">
<title>Themes Designed for Accessibility Requirements
</title>
<tgroup cols="2" colsep="0" rowsep="0">
<colspec colname="colspec0" colwidth="50*"/>
<colspec colname="colspec1" colwidth="50*"/>
<thead>
<row rowsep="1">
<entry valign="top">
<para>Theme Name</para>
</entry>
<entry valign="top">
<para>Description</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry valign="top">
<para>
<guilabel>High Contrast</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides dark text on a light background using high-contrast colors.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>High Contrast Inverse</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
Provides light text on a dark background using high-contrast colors.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>Large Print</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
This theme suggests an increased font size of 18pt. The background and foreground colors are the same as those specified by the <guilabel>Default</guilabel> desktop theme. To apply the suggested font, click on the <guibutton>Apply Font</guibutton> button.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>High Contrast Large Print</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
This theme suggests an increased font size of 18pt using dark text on a light background. To apply the suggested font, click on the <guibutton>Apply Font</guibutton> button.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>High Contrast Large Print Inverse</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
This theme suggests an increased font size of 18pt using light text on a dark background. To apply the suggested font, click on the <guibutton>Apply Font</guibutton> button.
</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
</listitem>
</orderedlist>
<para>
In some GNOME distributions there are also prebuilt low-contrast/low-contrast-large-print themes to complement the high-contrast theme set.
</para>
<para>
To view the controls, window frame, and icon settings that are associated with a theme, select a theme in the <guilabel>Appearance </guilabel> preference tool, then click on the <guibutton>Theme</guibutton> tab. The <guilabel>Customize</guilabel> option contains a tabbed section for each setting category. Each tabbed section lists the options that are available and the current setting for the theme is highlighted. 
</para>
</section>

<section id="themes-20">
<title>Modifying the Controls Setting for a Theme</title>
<para>
To modify the controls setting that is associated with a theme, perform the following steps: 
</para>
<orderedlist>
<listitem>
<para>
Within the <guilabel>Theme</guilabel> tab, select the theme that you want to modify.
</para>
</listitem>
<listitem>
<para>
Click on the <guibutton>Customize</guibutton> button. The <guilabel>Customize Theme</guilabel> dialog is displayed.
</para>
</listitem>
<listitem>
<para>
Click on the <guilabel>Controls</guilabel> tab to display the controls options that are available.
</para>
</listitem>
<listitem>
<para>
Select the controls option that you want to associate with the current theme from the list box, then click <guibutton>Close</guibutton>. The following table lists the controls options that are suitable for accessibility needs: 
</para>
</listitem>
</orderedlist>
<table frame="topbot">
<title>Controls Options Designed for Accessibility Requirements
</title>
<tgroup cols="2" colsep="0" rowsep="0">
<colspec colname="colspec0" colwidth="50*"/>
<colspec colname="colspec1" colwidth="50*"/>
<thead>
<row rowsep="1">
<entry valign="top">
<para>Control Option</para>
</entry>
<entry valign="top">
<para>Description</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry valign="top">
<para>
<guilabel>HighContrast</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides dark text on a light background using high-contrast colors.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>HighContrastInverse</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
Provides light text on a dark background using high-contrast colors.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>LargePrint</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
Increases the size of controls to accommodate larger fonts. To increase the font size, you must use the <application>Font</application> preference tool. The background and foreground colors are the same as those 
specified by the <guilabel>Default</guilabel> desktop theme.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
<guilabel>HighContrastLargePrint</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides dark text on a light background using high-contrast colors. Increases the size of controls to accommodate larger fonts. To increase the font size, you must use the <application>Font</application> preference tool.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
<guilabel>HighContrastLargePrintInverse</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides light text on a dark background using high-contrast colors. Increases the size of controls to accommodate larger fonts. To increase the font size, you must use the <application>Font</application> preference tool.
</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
</section>

<section id="themes-5">
<title>Modifying the Window Border Setting for a Theme
</title>
<indexterm>
<primary>themes</primary>
<secondary>window border</secondary>
</indexterm>
<para>
To modify the window border setting that is associated with a theme, perform the following steps: 
</para>
<orderedlist>
<listitem>
<para>
In the <application>Appearance</application> preference tool, choose the <guilabel>Theme</guilabel> tab and the theme you want to modify. 
</para>
</listitem>
<listitem>
<para>
Click on the <guibutton>Customize</guibutton> button. The <guilabel>Customize Theme</guilabel> dialog is displayed.
</para>
</listitem>
<listitem>
<para>
Click on the <guilabel>Window Border</guilabel> tab to display the window frame options that are available. 
</para>
</listitem>
<listitem>
<para>
Select the window frame option that you want to associate with the current theme from the list box, then click <guibutton>Close</guibutton>. The <guilabel>Atlanta</guilabel> option is designed for accessibility. 
</para>
</listitem>
</orderedlist>
</section>

<section id="themes-19">
<title>Modifying the Icon Setting for a Theme</title>
<indexterm>
<primary>themes</primary>
<secondary>icon</secondary>
</indexterm>
<para>
To modify the icon setting that is associated with a theme, perform the following steps: 
</para>
<orderedlist>
<listitem>
<para>
In the <application>Appearance</application> preference tool, choose the <guilabel>Theme</guilabel> tab and select the theme that you want to modify. 
</para>
</listitem>
<listitem>
<para>
Click on the <guibutton>Customize</guibutton> button. The <guilabel>Customize Theme</guilabel> dialog is displayed.
</para>
</listitem>
<listitem>
<para>
Click on the <guilabel>Icons</guilabel> tab to display the icon options that are available. 
</para>
</listitem>
<listitem>
<para>
Select the icon option that you want to associate with the theme from the list box, then click <guibutton>Close</guibutton>. The following table lists the icon options that are suitable for accessibility needs:
</para>
</listitem>
</orderedlist>
<table frame="topbot">
<title>Icon Options Designed for Accessibility Requirements
</title>
<tgroup cols="2" colsep="0" rowsep="0">
<colspec colname="colspec0" colwidth="50*"/>
<colspec colname="colspec1" colwidth="50*"/>
<thead>
<row rowsep="1">
<entry valign="top">
<para>Icon Option</para>
</entry>
<entry valign="top">
<para>Description</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry valign="top">
<para>
<guilabel>HighContrast</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides dark-on-light icons using high-contrast colors.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>HighContrastInverse</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
Provides light-on-dark icons using high-contrast colors.
</para>
</entry>
</row>
<!--<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>LargePrint</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
The background and foreground colors are the same as 
those specified by the <guilabel>Default</guilabel> 
desktop theme. To increase the font size, you must use 
the <application>Font</application> Preference tool.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
<guilabel>HighContrastLargePrint</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides dark text on a light background using 
high-contrast colors. To increase the font size, you 
must use the <application>Font</application> Preference 
tool.
</para>
</entry>
</row>
<row>
<entry valign="top">
<para>
<guilabel>HighContrastLargePrintInverse</guilabel> 
</para>
</entry>
<entry valign="top">
<para>
Provides light text on a dark background using 
high-contrast colors. To increase the font size, you 
must use the <application>Font</application> Preference 
tool.
</para>
</entry>
</row>
<row>
<entry colname="colspec0" valign="top">
<para>
<guilabel>LowContrastLargePrint</guilabel> 
</para>
</entry>
<entry colname="colspec1" valign="top">
<para>
Uses low-contrast colors for the background and 
foreground text. To increase the font size, you must use
the <application>Font</application> Preference tool.
</para>
</entry>
</row>-->
</tbody>
</tgroup>
</table>
</section>

<section id="themes-6">
<title>Creating Your Own Themes</title>
<indexterm>
<primary>themes</primary>
<secondary>creating own</secondary>
</indexterm>
<para>
For information about how to create your own themes, see the <ulink type="help" 
url="ghelp:system-admin-guide?themes-0">
System Administration Guide</ulink>. 
</para>
</section>
</section>

<section id="themes-7">
<title>Customizing Specific Components of the Desktop
</title>
<para>
This section describes how to customize specific components of the GNOME Desktop individually.
</para>

<section id="themes-8">
<title>Customizing the Desktop Background</title>
<indexterm>
<primary>customizing desktop appearance</primary>
<secondary>desktop background</secondary>
</indexterm>
<para>
The themes do not affect the desktop background. To set the desktop background, choose <menuchoice><guimenu>System</guimenu><guisubmenu>Preferences</guisubmenu>
<guimenuitem>Appearance</guimenuitem></menuchoice> and select a background from the <guilabel>Background</guilabel> tab. If no background is chosen, the first entry listed here may be used.
</para>
</section>

<section id="themes-9">
<title>Customizing Desktop Background Objects</title>
<indexterm>
<primary>customizing desktop appearance</primary>
<secondary>desktop background objects</secondary>
</indexterm>
<para>
The size of the icons that are displayed on the desktop background is controlled by the <application>File Management</application> preference tool. To change the size of the icons, perform the following steps:
</para>
<orderedlist>
<listitem>
<para>
From the <application>File Manager</application> window, choose the <menuchoice><guimenu>Edit</guimenu>
<guisubmenu>Preferences</guisubmenu></menuchoice> menu item.
</para>
</listitem>
<listitem>
<para>
Select the <guilabel>Views</guilabel> tabbed section.
</para>
</listitem>
<listitem>
<para>
In the <guilabel>Icon View Defaults</guilabel> group, select the zoom level that you require in the <guilabel>Default Zoom Level</guilabel> drop-down list.
</para>
</listitem>
</orderedlist>
</section>

<section id="themes-10">
<title>Customizing Fonts</title>
<indexterm>
<primary>customizing desktop appearance</primary>
<secondary>fonts</secondary>
</indexterm>
<anchor id="themes-13"/>
<anchor id="themes-14"/>
<para>
This section describes how to customize
the font settings for the desktop and frequently-used applications.
</para>
<para>
If you have difficulty with the default font type and font size that is used on the desktop and desktop background, you can customize the font settings to suit your needs. 
</para>
<para>
You can specify individual font settings for the following desktop components and applications: 
</para>
<itemizedlist>
<listitem>
<para>
Entire desktop (excluding the desktop background)
</para>
</listitem>
<listitem>
<para>Desktop background only</para>
</listitem>
<listitem>
<para>Terminal</para>
</listitem>
<listitem>
<para>Text Editor</para>
</listitem>
<listitem>
<para>Help</para>
</listitem>
<listitem>
<para>Web Browser</para>
</listitem>
</itemizedlist>
<section id="themes-11">
<title>Customizing Desktop Fonts</title>
<indexterm>
<primary>customizing desktop appearance</primary>
<secondary>desktop fonts</secondary>
</indexterm>
<para>
The <application>Appearance</application> preference tool allows you to specify the default fonts for the desktop.
</para>
<para>
To start the <application>Appearance</application> preference tool, choose <menuchoice><guimenu>System</guimenu>
<guisubmenu>Preferences</guisubmenu><guimenuitem>Appearance</guimenuitem></menuchoice>. The <guilabel>
Fonts</guilabel> tab contains the following options: 
</para>
<variablelist>
<varlistentry>
<term>
<guilabel>Application Font</guilabel> 
</term>
<listitem>
<para>
Click on this button to select a default font to use for the text that is displayed on the desktop, including the text displayed on the windows and dialogs associated with GNOME-compliant applications and panel applications.
</para>
<note>
<para>
If you use a predefined theme and you click on the <guibutton>Apply Font</guibutton> button, the font that is associated with the theme overrides the font from the <application>Appearance</application> preference tool.
</para>
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>
<guilabel>Document Font</guilabel> 
</term>
<listitem>
<para>
Click on this button to select a font to use for displaying documents.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<guilabel>Desktop Font</guilabel> 
</term>
<listitem>
<para>
Click on this button to select a font to use for the text that is displayed on the desktop background only.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><guilabel>Window Title Font</guilabel> </term>
<listitem>
<para>
Click on this button to select a font to use for the text that is displayed in the titlebar area of windows.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><guilabel>Fixed Width Font</guilabel> </term>
<listitem>
<para>
Click on this button to select a font to use for editing documents.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><guilabel>Font Rendering</guilabel> </term>
<listitem>
<para>
To specify how to render fonts on the desktop, select one of the following options:
</para>
<itemizedlist>
<listitem>
<para>
<guilabel>Monochrome</guilabel> 
</para>
</listitem>
<listitem>
<para>
<guilabel>Best Shapes</guilabel> 
</para>
</listitem>
<listitem>
<para>
<guilabel>Best Contrast</guilabel> 
</para>
</listitem>
<listitem>
<para>
<guilabel>Subpixel Smoothing</guilabel> 
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
<note>
<para>
If you use large fonts, you may need to change the size of panes in some applications, such as the file manager and Help browser. 
</para>
</note>
<para>
For more information about the <application>Appearance</application> preference tool and fonts, see the <ulink type="help" url="ghelp:user-guide?prefs-font">
User Guide</ulink>. 
</para>
</section>

<section id="themes-cust">
<title>Customizing Application Fonts</title>
<indexterm>
<primary>custom desktop appearance</primary>
<secondary>set choose individual font</secondary>
</indexterm>
<para>
By default, GNOME applications use the default font specified in the <application>Appearance</application> preference tool. Some applications allow this default font to be customized. These applications are:
</para>
<itemizedlist>
<listitem>
<para><ulink type="help" url="ghelp:user-guide#yelp">
Help Browser</ulink> 
</para>
</listitem>
<listitem>
<para>
<ulink type="help" url="ghelp:gedit?
gedit-prefs-fontsandcolors">
Text Editor</ulink> </para>
</listitem>
<listitem>
<para>
<ulink type="help" url="ghelp:gnome-terminal#
gnome-terminal-prefs-general">
Terminal</ulink> 
</para>
</listitem>
<listitem>
<para>
<ulink type="help" url="ghelp:epiphany#
ephy-customize">Web Browser</ulink> 
</para>
</listitem>
</itemizedlist>
</section>
</section>
</section>

<section id="themes-15">
<title>Meeting Specific Accessibility Needs</title>
<para>
The following sections summarize the steps you need to take to improve the accessibility of the desktop in a particular area. 
</para>

<section id="themes-16">
<title>Achieving a High- or Low-Contrast Desktop</title>
<indexterm>
<primary>high contrast desktop</primary>
</indexterm>
<indexterm>
<primary>low contrast desktop</primary>
</indexterm>
<para>
To achieve a high- or low-contrast desktop, perform the following steps:
</para>
<orderedlist>
<listitem>
<para>
Use the <application>Appearance</application> preference tool to select the high-contrast or low-contrast desktop theme that you require from the <guilabel>Theme</guilabel> tab.
</para>
</listitem>
<listitem>
<para>
Use the <guilabel>Background</guilabel> tab to customize your desktop background as follows:
</para>
<itemizedlist>
<listitem>
<para>
Set the <guilabel>Desktop Wallpaper</guilabel> to <guilabel>No Wallpaper</guilabel>.
</para>
</listitem>
<listitem>
<para>
Set the <guilabel>Desktop Colors</guilabel> to <guilabel>Solid Color</guilabel>.
</para>
</listitem>
<listitem>
<para>
Select a background color that suits your needs.
</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
In the <application>Terminal</application> application, ensure that the <guilabel>Use colors from system theme</guilabel> option is selected in the <guilabel>Colors</guilabel> tabbed section of the <guilabel>Editing
Profile</guilabel> dialog.
</para>
</listitem>
<listitem>
<para>
In the <application>gedit</application> (Text Editor) application, ensure that the <guilabel>Use default theme colors</guilabel> option is selected in the <guilabel>Fonts &amp; Colors</guilabel> tabbed section of the 
<guilabel>Preferences</guilabel> dialog.
</para>
</listitem>
</orderedlist>
</section>

<section id="themes-17">
<title>Achieving a Large Print Desktop</title>
<indexterm>
<primary>large print desktop</primary>
</indexterm>
<para>
To achieve a large-print desktop, perform the following steps:
</para>
<orderedlist>
<listitem>
<para>
Use the <application>Appearance</application> preference tool to select the <guilabel>Large Print</guilabel> theme.
</para>
</listitem>
<listitem>
<para>
Click on the <guibutton>Apply Font</guibutton> button to increase the size of the font that is used on the desktop and on window frames.
</para>
</listitem>
<listitem>
<para>
Use the <guilabel>Desktop Font</guilabel> option in the <guilabel>Font</guilabel> tab to increase the font that is displayed on desktop background objects.
</para>
</listitem>
<listitem>
<para>
Increase the font size that is used to display the contents of the <application>Terminal</application> application window. 
</para>
</listitem>
<listitem>
<para>
If the <guilabel>Use default theme font</guilabel> option is selected in the <application>gedit</application> (Text Editor) <guilabel>Preferences</guilabel> dialog, <application>gedit</application> uses the font size that is specified in the large-print theme that you selected. However, if the <guilabel>Use default theme font
</guilabel> option is not selected, increase the font size that is used to display the contents of the <application>gedit</application> text editor window. See the <ulink type="help" url="ghelp:gedit?gedit-prefs-fontsandcolors">gedit manual</ulink> for more information.
</para>
</listitem>
<listitem>
<para>
If you use applications that use panes, such as the file manager and help browser, you may need to change the size of panes to accommodate the large print. See the online help for the appropriate application for more information.
</para>
</listitem>
</orderedlist>
</section>
</section>
</section>

<section id="ats-2">
<title>Orca: Screen Reader and Magnifier</title>
<indexterm>
<primary>Screen Reader and Magnifier</primary>
</indexterm>
<indexterm>
<primary>Orca</primary>
</indexterm>
<para>
The <application>Orca</application> Screen Reader and Magnifier application enables users with limited or no vision to use the GNOME Desktop and associated applications. <application>Orca</application> provides the following functionality: 
</para>
<itemizedlist>
<listitem>
<para>
Screen Reader
</para>
<para>
The screen reader enables non-visual access to standard applications in the GNOME Desktop by using speech and braille output.
</para>
</listitem>
<listitem>
<para>
Magnifier
</para>
<para>
The magnifier provides automated focus tracking and full-screen magnification to aid low-vision users.
</para>
</listitem>
</itemizedlist>
<para>
The following sections provide information about <application>Orca</application> and how to use it.
</para>

<section>
<title>Introduction to Orca</title>
<section>
<title>What is Orca?</title>
<para>
Orca is a flexible, extensible, and powerful assistive technology for people with visual impairments. Using various combinations of speech synthesis, braille and magnification, Orca helps provide access to applications
and toolkits that support the AT-SPI (e.g., the GNOME Desktop). <application>Orca</application> is also free open source software.
</para>
</section>

<section>
<title>Why the name Orca?</title>
<para>
One of the first DOS screen readers was Flipper, made by Omnichron Corporation in Berkeley, CA. It was named Flipper in part because the blind wife of the programmer 
envisioned computers as being programmed by flipping switches (an accurate image of a bygone era). Then came another DOS screen reader, this one from Henter-Joyce in 
Florida - "Jobs Access With Speech" (or JAWS). And so on....
</para>
<para>
Although no obvious connection exists between blindness and creatures from the sea, there is certainly a naming tradition for screen-reader software. Hence <application>Orca</application>, which is a lot tougher-sounding than Nemo, Ariel, Willy, or Mr. Limpet.
</para>
</section>

<section>
<title>What's the schedule?</title>
<para>
<application>Orca</application> is part of the GNOME platform and <application>Orca</application>'s releases are coupled with the releases of the GNOME platform.
</para>
</section>

<section>
<title>How do I request a new feature?</title>
<para>
<ulink url="http://bugzilla.gnome.org/buglist.cgi?query=product:orca+">Bugs</ulink> and feature/enhancement requests (RFEs) 
should be reported to the <ulink url="http://bugzilla.gnome.org">GNOME Bug Tracking System
</ulink>. Patches are always welcome, and instructions for creating patches can be found in the <ulink url="http://developer.gnome.org/tools/svn.html">
GNOME Introduction to Subversion (SVN)
</ulink>.
</para>
</section>

<section>
<title>Where is the discussion list?</title>
<para>
You can get in touch with developers and other users by <ulink url="mailto:orca-list@gnome.org">sending an e-mail</ulink> to the <ulink url="http://mail.gnome.org/mailman/listinfo/orca-list">Orca mailing list</ulink> 
(<ulink url="http://mail.gnome.org/archives/orca-list">Archives</ulink>).
</para>
</section>

<section>
<title>Is braille supported?</title>
<para>
Yes! Braille is supported via BrlTTY and it is tightly integrated with Orca. BrlTTY offers support for nearly every refreshable braille display known to man.
</para>
</section>

<section>
<title>Is contracted braille supported?</title>
<para>
Yes, <application>Orca</application> fully supports contracted braille output.
</para>
</section>

<section>
<title>What voices are available?</title>
<para>
<application>Orca</application> provides interfaces to both <userinput>gnome-speech</userinput> and <userinput>emacspeak</userinput> speech services. As such, the available voices for <application>Orca</application> are only restricted by the speech engines supported by the available speech services. For free speech engines, you typically have a choice of the eSpeak, Festival, and FreeTTS speech engines. For commercial engines, you have a choice of 
additional engines such as Fonix DECtalk, Loquendo, Eloquence, Cepstral and IBMTTS, with others on the way. Periodically check the <userinput>gnome-speech</userinput> package for more progress in this area.
</para>
</section>

<section>
<title>What languages are supported?</title>
<para>
The <ulink url="http://l10n.gnome.org/teams">
GNOME translation teams</ulink> are composed of many passionate volunteers from around the world. These teams do a great job and keep an up-to-date status report. See the <ulink url="http://l10n.gnome.org/module/orca">
Orca translation status page</ulink> for the large number of languages into which <application>Orca</application> has been translated.
</para>
<para> 
Note: support for a language also depends on 
the speech synthesis engine also supporting the same language.
</para>
</section>

<section>
<title>How well does magnification work?</title>
<para>
<application>Orca</application> currently uses the <userinput>gnome-mag</userinput> 
magnification service. <userinput>gnome-mag</userinput> has incorporated support for smoother full-screen magnification, which 
relies upon newer extensions in the X Window System server. These extensions do not always function well on all platforms, so smooth full-screen magnification may not always work.
</para>
</section>

</section>

<section id="enable-orca">
<title>Enabling Orca</title>
<para>
For a text-only guided setup, open a Run dialog with <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> or <keycombo><keycap>Meta</keycap><keycap>R</keycap></keycombo> and use the command <userinput>orca --text-setup</userinput> <keycap>Enter</keycap>.
</para>
<para>
The first time <application>Orca</application> is launched you will be asked a few questions:
</para>
<para>
First you will be presented with a list of languages to choose from; there are currently about 45 languages supported. Most of this list will scroll off the screen, so you may have to use the terminal's scrollbar to view earlier parts of the list. Type in the number of your language choice (e.g., 7 for American English) and press <keycap>Enter</keycap>.  You do not need to wait for the entire list to be spoken, and Orca attempts to make your default language the first choice (choice 1).
</para>
<para>
You are next asked to set <guilabel>Echo By Word</guilabel>. This option instructs <application>Orca</application> to speak words as you finish typing them. Type <keycap>y</keycap> or <keycap>n</keycap> and press <keycap>Enter</keycap>.
</para>
<para>
The next item is <guilabel>Key Echo</guilabel>. This option will speak all keys as they are pressed. Type <keycap>y</keycap> or <keycap>n</keycap> and press <keycap>Enter</keycap>.
</para>
<para>
Now select your desired keyboard layout; generally, you will want to choose the layout that matches your keyboard type - 1 for Desktop or 2 for Laptop. This choice will determine what key will act as the <application>Orca</application> modifier key. The Desktop layout uses <keycap>Insert</keycap> while the Laptop layout uses <keycap>Caps Lock</keycap>. A system, host, shift or modifier key is one which is used in conjunction with other keys, enabling keyboard access to most program functions.
</para>
<para>
Next, specify if you require braille output. This functionality assumes a BrlTTY-compatible device is available. Type <keycap>y</keycap> or <keycap>n</keycap> and press <keycap>Enter</keycap>.  Note that you can usually just enter <keycap>y</keycap> here; Orca will recover gracefully and function even if it cannot find BrlTTY.
</para>
<para>
Lastly, indicate whether you want an on-screen braille output monitor. This is mostly for developers who need to verify BrlTTY output, but may also be useful in other situations, such as visually diagnosing or verifying braille output. Type <keycap>y</keycap> or <keycap>n</keycap> and press <keycap>Enter</keycap>.
</para>
<para>
That's it! <application>Orca</application> is now ready for use. If accessibility was not yet enabled, <application>Orca</application> does so now and asks you to logout and back in for the services to start. Type <keycap>y</keycap> and press <keycap>Enter</keycap> to restart your login session.
</para>
<para>
After completing the first-time <application>Orca</application> settings, use <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> or <keycombo><keycap>Meta</keycap><keycap>R</keycap></keycombo> to bring up the Run dialog, type in <literal>orca</literal> and press <keycap>Enter</keycap>. Accessibility functions should now be active.  Orca's Configuration GUI (<xref linkend="configuration-gui"/>) also has an option to let you indicate that Orca should be started automatically when you log in.
</para>
<para>
If you plan to use the Magnifier portion of <application>Orca</application> in full screen mode, nonfirm the <application>Xserver</application> "Composite" extension is enabled: use <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> or <keycombo><keycap>Meta</keycap><keycap>R</keycap></keycombo> to bring up the Run dialog, type in <literal>xdpyinfo</literal> and press <keycap>Enter</keycap>.  Look for the string "Composite" in the output.
</para>
</section>

<section>
<title>Using Orca</title>
<section>
<title>Initial Setup</title>
<para>
When you run <application>Orca</application> for the first time, it will automatically enter setup mode. If you want to run setup 
at some later point, you can pass the
<userinput>--setup</userinput> option to <application>Orca</application> the next 
time you run it. Furthermore, while <application>Orca</application> is running, 
you can press <keycombo><keycap>Insert</keycap><keycap>Space</keycap></keycombo> to bring up <application>Orca</application>'s Configuration GUI (<xref linkend="configuration-gui"/>). Finally, <application>Orca</application> provides a text setup utility that you can start by passing the 
<userinput>--text-setup</userinput> option to <application>Orca</application>. All of these options will create a <userinput>~/.orca/user-settings.py</userinput> file that holds your preferences and will also enable the accessibility infrastructure. You need to log out and log back in for the new settings to take effect.
</para>
</section>

<section>
<title>How do I run Orca?</title>
<para>
Run <application>Orca</application> by typing <userinput>orca</userinput> in a terminal session window. You can do so from a virtual 
console window if you do not yet have access to the GUI. With the GUI installed you can also press <keycombo><keycap>Alt</keycap>
<keycap>F2</keycap></keycombo> or <keycombo><keycap>Meta</keycap>
<keycap>R</keycap></keycombo> to bring up the Run dialog and then type <userinput>orca</userinput> as the command (followed by any optional parameters).  Then, press <keycap>Enter</keycap>. <application>Orca</application> will automatically enter text setup mode if you run it from a virtual console window or your GUI environment is not yet set up for accessibility.
</para>
</section>

<section>
<title>Quitting Orca</title>
<para>
To quit <application>Orca</application>, press <keycombo><keycap>Insert</keycap>
<keycap>Q</keycap></keycombo> (or <keycombo><keycap>CapsLock</keycap>
<keycap>Q</keycap></keycombo> in laptop layout mode). A confirmation dialog will appear. Select <guilabel>Quit</guilabel> to close Orca. If the system seems unresponsive, you can try a few things:
</para>
<itemizedlist>
<listitem>
<para>
Run <userinput>orca --quit</userinput> from a terminal window, such as a virtual console; press <keycombo><keycap>Ctrl</keycap>
<keycap>Alt</keycap><keycap>F1</keycap>
</keycombo> (on most Linux platforms) to get to a virtual console, enter your commands, and then use <keycombo><keycap>Alt</keycap>
<keycap>F7</keycap></keycombo> to get back to the desktop. This will kill the <application>Orca</application> process and reclaim system resources. You can then 
rerun <application>Orca</application> using the previously outlined methods.
</para>
</listitem>
<listitem>
<para>
Press <keycombo><keycap>Ctrl</keycap>
<keycap>Alt</keycap><keycap>Backspace</keycap>
</keycombo> to end your login session and get back to the graphical login prompt (not implemented in all Linux distributions).
</para>
</listitem>
</itemizedlist>
</section>
</section>

<section id="configuration-gui">
<title>Orca Configuration GUI</title>
<para>
The <application>Orca</application> Configuration GUI allows you to customize the behavior and features of <application>Orca</application>, such as speech, braille, and magnification. For example, you can select which speech synthesis engine you want to use, whether braille is enabled or not, and which magnification preferences you want. You can select which general keyboard layout you want (desktop or laptop) and you can also examine and modify the existing keyboard layout with fine-grained control. To bring up the <application>Orca</application> Configuration GUI, press <keycombo><keycap>Orca_Modifier</keycap><keycap>Space</keycap></keycombo>, where <keycap>Orca_Modifier</keycap> is <keycap>Insert</keycap> when you use the Desktop Keyboard Layout (<xref linkend="orca-desktop-keys"/>) and <keycap>CapsLock</keycap> when you use the Laptop Keyboard Layout (<xref linkend="orca-laptop-keys"/>). If you want to change settings for a single application, press <keycombo><keycap>Ctrl</keycap><keycap>Orca_Modifier</keycap><keycap>Space</keycap></keycombo> while the application has focus.
</para>
<para>
The <application>Orca</application> Configuration GUI is a dialog containing several tabbed pages, each of which is described in the following sections.
</para>

<section>
<title>General Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/General_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - General Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The <guilabel>General</guilabel> page allows you to customize general aspects of <application>Orca</application>. These include the following:
</para>

<section>
<title>Keyboard Layout</title>
<para>
The keyboard layout section allows you to specify if you will be working on a laptop (small) or desktop (large, with a numeric keypad) keyboard. You select which layout you want by selecting one of the following options:
</para>
<para>
<emphasis>Desktop</emphasis> - if selected, the Desktop Keyboard Layout (<xref linkend="orca-desktop-keys"/>) will be used.
</para>
<para>
<emphasis>Laptop</emphasis> - if selected, the Laptop Keyboard Layout (<xref linkend="orca-laptop-keys"/>) will be used.
</para>
</section>

<section>
<title>Show Orca main window</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/MainWindow.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Main window
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The <application>Orca</application> main window provides you with a graphical way to display the <application>Orca</application> Configuration GUI (also accessible with <keycombo><keycap>Orca_Modifier</keycap><keycap>Space</keycap></keycombo>, where Orca_Modifier is <keycap>Insert</keycap> when you use the Desktop Keyboard Layout (<xref linkend="orca-desktop-keys"/>) and <keycap>Caps_Lock</keycap> when you use the Laptop Keyboard Layout (<xref linkend="orca-laptop-keys"/>)). The main window also provides a <guibutton>Quit</guibutton> option, also available with <keycombo><keycap>Orca_Modifier</keycap><keycap>Q</keycap></keycombo>). Many users do not like the <application>Orca</application> main window because it shows up in the window manager's tab order when you press <keycombo><keycap>Alt</keycap><keycap>Tab</keycap></keycombo> to switch windows. By deselecting the "Show Orca main window" button, you can tell <application>Orca</application> to not show the <application>Orca</application> main window.
</para>
</section>

<section>
<title>Quit Orca without Confirmation</title>
<para>
Normally, when you press <keycombo><keycap>Orca_Modifier</keycap><keycap>Q</keycap></keycombo> to quit <application>Orca</application> or press the <guibutton>Quit</guibutton> button in the <application>Orca</application> main window, <application>Orca</application> will pop up a confirmation dialog asking you if you want to quit. Unchecking this option prevents the confirmation window from appearing.
</para>
</section>

<section>
<title>Disable gksu keyboard grab</title>
<para>
When running commands from the launch menu, many distributions use an application known as <application>gksu</application> to authorize the user to run these commands; <application>gksu</application> is the GUI that asks you for your password. When it runs, <application>gksu</application> enables what is known as a "keyboard grab," which is a feature to prevent keyboard actions from going to any other application on the desktop, including <application>Orca</application>.  The result of a keyboard grab is that <application>Orca</application> will not receive any keyboard events, preventing <application>Orca</application> from functioning normally.
</para>
<para>
By selecting the "Disable gksu keyboard grab" button, you will turn off the keyboard grab behavior, allowing <application>Orca</application> to function normally with system administration applications.
</para>
<note>
<para>
The keyboard grab is a security attempt by <application>gksu</application> to prevent nefarious applications from "sniffing" the keyboard and grabbing secret information.  Please be advised that disabling the gksu keyboard grab feature can expose you to such nefarious behavior. If you do not feel comfortable with this, you can always use the root account for system administration purposes. To do so, you need to enable the root account for login, and then logout and log back in as root whenever you want to perform a system administration command.
</para>
</note>
</section>

<section>
<title>Present tooltips</title>
<para>
When checked, this option will tell <application>Orca</application> to present information about tooltips when they appear as the result of mouse hovering. Specific actions to force tooltips to appear, such as pressing <keycombo><keycap>Ctrl</keycap><keycap>F1</keycap></keycombo> when an object has focus, will always result in tooltips being presented, regardless of this setting.
</para>
</section>

<section>
<title>Speak object under mouse</title>
<para>
When checked, this option will tell <application>Orca</application> to present information about the object under the mouse when you move it around the screen. Note that this can cause <application>Firefox</application> and <application>Thunderbird</application> versions 2.x and earlier to crash; this is not a problem with <application>Firefox</application> and <application>Thunderbird</application> versions 3.x and later.
</para>
</section>

<section>
<title>Start Orca when you login</title>
<para>
When checked, this option will tell the system to automatically launch <application>Orca</application> when you log in.
</para>
</section>
</section>

<section>
<title>Speech Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/Speech_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Speech Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The speech page allows you to customize how <application>Orca</application> uses speech synthesis.
</para>

<section>
<title>Enable speech</title>
<para>
The first control of note on the speech page is the "enable speech" check box. This check box toggles whether or not <application>Orca</application> will make use of a speech synthesizer. This option, along with the ability to enable braille and enable magnifier support, allow <application>Orca</application> to be tailored to meet the needs of a wide variety of users.
</para>
</section>

<section>
<title>Speech System and Speech Synthesizer</title>
<para>
The next two controls deal with selecting the speech system and synthesizer. <application>Orca</application> provides support for a growing number of speech systems. At the time of this writing, these include GNOME-speech, Emacspeak, and an experimental backend for Speech Dispatcher.  Depending upon how your machine is configured, you may have all or none of these options.  Typically, you will have just GNOME-speech.
</para>
<para>
First, determine which speech system you would like to use - GNOME-speech works best at this time. After making your selection, tab to the speech synthesizer combo box and choose from the list of available synthesizers.
</para>
</section>

<section>
<title>Voice Settings</title>
<para>
If your synthesizer supports it, <application>Orca</application> can utilize multiple voices in order to identify special cases within an application, such as hyperlinks or upper case text. The voice settings and person combo boxes can be adjusted to customize these settings to your liking. For example, assume you were using Fonix DECtalk and wanted the Betty voice to denote upper case. To accomplish this, you could do the following:
</para>
<procedure>
<step>
<para>
Tab to the voice settings combo box, and down arrow until the upper case voice is selected.
</para>
</step>
<step>
<para>
Tab to the person combo box, and down arrow to choose the Betty voice.
</para>
</step>
</procedure>
<para>
The next three sliders in the tab order allow adjustment of the synthesizer's rate, pitch and volume, respectively.
</para>
</section>

<section>
<title>Punctuation Level</title>
<para>
The punctuation level radio button group is used to adjust the amount of punctuation spoken by the synthesizer. The available levels are None, Some, Most and All.
</para>
</section>

<section>
<title>Verbosity</title>
<para>
The verbosity setting determines the amount of information that will be spoken in certain situations. For example, if it is set to verbose, the synthesizer will speak shortcut keys for items in pull down menus. When it is set to brief, these shortcut keys are not announced.
</para>
</section>

<section>
<title>Table Row Speech</title>
<para>
The table row speech option determines the way in which <application>Orca</application> will read items within tables. The available settings are "speak current row" or "speak current cell". The ability to adjust this behavior can be useful in many situations.  For example, consider the process of browsing email messages in <application>Evolution</application>. In this instance it may be preferable to set table speech to "speak current row" so that while arrowing through the list of messages all relevant info, such as the sender, subject, and whether the message has attachments, is read automatically. While the current row setting is active, it is still possible to read individual cells by using the left and right arrows.
</para>
<note>
<para>
You can quickly toggle this behavior by pressing <keycombo><keycap>Orca_Modifier</keycap><keycap>F11</keycap></keycombo>.
</para>
</note>
</section>

<section>
<title>Speak Progress Bar Updates</title>
<para>
If this setting is enabled, <application>Orca</application> will periodically announce the status of progress bars. How often the announcement is made is determined by the value chosen in the <guilabel>Update Interval</guilabel> spin button. Note that this spin button is only available if the "Speak progress bar updates" checkbox has been checked.
</para>
</section>

<section>
<title>Speak Indentation and Justification</title>
<para>
When working with code or editing other documents it is often desirable to be aware of justification and indentation. Selecting the "Speak indentation and justification" check box will cause <application>Orca</application> to provide this information.
</para>
</section>

<section>
<title>Speak Blank Lines</title>
<para>
Some users desire to hear "blank" when navigating to a blank line in a document.  Other users do not. If the "speak blank lines" check box is selected, <application>Orca</application> will speak blank lines.
</para>
</section>

<section>
<title>Speak tutorial messages</title>
<para>
When moving from component to component in an interface, this option will provide spoken tutorial messages for how to work with the component.
</para>
</section>

<section>
<title>Say All By</title>
<para>
This combo box allows you to specify whether the "say all" functionality of <application>Orca</application> speaks by sentence or line.  See the Desktop Keyboard Layout (<xref linkend="orca-desktop-keys"/>) and Laptop Keyboard Layout (<xref linkend="orca-laptop-keys"/>) for how to invoke the "say all" functionality).
</para>
</section>
</section>

<section>
<title>Braille Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/Braille_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Braille Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The braille page allows you to customize various aspects about the use of braille.
</para>
<note>
<para>
<application>Orca</application> does not automatically start BrlTTY for you; typically you need to do this yourself, usually at boot time.
</para>
</note>

<section>
<title>Enable Braille Support</title>
<para>
The first control on the braille page is the "Enable braille support" check box. This check box toggles whether or not <application>Orca</application> will make use of a braille display. This option, along with the ability to enable braille and enable magnifier support, allow <application>Orca</application> to be tailored to meet the needs of a wide variety of users. By default, this check box is enabled. If BrlTTY is not running, <application>Orca</application> will recover gracefully and will not communicate with the braille display. If you configure BrlTTY later on, you need to restart <application>Orca</application> in order for it to use braille.
</para>
</section>

<section>
<title>Enable Braille Monitor</title>
<para>
<application>Orca</application>'s braille monitor provides an on-screen representation of what takes place on the braille display. This feature is mostly for demonstration purposes, but is also useful for <application>Orca</application> developers who do not have access to a braille display.
</para>
</section>

<section>
<title>Abbreviated Role Names</title>
<para>
The "Abbreviated role names" check box determines the manner in which role names are displayed and can be used to help conserve real estate on the braille display. The "Abbreviated role names" option can be better understood if we consider the following example. Let us assume that a slider had focus, and that the abbreviated role names box was not checked. In this case, the word "slider" would be shown on the display, to reflect the fact that the current control was indeed a slider. If the abbreviated role names box were checked, the word "slider" would be abbreviated to "sldr".
</para>
</section>

<section>
<title>Disable end of line symbol</title>
<para>
When checked, this feature tells <application>Orca</application> to not present the "$l" string at the end of a line.
</para>
</section>

<section>
<title>Contracted Braille</title>
<para>
<application>Orca</application> supports contracted braille via the liblouis project.  Refer to <ulink url="http://live.gnome.org/Orca/Braille#Braille">the Orca WIKI</ulink>, where you can find additional information about setting up liblouis with <application>Orca</application>.
</para>
</section>

<section>
<title>Verbosity</title>
<para>
The verbosity radio button group determines the amount of information that will be brailled in certain situations. For example, if it is set to verbose, keyboard shortcut and role name information is displayed. This information is not displayed in brief mode.
</para>
</section>

<section>
<title>Selection Indicator</title>
<para>
When you select text, <application>Orca</application> will "underline" that text on your braille display with Dots 7 and 8. If you would prefer, you can change the indicator to only be Dot 7, only be Dot 8, or not be present at all.
</para>
</section>

<section>
<title>Hyperlink Indicator</title>
<para>
When you encounter a hyperlink, <application>Orca</application> will "underline" that text on your braille display with Dots 7 and 8. If you would prefer, you can change the indicator to only be Dot 7, only be Dot 8, or not be present at all.
</para>
</section>
</section>

<section>
<title>Key Echo Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/KeyEcho_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Key Echo Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The key echo page allows you to specify the behavior of <application>Orca</application> when pressing keys on the page and whether words are spoken as you complete them.
</para>

<section>
<title>Enable Key Echo</title>
<para>
The first control on the key echo page is the "Enable key echo" check box. When this box is selected, six additional check boxes become available. These are: "Enable alphanumeric and punctuation keys", "Enable modifier keys", "Enable locking keys", "Enable function keys", "Enable action keys", and "Enable navigation keys".
</para>
<para>
The alphanumeric and function key groups are relatively self explanatory.
</para>
<para>
Modifier keys are those such as <keycap>Shift</keycap>, <keycap>Ctrl</keycap>, and <keycap>Alt</keycap>.
</para>
<para>
Locking keys include <keycap>Caps Lock</keycap>, <keycap>Scroll Lock</keycap> and <keycap>Num Lock</keycap>.
</para>
<para>
The action keys group consists of keys that perform some logical action, such as <keycap>Backspace</keycap>, <keycap>Return</keycap> and <keycap>Tab</keycap>.
</para>
<para>
The navigation keys group include the four arrow keys as well as any key combination in which the Orca Modifier key is being held down. The latter is designed to prevent <application>Orca</application> from echoing flat review commands.
</para>
</section>

<section>
<title>Enable Echo by Word</title>
<para>
The next toggle on the key echo page is the "Enable echo by word" check box, used to echo the word you just typed. The "Echo by word" control is always available, regardless of whether any of the key echo options are checked.
</para>
</section>

<section>
<title>Enable Echo by Sentence</title>
<para>
The last toggle on the key echo page is the "Enable echo by sentence" check box, used to echo the sentence you just typed. The echo by sentence control is always available, regardless of whether any of the key echo options are checked.
</para>
<para>
In summary, the key echo scheme can offer a great deal of flexibility. For example, one user might choose to enable all key echo options, while another might prefer to use word echo, but only have locking keys announced.
</para>
</section>
</section>

<section>
<title>Magnifier Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/Magnifier_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Magnifier Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The magnifier page allows you to enable/disable magnification and specify how magnification is performed.
</para>

<section>
<title>Enable Magnifier</title>
<para>
The first control on the magnifier page is the "Enable magnifier" check box. This check box toggles whether or not <application>Orca</application> will provide magnification. This option, along with the ability to enable speech and enable braille support, allow <application>Orca</application> to be tailored to meet the needs of a wide variety of users.
</para>
</section>

<section>
<title>Zoomer Settings</title>
<para>
Two zoomer GUI controls determine magnification characteristics:
</para>
<itemizedlist>
<listitem>
<para>
"Scale factor", which sets magnification power from 1.0x to 16.0x (fractional values are supported).
</para>
</listitem>
<listitem>
<para>
"Position", which sets the location and size of the magnifier window: "Full Screen", "Left Half", "Right Half", "Top Half", "Bottom Half", and "Custom". The default position is "Full Screen". Choosing "Custom" causes four spin buttons to become available: "Top", "Left", "Right", and "Bottom".  These spin buttons allow you to define the location of each edge of the zoom window.  Units are in pixels.
</para>
</listitem>
</itemizedlist>
</section>

<section>
<title>Border Settings</title>
<note>
<para>
These options are not available in "Full Screen" mode.
</para>
</note>

<section>
<title>Enable border</title>
<para>
This option determines if a window border is visible for the magnifier.
</para>
</section>

<section>
<title>Border size</title>
<para>
This value determines the size of the border in pixels. 
</para>
</section>
</section>

<section>
<title>Cursor Settings</title>
<para>
These controls can be used to customize the size and color of the magnifier's cursor.
</para>

<section>
<title>Enable cursor</title>
<para>
If this check box is enabled then a cursor is visible and the size and color options become available.
</para>
</section>

<section>
<title>Custom size</title>
<para>
Enable this check box if you would like to make the mouse pointer larger than it normally is. The cursor size can be changed from the default value of 32 pixels.
</para>
</section>

<section>
<title>Custom color</title>
<para>
If the cursor is enabled, a custom color can also be applied.
</para>
</section>
</section>

<section>
<title>Cross-hair Settings</title>
<para>
This set of controls can be used to customize the magnifier's optional area-targeting cursor.
</para>

<section>
<title>Enable cross-hair</title>
<para>
If checked, you can additionally configure the clipping behavior, size and color of the cross-hair.
</para>
</section>

<section>
<title>Enable cross-hair clip</title>
<para>
If enabled, the cross-hair will be "clipped" (removed) in the area immediately surrounding the mouse pointer.
</para>
</section>

<section>
<title>Cross-hair size</title>
<para>
This control sets the thickness of the cross-hair in pixels.
</para>
</section>

<section>
<title>Cross-hair color</title>
<para>
This control allows a custom color to be used for the cross-hair.
</para>
</section>
</section>

<section>
<title>Color Settings</title>
<para>
This allows you to do some rough color adjustments of the magnified region.
</para>

<section>
<title>Invert colors</title>
<para>
Creates a reverse or negative-image effect.
</para>
</section>

<section>
<title>Brightness</title>
<para>
Ranges from -1 to 1 (-1 is black/no brightness; 1 is white/total brightness; 0 is "normal"/unchanged).
</para>
</section>

<section>
<title>Contrast</title>
<para>
Ranges from -1 to 1 (-1 is grey/no contrast; 1 is maximum contrast; 0 is "normal"/unchanged).
</para>
</section>
</section>

<section>
<title>Tracking and Alignment Settings</title>
<para>
These options control the tracking of the mouse cursor.
</para>

<section>
<title>Mouse pointer</title>
<para>
Choose from the following options:
</para>

<section>
<title>Centered</title>
<para>
Keeps the mouse pointer at the center of the screen whenever possible. This is the default.
</para>
</section>

<section>
<title>Proportional</title>
<para>
Positions the mouse pointer in the zoom window relative to its actual, unmagnified position.  For instance, if the mouse pointer is 25% away from the left edge of the desktop, <application>Orca</application> positions the magnified mouse pointer 25% from the left edge of the zoom window.
</para>
</section>

<section>
<title>Push</title>
<para>
Moves the zoomer window the least amount necessary to keep the mouse pointer on the screen.
</para>
</section>

<section>
<title>None</title>
<para>
Moving the mouse pointer has no impact on what the zoomer window displays.
</para>
</section>
</section>

<section>
<title>Pointer follows zoomer</title>
<para>
This option is enabled by default. If the mouse pointer is not on the screen when you initially move the mouse, it will be moved into the zoomer so that you can continue to see what you were working on. If your preferred mouse tracking mode is centered, the pointer will be moved to the center; otherwise it will be moved to the item with focus.
</para>
</section>

<section>
<title>Control and menu item</title>
<para>
These options control additional behavior of the magnifier.
</para>

<section>
<title>Centered</title>
<para>
When navigating via keyboard, keep the focused dialog box control or menu item at the center of the screen whenever possible.
</para>
</section>

<section>
<title>Push</title>
<para>
When navigating via keyboard, move the zoomer window the least amount necessary to display the focused dialog box control or menu item.  This is the default.
</para>
</section>

<section>
<title>None</title>
<para>
Using the keyboard to navigate among dialog box controls and menu items will have no impact on what the zoomer window displays.
</para>
</section>

<section>
<title>Pointer follows focus</title>
<para>
If this option is enabled, the mouse pointer will follow you as you arrow through menu items and move among controls in dialog boxes. This option is disabled by default.
</para>
</section>
</section>

<section>
<title>Text cursor</title>
<para>
These options control how the text cursor behaves.
</para>

<section>
<title>Centered</title>
<para>
As the text cursor moves, keep it at the center of the screen whenever possible.
</para>
</section>

<section>
<title>Push</title>
<para>
As the text cursor moves, move the zoomer window the least amount necessary to display it. This is the default.
</para>
</section>

<section>
<title>None</title>
<para>
Moving the text cursor will have no impact on what the zoomer window displays.
</para>
</section>

<section>
<title>Edge margin</title>
<para>
The edge margin is how close the caret should be allowed to get to the edge of the screen before it's time to "push" the zoomer window. The margin can range from 0 to 50%, with 50% being the equivalent of choosing centering.  The default value is 0.
</para>
<note>
<para>
This option is only available if "Push" is your text cursor tracking mode.
</para>
</note>
</section>
</section>
</section>

<section>
<title>Advanced Settings</title>
<para>
If you press the Advanced Settings button located near the bottom of the Magnifier page, the following dialog will appear:
</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/Magnifier_Advanced.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Magnifier - Advanced Settings
</phrase>
</textobject>
</mediaobject>
</screenshot>

<section>
<title>Smoothing</title>
<para>
Bilinear or none.
</para>
</section>

<section>
<title>Brightness</title>
<para>
Red, Green, Blue: Individual controls for choosing customized brightness levels.  Choosing different brightness levels for each color allows you to create the color scheme that works best for you.
</para>
</section>

<section>
<title>Contrast</title>
<para>
Red, Green, Blue: Individual controls for choosing customized contrast levels. While not as significant as changes to brightness, choosing different contrast levels for each color helps you to create the color scheme that works best for you.
</para>
</section>

<section>
<title>Color Filtering</title>
<para>
Allows you to pick one of the colorblind filters available through libcolorblind.
</para>
<note>
<para>
In order to take advantage of this feature you will need to install libcolorblind and then rebuild gnome-mag.
</para>
</note>
</section>

<section>
<title>Multi-Monitor Settings - Source Display</title>
<para>
X Window System DISPLAY of what should be magnified. Written in the form ":0.x" where x is the number of the screen whose contents should be magnified.
</para>
</section>

<section>
<title>Multi-Monitor Settings - Target Display</title>
<para>
X Window System DISPLAY of where to put the zoomer window. Written in the form ":0.y" where y is the number of the screen where the zoomer window should appear.
</para>
</section>
</section>
</section>

<section id="orca-keybindings-page">
<title>Key Bindings Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/KeyBindings_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Key Bindings Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The key bindings page allows you to examine and modify the key bindings for <application>Orca</application>.
</para>

<section>
<title>Orca Modifier Key(s)</title>
<para>
The first control on the key bindings page allows you to examine which key (or keys) acts as the "<application>Orca</application> modifier." The <application>Orca</application> modifier is the key that you press and hold in conjunction with other keys to give commands to <application>Orca</application>. For  desktop keyboards, the Orca modifier defaults to <keycap>Insert</keycap>. For laptop keyboards, the <application>Orca</application> modifier defaults to the <keycap>Caps Lock</keycap> key.  See the Desktop Keyboard Layout (<xref linkend="orca-desktop-keys"/>) and Laptop Keyboard Layout (<xref linkend="orca-laptop-keys"/>) sections for the default values.
</para>
<note>
<para>
You cannot modify the <application>Orca</application> modifier key(s) using the Configuration GUI at this time.
</para>
</note>
</section>

<section>
<title>Key Bindings Table</title>
<para>
The key bindings table provides a list of <application>Orca</application> operations and the keys that are bound to them.
</para>
<para>
The "Function" column header is a description of the <application>Orca</application> operation to be performed.
</para>
<para>
The "Key Binding" header is the primary way to invoke the function from the keyboard. Note that the function description may include the word "Orca". This indicates that the <application>Orca</application> modifier key should be held down along with the other keys.
</para>
<para>
The "Alternate" header provides an alternate mechanism for invoking the function from the keyboard.
</para>
<para>
To modify either the "Key Binding" or the "Alternate" bindings, arrow to the cell and press <keycap>Return</keycap>. Then, press a key combination and press <keycap>Return</keycap> to confirm the new combination. When you do so, the new keystroke will be saved and the check box in the last column (the "Modified" column) will indicate that the key binding has been modified.
</para>
<para>
To undo a modified keybinding, merely arrow to the modified column, uncheck the checkbox, and press the "Apply" button <keycombo><keycap>Alt</keycap><keycap>A</keycap></keycombo>.
</para>
<para>
Beneath the list of <application>Orca</application> keybindings, you will find a group of "unbound" commands:
</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/KeyBindings_Tab_Unbound.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Key Bindings Page showing the 'unbound' group of commands
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
These are commands which we feel will be very useful for some users, but not needed by most users. Rather than "use up" a keystroke for such commands, we have left them unassigned.  You can assign a keystroke to any of these unbound commands by following the procedure outlined above. In addition, you can unbind any bound command in a similar fashion: press <keycap>Return</keycap> to edit the keybinding, and when prompted for the new keybinding, press <keycap>Delete</keycap> or <keycap>Backspace</keycap>. You will be told that the key binding has been removed. Press <keycap>Return</keycap> to confirm.
</para>
</section>
</section>

<section>
<title>Pronunciation Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/Pronunciation_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Pronunciation Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
Sometimes your speech synthesizer just doesn't say the right thing for a given string. You might prefer to hear "laughing out loud" rather than "LOL." Or there may be a name or a technical term which the synthesizer mispronounces. The pronunciation page is where you can add, edit, and delete <application>Orca</application>'s pronunciation dictionary entries. Because the pronunciation page is also part of the application-specific settings dialog that's started when you give a particular application focus and type <keycombo><keycap>Orca_Modifier</keycap><keycap>Ctrl</keycap><keycap>Space</keycap></keycombo>, you can customize your entries on an as-needed basis for each application you use.
</para>

<section>
<title>Add a new dictionary entry</title>
<procedure>
<step>
<para>
Press the <guibutton>New Entry</guibutton> button (<keycombo><keycap>Alt</keycap><keycap>N</keycap></keycombo>).
</para>
</step>
<step>
<para>
Type the text of the new entry and press <keycap>Return</keycap> to finish editing the actual string.
</para>
</step>
<step>
<para>
Move to the Replacement String column and press <keycap>Return</keycap> to begin editing.
</para>
</step>
<step>
<para>
Type the text that you would like to have spoken instead and press <keycap>Return</keycap> to finish editing the replacement string.
</para>
</step>
</procedure>  
</section>

<section>
<title>Edit an existing dictionary entry</title>
<procedure>
<step>
<para>
Move to the cell you wish to edit and press <keycap>Return</keycap> to begin editing.
</para>
</step>
<step>
<para>
Make your changes and then press <keycap>Return</keycap> to finish editing.
</para>
</step>
</procedure>  
</section>

<section>
<title>Delete an existing dictionary entry</title>
<procedure>
<step>
<para>
Move to the entry you wish to delete.
</para>
</step>
<step>
<para>
Press the Delete button or <keycombo><keycap>Alt</keycap><keycap>D</keycap></keycombo>.
</para>
</step>
</procedure>  
</section>
</section>

<section>
<title>Text Attributes Page</title>
<screenshot>
<mediaobject>
<imageobject>
<imagedata 
fileref="figures/TextAttributes_Tab.png" 
format="PNG"/>
</imageobject>
<textobject>
<phrase>
<application>Orca</application> GUI Configuration - Text Attributes Page
</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
<application>Orca</application> will speak known text attribute information about an object when you press <keycombo><keycap>Insert</keycap><keycap>F</keycap></keycombo> (desktop layout) or <keycombo><keycap>Caps_Lock</keycap><keycap>F</keycap></keycombo> (laptop layout). Because the number of text attributes is large, and not everyone cares about every attribute, the "Text Attributes" tab of the configuration
GUI allows you to customize which text attributes <application>Orca</application> will present.
</para>
<para>
On this tab is a text attribute list, where each row consists of four columns:
</para>
<itemizedlist>
<listitem>
<para>
The name of the text attribute.
</para>
</listitem>
<listitem>
<para>
A checkbox which the user can set to indicate whether this text attribute should be spoken or not.
</para>
</listitem>
<listitem>
<para>
A checkbox which the user can set to indicate whether this text attribute should be "underlined" on the braille display.
</para>
</listitem>
<listitem>
<para>
An editable "Present unless" string value. By default, not all text attributes will have this set. If present, what it means (assuming the user wants this text attribute presented) is that the value of the attribute will only be presented if it is <emphasis>not</emphasis> this value.
</para>
<para>
For example, by default the "underline" text attribute has a value of "none." If the user has this attribute checked and the user types
<keycombo><keycap>Orca_Modifier</keycap><keycap>F</keycap></keycombo> and the text in question is not underlined, then this
attribute is not spoken. If you always want this attribute to be spoken irrespective of whether the text is underlined, then the
attribute should be checked and the "Present unless" value cleared.
</para>
</listitem>
<listitem>
<para>
There is also a <guibutton>Reset</guibutton> button (<keycombo><keycap>Alt</keycap><keycap>R</keycap></keycombo>) which will set the list values back to their initial state when the dialog was first displayed.
</para>
</listitem>
</itemizedlist>
<para>
When you initially display the text attribute pane, all your checked attributes are put at the top of the list. They are given in the order that they will be spoken and brailled.
</para>
<para>
If you decide to check others or adjust the order, there are four buttons to help you do this:
</para>
<itemizedlist>
<listitem>
<para>
<guibutton>Move to top</guibutton> (<keycombo><keycap>Alt</keycap><keycap>T</keycap></keycombo>) - moves the selected attribute to the top of the list.
</para>
</listitem>
<listitem>
<para>
<guibutton>Move up one</guibutton> (<keycombo><keycap>Alt</keycap><keycap>U</keycap></keycombo>) - moves the selected attribute up one row.
</para>
</listitem>
<listitem>
<para>
<guibutton>Move down one</guibutton> (<keycombo><keycap>Alt</keycap><keycap>D</keycap></keycombo>) - moves the selected attribute down one row.
</para>
</listitem>
<listitem>
<para>
<guibutton>Move to bottom</guibutton> (<keycombo><keycap>Alt</keycap><keycap>B</keycap></keycombo>) - moves the selected attribute to the bottom of the list.
</para>
</listitem>
</itemizedlist>
<para>
Beneath these push buttons is the Braille Indicator group of radio buttons. Here you can select the cell or cells to be used to indicate text which has at least one of the specified attributes. Your choices are:
</para>
<itemizedlist>
<listitem>
<para>
None (the default)
</para>
</listitem>
<listitem>
<para>
Dot 7
</para>
</listitem>
<listitem>
<para>
Dot 8
</para>
</listitem>
<listitem>
<para>
Dots 7 and 8
</para>
</listitem>
</itemizedlist>
<para>
Text attributes can also be set on an individual application basis. The text attribute pane is also part of the application-specific settings dialog that's started when you give a particular application focus and type <keycombo><keycap>Orca_Modifier</keycap><keycap>Ctrl</keycap><keycap>Space</keycap></keycombo>.
</para>
</section>
</section>

<section>
<title>Orca Keyboard Commands</title>
<para>
You can get a complete list of available keyboard commands by visiting the <guilabel>Key Bindings</guilabel> page of the <application>Orca</application> Configuration GUI (<xref linkend="orca-keybindings-page"/>). To bring up the <application>Orca</application> Configuration GUI, press <keycombo><keycap>Orca_Modifier</keycap><keycap>Space</keycap></keycombo>, where <userinput>Orca_Modifier</userinput> is the <keycap>Insert</keycap> key for the <link linkend="orca-desktop-keys">desktop layout</link> and the <keycap>Caps_Lock</keycap> key for the <link linkend="orca-laptop-keys">laptop layout</link>. Note that you can also enter <application>Orca</application>'s "learn mode" while running <application>Orca</application> by pressing <keycombo><keycap>Orca_Modifier</keycap><keycap>H</keycap></keycombo>. When in learn mode, <application>Orca</application> will intercept all keyboard and braille input events and tell you what the effect would be.  To exit learn mode, press the <keycap>Escape</keycap> key.
</para>
<note>
<para>
<application>Orca</application> provides additional commands for some applications, such as <application>Firefox</application>.  To get the list of additional commands for an application, press <keycombo><keycap>Ctrl</keycap><keycap>Orca_Modifier</keycap><keycap>Space</keycap></keycombo> when that application has focus. This will bring up the <application>Orca</application> Configuration GUI in the "application-specific" state, and the additional commands will appear in the <guilabel>Key Bindings</guilabel> page.
</para>
<para>
The GNOME Desktop itself also has <ulink url="http://library.gnome.org/users/user-guide/stable/shortcuts-global.html.en">built in keyboard commands</ulink> to control the desktop and its applications.
</para>
<para>
WARNING: the MouseKeys functionality of AccessX can interfere with the <application>Orca</application> modifier key (see <ulink url="http://bugzilla.gnome.org/show_bug.cgi?id=548169">bug 548169</ulink>), resulting in odd behavior. In particular, MouseKeys uses the <keycap>KP_Insert</keycap> key to emulate a mouse button press. When enabled, MouseKeys can conflict with <keycap>KP_Insert</keycap> as the <application>Orca</application> modifier, resulting in what appears to be a stuck <application>Orca</application> modifier key.  As an alternative, you can use the <link linkend="orca-laptop-keys">laptop key bindings</link>, which avoids the keypad for <application>Orca</application> commands. If you accidentally enabled MouseKeys, you can disable it via the <application>gnome-keyboard-properties</application> application.
</para>
</note>

<section id="orca-desktop-keys">
<title>Desktop Layout</title>
<para>
Following is a list of common <application>Orca</application> keyboard commands for desktop keyboards arranged by category:
</para>

<section>
<title>Flat review commands</title>
<itemizedlist>
<listitem>
<para>
<keycap>Numpad-7</keycap> - move the flat review cursor to the previous line and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-8</keycap> - read the current line.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-9</keycap> - move the flat review cursor to the next line and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-4</keycap> - move the flat review cursor to the previous word and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-5</keycap> - read the current word.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-6</keycap> - move the flat review cursor to the next word and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-1</keycap> - move the flat review cursor to the previous character and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-2</keycap> - read the current character.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-3</keycap> - move the flat review cursor to the next character and read it.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-slash</keycap> - perform a left mouse click at the location of the flat review cursor.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-star</keycap> - perform a right mouse click at the location of the flat review cursor.
</para>
</listitem>
<listitem>
<para>
<keycap>Numpad-minus</keycap> - toggle between flat review and focus tracking mode.
</para>
</listitem>
</itemizedlist>
<note>
<para>
The above commands apply when working with objects as well as when working with text.  For example, if the flat review cursor were positioned on a menu bar, pressing the "read current line" command would speak the names of all visible menus. Similarly, pressing the "read next word" command would speak the object to the right of the flat review cursor on the same line, or move flat review to the next line if no more objects were found.
</para>
</note>
</section>

<section>
<title>Bookmark commands</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Insert</keycap><keycap>[1-6]</keycap></keycombo> - assign a bookmark to a numbered slot. If a bookmark already exists in the slot it will be replaced with the new one. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>[1-6]</keycap></keycombo> - go to the position pointed to by the bookmark bound to this numbered slot.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Shift</keycap><keycap>[1-6]</keycap></keycombo> -  "Where am I" information for this bookmark relative to the current pointer location.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>B</keycap></keycombo> and <keycombo><keycap>Insert</keycap><keycap>Shift</keycap><keycap>B</keycap></keycombo> - move between the given bookmarks for the given application or page. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Insert</keycap><keycap>B</keycap></keycombo> - save the defined bookmarks for the current application or page.
</para>
</listitem>
</itemizedlist>
</section>

<section>
<title>Miscellaneous functions</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Numpad</keycap><keycap>Plus</keycap></keycombo> - "say all" command; reads from the current position of the caret to the end of the document. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Numpad</keycap><keycap>Enter</keycap></keycombo> - "Where am I" command; speaks information such as the title of the current application window, as well as the name of the control that currently has focus. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>H</keycap></keycombo> - enter into <application>Orca</application>'s "learn mode"; press <keycap>Escape</keycap> to exit. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>F</keycap></keycombo> - speak font and attribute information for the current character. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>Space</keycap></keycombo> - Launch the <application>Orca</application> Configuration dialog. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>Ctrl</keycap><keycap>Space</keycap></keycombo> - reload user settings and reinitialize services as necessary. Also launches the <application>Orca</application> Configuration dialog for the current application.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>S</keycap></keycombo> - toggle speech on and off.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>F11</keycap></keycombo> - toggle the reading of tables, either by single cell or whole row.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Insert</keycap><keycap>Q</keycap></keycombo> - quit <application>Orca</application>.
</para>
</listitem>
</itemizedlist>
</section>

<section>
<title>Commands for debugging</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Insert</keycap><keycap>Home</keycap></keycombo> - report information on the currently active script. 
</para>
</listitem>
</itemizedlist>
<note>
<para>
In order for the next three commands to be of use, <application>Orca</application> needs to be started from a virtual console or via gnome-terminal. Output is sent to the console only (i.e., it is not sent to speech or braille).
</para>
</note>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Insert</keycap><keycap>End</keycap></keycombo> - print a debug listing of all known applications to the console where <application>Orca</application> is running. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Insert</keycap><keycap>Page_Up</keycap></keycombo> - print debug information about the ancestry of the object with focus. 
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Insert</keycap><keycap>Page_Down</keycap></keycombo> - print debug information about the hierarchy of the application with focus. 
</para>
</listitem>
</itemizedlist>
</section>
</section>

<section id="orca-laptop-keys">
<title>Laptop Layout</title>
<para>
Following is a list of common <application>Orca</application> keyboard commands for laptop keyboards arranged by category:
</para>

<section>
<title>Flat review commands</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>U</keycap></keycombo> - move the flat review cursor to the previous line and read it.
Double-click to move flat review to the top of the current window.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>I</keycap></keycombo> - read the current line.
Double-click to read the current line along with formatting and capitalization details.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>O</keycap></keycombo> - move the flat review cursor to the next line and read it. Double- click to move flat review to the bottom of the current window.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>J</keycap></keycombo> - move the flat review cursor to the previous word and read it.
Double-click to move flat review to the word above the current word.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>K</keycap></keycombo> - read the current word.
Double-click to spell the word. Triple-click  to hear the word spelled phonetically.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>L</keycap></keycombo> - move the flat review cursor to the next word and read it. Double- click to move flat review to the word below the current word.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>M</keycap></keycombo> - move the flat review cursor to the previous character and read it.
Double-click to move flat review to the end of the current line.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Comma</keycap></keycombo> - read the current character. Double-click to pronounce the character phonetically if it is a letter.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Period</keycap></keycombo> - move the flat review cursor to the next character and read it.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>7</keycap></keycombo> - perform a left mouse click at the location of the flat review cursor.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>8</keycap></keycombo> - perform a right mouse click at the location of the flat review cursor.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>p</keycap></keycombo> - toggle between flat review and focus tracking mode.
</para>
</listitem>
</itemizedlist>
<note>
<para>
The above commands apply when working with objects as well as when working with text.  For example, if the flat review cursor were positioned on a menu bar, pressing the "read current line" command would speak the names of all visible menus. Similarly, pressing the "read next word" command would speak the object to the right of the flat review cursor on the same line, or move flat review to the next line if no more objects were found.
</para>
</note>
</section>

<section>
<title>Bookmark commands</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Caps_Lock</keycap><keycap>[1-6]</keycap></keycombo> - add a bookmark to the numbered slot. If a bookmark already exists for the slot it will be replaced with the new one.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>[1-6]</keycap></keycombo> - go to the position pointed to by the bookmark bound to this numbered slot.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Shift</keycap><keycap>[1-6]</keycap></keycombo> - "Where am I" information for this bookmark relative to the current pointer location.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>B</keycap></keycombo>and <keycombo><keycap>Caps_Lock</keycap><keycap>Shift</keycap><keycap>B</keycap></keycombo> - move between the given bookmarks for the given application or page.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Alt</keycap><keycap>Caps_Lock</keycap><keycap>B</keycap></keycombo> - save the defined bookmarks for the current application or page.
</para>
</listitem>
</itemizedlist>
</section>

<section>
<title>Miscellaneous functions</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Semicolon</keycap></keycombo> - "Say all" command; reads from the current position of the caret to the end of the document.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Enter</keycap></keycombo> - "Where am I" command; speaks information such as the title of the current application window, as well as the name of the control that currently has focus.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>H</keycap></keycombo> - enter learn mode (press <keycap>Escape</keycap> to exit).
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>F</keycap></keycombo> - speak font and attribute information for the current character.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Space</keycap></keycombo> - launch the <application>Orca</application> Configuration dialog.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Ctrl</keycap><keycap>Space</keycap></keycombo> - reload user settings and reinitialize services as necessary; also  launches the <application>Orca</application> Configuration dialog for the current application.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>S</keycap></keycombo> - toggle speech on and off.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>F11</keycap></keycombo> - toggle the reading of tables, either by single cell or whole row.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Q</keycap></keycombo> - quit <application>Orca</application>.
</para>
</listitem>
</itemizedlist>
</section>

<section>
<title>Commands for debugging</title>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>Home</keycap></keycombo> - report information on the currently active script.
</para>
</listitem>
</itemizedlist>
<note>
<para>
In order for the next three commands to be of use, <application>Orca</application> needs to be started from a virtual console or via <application>gnome-terminal</application>. Output is sent to the console only (i.e., 
it is not sent to speech or braille).
</para>
</note>
<itemizedlist>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>End</keycap></keycombo> - prints a debug listing of all known applications to the console where <application>Orca</application> is running.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>Page_Up</keycap></keycombo> - prints debug information about the ancestry of the object with focus.
</para>
</listitem>
<listitem>
<para>
<keycombo><keycap>Caps_Lock</keycap><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>Page_Down</keycap></keycombo> - prints debug information about the object hierarchy of the application with focus.
</para>
</listitem>
</itemizedlist>
</section>
</section>

</section>
<section>
<title>Application-Specific Information</title>
<section>
<title>Accessible Applications</title>
<para>
<application>Orca</application> is designed to work with applications and toolkits that support the Assistive Technology Service Provider Interface (AT-SPI). This includes the GNOME Desktop and its bundled applications: OpenOffice, Firefox, and the Java platform. Some applications work better than others, however, and the <application>Orca</application> community continually works to provide superior access to more and more applications.
</para>
</section>

<!--
<section>
<title>Using Adobe's Acrobat Reader</title>
<para>
We are currently working on a script for Adobe's Acrobat Reader, and the initial version has been contributed to <application>Orca</application> v2.17.5. Note that there is still work to do, and we are very encouraged by Adobe's commitment to accessibility.
</para>

<section>
<title>Installation</title>
<para>
If you get Adobe Acrobat Reader directly from the <ulink url='http://www.adobe.com/products/acrobat/readstep2.html'>Adobe site</ulink>, you may find that the software will not launch. If launched from the Applications menu, it may appear that nothing has happened, or if launched from a terminal window you may receive a long series of syntax error messages. Should this occur, you will need to edit your /usr/bin/acroread file as described in this <ulink url='http://ubuntuforums.org/showthread.php?t=233514'>Ubuntu forum thread</ulink>.
</para>
<para>
If you instead choose to install Acrobat Reader from your distribution's packages, be sure to install both <application>acroread</application> and <application>acroread-plugins</application>. Without the plugins package, you will not have the access to the "Reading" category in the <menuchoice>
<guimenuitem>Edit-</guimenuitem>
<guimenuitem>Preferences</guimenuitem>
</menuchoice> dialog.
</para>
<para>
Note: If you use Ubuntu and cannot locate the
<application>acroread</application> package, you will likely need to edit your /etc/apt/sources.list to include the 'multiverse' repository. Then run <userinput>apt-get update</userinput>. Having done so, you should then be able to install both <application>acroread</application> and <application>acroread-plugins</application>.
</para>
</section>

<section>
<title>Enabling Accessibility and Caret Navigation</title>
<para>
Once you've installed Reader, you need to enable accessibility:
</para>
<orderedlist numeration='arabic'>
<listitem>
<para>
In the "Accessibility" tab of the 
<menuchoice>
<guimenuitem>Edit-</guimenuitem>
<guimenuitem>Preferences</guimenuitem>
</menuchoice> dialog, make sure 
<guilabel>Always display the keyboard selection cursor</guilabel> (<keycombo>
<keycap>Alt</keycap><keycap>D</keycap>
</keycombo>) is checked.
</para>
</listitem>
<listitem>
<para>
In the "Reading" tab of the 
<menuchoice>
<guimenuitem>Edit-</guimenuitem>
<guimenuitem>Preferences</guimenuitem>
</menuchoice> dialog, make sure
<guilabel>Enable Document Accessibility
</guilabel> ((<keycombo><keycap>Alt</keycap>
<keycap>E</keycap></keycombo>) is checked.
</para>
</listitem>
</orderedlist>
</section>

<section>
<title>Working with Untagged Documents</title>
<para>
When you open an untagged document, you will be presented with a dialog box asking you to specify the reading order and the reading mode options. The default reading order is 
<guilabel>Infer reading order from document
</guilabel>. This setting works well for most documents.
</para>
<para>
The default reading mode will vary depending on the length of the document; for short documents, the default is <guilabel>Read the entire document</guilabel>; for long documents the default is <guilabel>Read currently visible pages only</guilabel>. <application>Orca</application> tends to work better when <guilabel>Read the entire document</guilabel> is selected.
</para>
<para>
If you find that a document seems to be missing parts of the text, try changing the reading options. To do so, get into the Document menu and select <guilabel>Change Accessibility Reading Options...</guilabel> or use the shortcut <keycombo><keycap>Ctrl</keycap><keycap>Shift</keycap><keycap>5</keycap></keycombo>.
</para>
</section>

<section>
<title>Page Layout</title>
<para>
The best page layout for reading a document with <application>Orca</application> is <guilabel>Single Page</guilabel>. When <guilabel>Continuous</guilabel> is chosen, moving focus to text as the page is scrolling 
can cause that text not to be read. You can change the page layout to <guilabel>Single Page</guilabel> by getting into the View menu and selecting the Page Layout submenu.
</para>
</section>

<section>
<title>Navigating Tables</title>
<para>
As far as we know there isn't currently a whole lot of keyboard support for tables in
<application>Acrobat Reader</application>. We hope Adobe will remedy this soon.
</para>
<para>
Basically, there are the arrow keys. Their behavior is to move you first within the cell with focus, then to the next cell with data in it. Note that currently, Up and Down Arrow do not seem to move you vertically among cells - at least that has been the experience 
with the tables we have tried. Instead, Up and Down seem to move you horizontally until you run out of cells on the current row.
</para>
</section>
</section>
-->

<section>
<title>Making Application-Specific Settings</title>
<para>
To customize the settings for a particular application, you will first need to run that application. Make sure the application has focus, then press <keycombo><keycap>Orca_Modifier</keycap>
<keycap>Ctrl</keycap><keycap>Space</keycap>
</keycombo> (by default, this will be 
<keycombo><keycap>Insert</keycap><keycap>Ctrl</keycap>
<keycap>Space</keycap></keycombo> for the Desktop keyboard layout).
</para>
<para>
This brings up a tabbed dialog window very similar to the <application>Orca</application> configuration dialog, but with the following differences:
</para>
<orderedlist numeration='arabic'>
<listitem>
<para>
There is no initial General pane.
</para>
</listitem>
<listitem>
<para>
The Speech System and Speech Synthesizer combo
boxes on the Speech pane will be grayed out (made inactive).
</para>
</listitem>
<listitem>
<para>
Any existing application-specific key bindings will appear at the top of the list on the Key Bindings pane.
</para>
</listitem>
<listitem>
<para>
There may be a new application-specific settings pane at the end of the set of tabbed panes. Note that pressing the End key from the tab list will get you directly to the right-most tab.
</para>
</listitem>
</orderedlist>
<para>
Adjust your application-specific settings in the same way you set your general <application>Orca</application> preferences.
For example, you may have Key Echo disabled generally in <application>Orca</application> but would like to specifically have it enabled for the <application>gcalctool</application> (GNOME Calculator) application. Here's where you could easily set that.
</para>
<para>
When you have your application settings customized the way you want, press the <guilabel>OK</guilabel> button. These settings will be written to your 
<userinput>~/.orca/app-settings</userinput> directory in a file called 
<userinput>&lt;APPNAME&gt;.py</userinput>, where <userinput>&lt;APPNAME&gt;</userinput> is the name of the application.
</para>
<para>
These files are automatically written by <application>Orca</application>. The contents of the file will be overwritten each time you change your application settings for that
application.
</para>
<para>
If you want to have some extra application-specific settings or code that you don't want to lose, then you should put it in a file called <userinput>~/.orca/app-settings/&lt;APPNAME&gt;-customizations.py</userinput>. This file will be automatically read when the settings for the 
<userinput>&lt;APPNAME&gt;</userinput> application are loaded.
</para>
<para>
Note that this is an advanced feature that we don't expect many people to use. It's just there if you really want it.
</para>
<para>
There is currently one known bug (some people would call it a feature) that we are trying to track down and fix:
</para>
<note>
<para>
If you adjust one or more application-specific key bindings, the new values will not take effect until you've pressed the <guilabel>OK</guilabel> button. The work-around is to either restart <application>Orca</application>, or Alt-Tab 
away to some other application and then Alt-Tab back to the one that you've just changed the key bindings for.
</para>
</note>
</section>
</section>

<section>
<title>Braille</title>
<para>
<application>Orca</application> uses 
<ulink url='http://mielke.cc/brltty/'>BrlTTY</ulink> for braille support. On Linux systems, BrlTTY is used to access the text mode console content. On a typical braille-enabled installation of Linux, BrlTTY is already running and providing access to the text consoles. When Orca starts, it connects to BrlTTY. If you switch from a text console to your X Windows session, your braille display will automatically follow and display the content that Orca is presenting to you.
</para>
<para>
<application>Orca</application> attempts to work with various releases of BrlTTY. Orca currently works best with BrlTTY v3.8 or better and also works well with BrlTTY v3.7.2. The remainder of this document provides information related to using <application>Orca</application> with <application>BrlTTY</application> 3.8.
</para>

<para>
Below are descriptions of the necessary tasks to install/setup BrlTTY in Ubuntu and Solaris. For both, you need to first obtain 
<ulink url='http://mielke.cc/brltty/releases/
brltty-3.8.tar.gz'>brltty-3.8.tar.gz</ulink> from the BrlTTY site.
</para>

<section>
<title>BrlTTY 3.8 on Ubuntu</title>
<para>
First, configure your build environment to build BrlTTY. Much of this setup is done for you automatically in the Ubuntu distribution with products such as G++ already present. In addition, <emphasis>you must</emphasis> 
also install tcl, Pyrex, and the Python developer environment. To do this, execute the following commands as <userinput>root</userinput>:
</para>
<para></para>
<screen>
<![CDATA[apt-get build-dep brltty
apt-get install tcl8.4 python-pyrex python-dev
]]>
</screen>
<para>
Then, when you build BrlTTY, avoid configuring the package with --prefix=/usr. Use the standard procedure instead, executing the following commands as <userinput>root</userinput>:
</para>
<para></para>
<screen>
<![CDATA[gunzip -c brltty-3.8.tar.gz | tar xvf -
cd brltty-3.8
./autogen
./configure
make
make install
]]>
</screen>
<para>
Run BrlTTY as <userinput>root</userinput>:
</para>
<para></para>
<screen>
<![CDATA[/bin/brltty -bauto -d/dev/ttyUSB0
]]>
</screen>
<para>
If you want, you can remove the existing 
<userinput>/sbin/brltty</userinput> and replace it with the <userinput>/bin/brltty</userinput>, either by copying the <userinput>/bin/brltty</userinput> to <userinput>/sbin/brltty</userinput> or just by making a 
symbolic link. Do so at your own risk.
</para>
<para />
</section>
</section>

<section>
<title>Troubleshooting</title>
<section>
<title>My desktop has stopped responding. What do I do?
</title>
<para>
Press <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> or <keycombo><keycap>Meta</keycap><keycap>R</keycap></keycombo> to open the Run dialog and restart <application>Orca</application> by running a new instance: type <userinput>orca</userinput> and press <keycap>Enter</keycap>. This will force any existing <application>Orca</application> processes to exit and will then restart <application>Orca</application>. This 
sometimes has the effect of unhanging the desktop (which is usually due to an ill-behaved application).
</para>
<para>
If you cannot get to a terminal window, try 
pressing <keycombo><keycap>Ctrl</keycap>
<keycap>Alt</keycap><keycap>Backspace</keycap>
</keycombo>: shut down the X Window System server. This should return you to the login screen.
</para>
</section>
</section>
</section>
</chapter>