aboutsummaryrefslogtreecommitdiffstats
path: root/Xlibscm.html
blob: adafca45b40401d8a57064407912da9308c22f4b (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
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- This manual documents the X Interface for SCM Language (version
5e5, February 2008).

Copyright C 1999 Free Software Foundation, Inc.

Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.

Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.

Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation approved
by the author.

 -->
<!-- Created on March 3, 2010 by texi2html 1.82
texi2html was written by: 
            Lionel Cons <Lionel.Cons@cern.ch> (original author)
            Karl Berry  <karl@freefriends.org>
            Olaf Bachmann <obachman@mathematik.uni-kl.de>
            and many others.
Maintained by: Many creative people.
Send bugs and suggestions to <texi2html-bug@nongnu.org>
-->
<head>
<title>XlibScm</title>

<meta name="description" content="XlibScm">
<meta name="keywords" content="XlibScm">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.82">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.roman {font-family:serif; font-weight:normal;}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">

<a name="Top"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="XlibScm-2"></a>
<h1 class="settitle">XlibScm</h1>

<p>This manual documents the X Interface for SCM Language (version
5e5, February 2008).
</p>
<p>Copyright &copy; 1999 Free Software Foundation, Inc.
</p>
<blockquote><p>Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice
are preserved on all copies.
</p>
<p>Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the entire
resulting derived work is distributed under the terms of a permission
notice identical to this one.
</p>
<p>Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation approved
by the author.
</p></blockquote>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#XlibScm">1. XlibScm</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                     
</td></tr>
<tr><td align="left" valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         
</td></tr>
<tr><td align="left" valign="top"><a href="#Drawables">3. Drawables</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                   
</td></tr>
<tr><td align="left" valign="top"><a href="#Graphics-Context">4. Graphics Context</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">            
</td></tr>
<tr><td align="left" valign="top"><a href="#Cursor">5. Cursor</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                      
</td></tr>
<tr><td align="left" valign="top"><a href="#Colormap">6. Colormap</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                    
</td></tr>
<tr><td align="left" valign="top"><a href="#Rendering">7. Rendering</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                   
</td></tr>
<tr><td align="left" valign="top"><a href="#Images">8. Images</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                      
</td></tr>
<tr><td align="left" valign="top"><a href="#Event">9. Event</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                       
</td></tr>
<tr><td align="left" valign="top"><a href="#Indexes">Indexes</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                     
</td></tr>
</table>

<hr size="1">
<a name="XlibScm"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Display-and-Screens" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Display-and-Screens" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="XlibScm-1"></a>
<h1 class="chapter">1. XlibScm</h1>

<p><em>XlibScm</em> is a SCM interface to <em>X</em>.
<a name="index-X"></a>
The
&lt;A HREF=&quot;http://www.x.org/&quot;&gt;
X Window System
&lt;/A&gt;
is a network-transparent window system that was
designed at MIT.
&lt;A HREF=&quot;scm_toc.html&quot;&gt;
SCM
&lt;/A&gt;
is a portable Scheme implementation written in C.
The interface can be compiled into SCM or, on those platforms supporting
dynamic linking, compiled separately and loaded with <code>(require
'Xlib)</code>.
<a name="index-Xlib"></a>
</p>

<p>Much of this X documentation is dervied from:
</p>
<p align="center"> Xlib - C Language X Interface
</p><p align="center"> X Consortium Standard
</p><p align="center"> X Version 11, Release 6.3
</p>
<p>The X Window System is a trademark of X Consortium, Inc.
</p>
<p>TekHVC is a trademark of Tektronix, Inc.
</p>


<p>Copyright (C) 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X
Consortium
</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
&quot;Software&quot;), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
</p>
<p>The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
</p>
<p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
</p>
<p>Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization from
the X Consortium.
</p>



<p>Copyright (C) 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
Digital Equipment Corporation
</p>
<p>Portions Copyright (C) 1990, 1991 by Tektronix, Inc.
</p>
<p>Permission to use, copy, modify and distribute this documentation for
any purpose and without fee is hereby granted, provided that the above
copyright notice appears in all copies and that both that copyright
notice and this permission notice appear in all copies, and that the
names of Digital and Tektronix not be used in in advertising or
publicity pertaining to this documentation without specific, written
prior permission.  Digital and Tektronix makes no representations about
the suitability of this documentation for any purpose.  It is provided
&ldquo;as is&rdquo; without express or implied warranty.
</p>

<hr size="6">
<a name="Display-and-Screens"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#XlibScm" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Drawables" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#XlibScm" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Drawables" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Display-and-Screens-1"></a>
<h1 class="chapter">2. Display and Screens</h1>

<dl>
<dt><a name="index-x_003aopen_002ddisplay"></a><u>Function:</u> <b>x:open-display</b><i> display-name</i></dt>
<dd><p><var>display-name</var> Specifies the hardware display name, which determines
the display and communications domain to be used.  On a POSIX-conformant
system, if the display-name is #f, it defaults to the value of the
<var>DISPLAY</var> environment variable.
</p>
<p>The encoding and interpretation of <var>display-name</var> is
implementation-dependent.  On POSIX-conformant systems, the
<var>display-name</var> or <var>DISPLAY</var> environment variable can be a string
in the format:
</p>
<dl>
<dt><a name="index-hostname_003anumber_002escreen_002dnumber"></a><u>Special Form:</u> <b>hostname:number.screen-number</b></dt>
<dd>
<p><var>hostname</var> specifies the name of the host machine on which the
display is physically attached.  Follow the <var>hostname</var> with either a
single colon (:) or a double colon (::).
</p>
<p><var>number</var> specifies the number of the display server on that host
machine.  You may optionally follow this display number with a period
(.).  A single CPU can have more than one display.  Multiple displays
are usually numbered starting with zero.
</p>
<p><var>screen-number</var> specifies the screen to be used on that server.
Multiple screens can be controlled by a single X server.  The
<var>screen-number</var> sets an internal variable that can be accessed by
using the x:default-screen procedure.
</p></dd></dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aclose"></a><u>Function:</u> <b>x:close</b><i> display</i></dt>
<dd><p><var>display</var> specifies the connection to the X server.
</p>
<p>The <code>x:close</code> function closes the connection to the X server for
the <var>display</var> specified and destroys all windows, resource IDs
(Window, Font, Pixmap, Colormap, Cursor, and GContext), or other
resources that the client has created on this display, unless the
close-down mode of the resource has been changed (see
<code>x:set-close-down-mode</code>).  Therefore, these windows, resource IDs,
and other resources should not be used again or an error will be
generated.  Before exiting, you should call <var>x:close-display</var> or
<var>x:flush</var> explicitly so that any pending errors are reported.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aprotocol_002dversion"></a><u>Function:</u> <b>x:protocol-version</b><i> display</i></dt>
<dd><p>Returns cons of the major version number (11) of the X protocol
associated with the connected <var>display</var> and the minor protocol
revision number of the X server.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aserver_002dvendor"></a><u>Function:</u> <b>x:server-vendor</b><i> display</i></dt>
<dd><p>Returns a string that provides some identification of the owner of the X
server implementation.  The contents of the string are
implementation-dependent.
</p></dd></dl>

<dl>
<dt><a name="index-x_003avendor_002drelease"></a><u>Function:</u> <b>x:vendor-release</b><i> display</i></dt>
<dd><p>Returns a number related to a vendor&rsquo;s release of the X server.
</p></dd></dl>


<p>A display consists of one or more <em>Screen</em>s.  Each screen has a
<em>root-window</em>, <em>default-graphics-context</em>, and <em>colormap</em>.
</p>
<dl>
<dt><a name="index-x_003ascreen_002dcount"></a><u>Function:</u> <b>x:screen-count</b><i> display</i></dt>
<dd><p>Returns the number of available screens.
</p></dd></dl>

<dl>
<dt><a name="index-x_003adefault_002dscreen"></a><u>Function:</u> <b>x:default-screen</b><i> display</i></dt>
<dd><p>Returns the default screen number specified by the <code>x:open-display</code>
function.  Use this screen number in applications which will use only a
single screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aroot_002dwindow"></a><u>Function:</u> <b>x:root-window</b><i> display screen-number</i></dt>
<dt><a name="index-x_003aroot_002dwindow-1"></a><u>Function:</u> <b>x:root-window</b><i> display</i></dt>
<dd><p><var>screen-number</var>, if givien, specifies the appropriate screen number
on the host server.  Otherwise the default-screen for <var>display</var> is
used.
</p>
<p>Returns the root window for the specified <var>screen-number</var>.  Use
<code>x:root-window</code> for functions that need a drawable of a particular
screen or for creating top-level windows.
</p>
</dd><dt><a name="index-x_003aroot_002dwindow-2"></a><u>Function:</u> <b>x:root-window</b><i> window</i></dt>
<dd><p>Returns the root window for the specified <var>window</var>&rsquo;s screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003adefault_002dcolormap"></a><u>Function:</u> <b>x:default-colormap</b><i> display screen-number</i></dt>
<dt><a name="index-x_003adefault_002dcolormap-1"></a><u>Function:</u> <b>x:default-colormap</b><i> display</i></dt>
<dt><a name="index-x_003adefault_002dcolormap-2"></a><u>Function:</u> <b>x:default-colormap</b><i> window</i></dt>
<dd><p>Returns the default colormap of the specified screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003adefault_002dccc"></a><u>Function:</u> <b>x:default-ccc</b><i> display screen-number</i></dt>
<dt><a name="index-x_003adefault_002dccc-1"></a><u>Function:</u> <b>x:default-ccc</b><i> display</i></dt>
<dt><a name="index-x_003adefault_002dccc-2"></a><u>Function:</u> <b>x:default-ccc</b><i> window</i></dt>
<dd><p>Returns the default Color-Conversion-Context (ccc) of the specified
screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003adefault_002dgc"></a><u>Function:</u> <b>x:default-gc</b><i> display screen-number</i></dt>
<dt><a name="index-x_003adefault_002dgc-1"></a><u>Function:</u> <b>x:default-gc</b><i> display</i></dt>
<dt><a name="index-x_003adefault_002dgc-2"></a><u>Function:</u> <b>x:default-gc</b><i> window</i></dt>
<dd><p>Returns the default graphics-context of the specified screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002ddepths"></a><u>Function:</u> <b>x:screen-depths</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002ddepths-1"></a><u>Function:</u> <b>x:screen-depths</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002ddepths-2"></a><u>Function:</u> <b>x:screen-depths</b><i> window</i></dt>
<dd><p>Returns an array of depths supported by the specified screen.
</p></dd></dl>

<p>The <em>Visual</em> type describes possible colormap depths and
arrangements.
</p>
<dl>
<dt><a name="index-x_003adefault_002dvisual"></a><u>Function:</u> <b>x:default-visual</b><i> display screen-number</i></dt>
<dt><a name="index-x_003adefault_002dvisual-1"></a><u>Function:</u> <b>x:default-visual</b><i> display</i></dt>
<dt><a name="index-x_003adefault_002dvisual-2"></a><u>Function:</u> <b>x:default-visual</b><i> window</i></dt>
<dd><p>Returns the default Visual type for the specified screen.
</p>
<a name="index-visual"></a>
<a name="index-Visual"></a>
</dd></dl>

<dl>
<dt><a name="index-x_003amake_002dvisual"></a><u>Function:</u> <b>x:make-visual</b><i> display depth class</i></dt>
<dt><a name="index-x_003amake_002dvisual-1"></a><u>Function:</u> <b>x:make-visual</b><i> window depth class</i></dt>
<dd>
<p>The integer <var>depth</var> specifies the number of bits per pixel.
The <var>class</var> argument specifies one of the possible
visual classes for a screen:
</p><ul>
<li> x:Static-Gray
</li><li> x:Static-Color
</li><li> x:True-Color
</li><li> x:Gray-Scale
</li><li> x:Pseudo-Color
</li><li> x:Direct-Color
</li></ul>

<p><code>X:make-visual</code> returns a visual type for the screen specified by
<var>display</var> or <var>window</var> if successful; #f if not.
</p></dd></dl>

<dl>
<dt><a name="index-x_003avisual_002dclass"></a><u>Function:</u> <b>x:visual-class</b><i> visual</i></dt>
<dt><a name="index-x_003avisual_002dclass-1"></a><u>Function:</u> <b>x:visual-class</b><i> screen</i></dt>
<dt><a name="index-x_003avisual_002dclass-2"></a><u>Function:</u> <b>x:visual-class</b><i> display</i></dt>
<dd><p>Returns the (integer) visual class of its argument.
</p></dd></dl>

<dl>
<dt><a name="index-x_003avisual_002dgeometry"></a><u>Function:</u> <b>x:visual-geometry</b><i> visual</i></dt>
<dt><a name="index-x_003avisual_002dgeometry-1"></a><u>Function:</u> <b>x:visual-geometry</b><i> screen</i></dt>
<dt><a name="index-x_003avisual_002dgeometry-2"></a><u>Function:</u> <b>x:visual-geometry</b><i> display</i></dt>
<dd><p>Returns a list of the:
</p><ul>
<li> red_mask
</li><li> green_mask
</li><li> blue_mask
</li><li> colormap_size
</li></ul>
</dd></dl>


<dl>
<dt><a name="index-x_003ascreen_002dcells"></a><u>Function:</u> <b>x:screen-cells</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002dcells-1"></a><u>Function:</u> <b>x:screen-cells</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002dcells-2"></a><u>Function:</u> <b>x:screen-cells</b><i> window</i></dt>
<dd><p>Returns the number of entries in the default colormap.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002ddepth"></a><u>Function:</u> <b>x:screen-depth</b><i> display screen-number</i></dt>
<dd><p>Returns the depth of the root window of the specified screen.
</p></dd><dt><a name="index-x_003ascreen_002ddepth-1"></a><u>Function:</u> <b>x:screen-depth</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002ddepth-2"></a><u>Function:</u> <b>x:screen-depth</b><i> window</i></dt>
<dt><a name="index-x_003ascreen_002ddepth-3"></a><u>Function:</u> <b>x:screen-depth</b><i> visual</i></dt>
<dd><p>Returns the depth of argument.
</p>
<a name="index-depth"></a>
<p>The <em>depth</em> of a window or pixmap is the number of bits per pixel it has.
The <em>depth</em> of a graphics context is the depth of the drawables it can be
used in conjunction with graphics output.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002dsize"></a><u>Function:</u> <b>x:screen-size</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002dsize-1"></a><u>Function:</u> <b>x:screen-size</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002dsize-2"></a><u>Function:</u> <b>x:screen-size</b><i> window</i></dt>
<dd><p>Returns a list of integer height and width of the screen in pixels.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002ddimensions"></a><u>Function:</u> <b>x:screen-dimensions</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002ddimensions-1"></a><u>Function:</u> <b>x:screen-dimensions</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002ddimensions-2"></a><u>Function:</u> <b>x:screen-dimensions</b><i> window</i></dt>
<dd><p>Returns a list of integer height and width of the screen in millimeters.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002dwhite"></a><u>Function:</u> <b>x:screen-white</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002dwhite-1"></a><u>Function:</u> <b>x:screen-white</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002dwhite-2"></a><u>Function:</u> <b>x:screen-white</b><i> window</i></dt>
<dd><p>Returns the white pixel value of the specified screen.
</p></dd></dl>

<dl>
<dt><a name="index-x_003ascreen_002dblack"></a><u>Function:</u> <b>x:screen-black</b><i> display screen-number</i></dt>
<dt><a name="index-x_003ascreen_002dblack-1"></a><u>Function:</u> <b>x:screen-black</b><i> display</i></dt>
<dt><a name="index-x_003ascreen_002dblack-2"></a><u>Function:</u> <b>x:screen-black</b><i> window</i></dt>
<dd><p>Returns the black pixel value of the specified screen.
</p></dd></dl>

<hr size="6">
<a name="Drawables"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Display-and-Screens" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Windows-and-Pixmaps" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Display-and-Screens" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Drawables-1"></a>
<h1 class="chapter">3. Drawables</h1>

<a name="index-Drawable"></a>
<a name="index-drawable"></a>
<p>A <em>Drawable</em> is either a window or pixmap.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         
</td></tr>
<tr><td align="left" valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           
</td></tr>
<tr><td align="left" valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">  
</td></tr>
</table>


<hr size="6">
<a name="Windows-and-Pixmaps"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Drawables" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Window-Attributes" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Drawables" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Drawables" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Windows-and-Pixmaps-1"></a>
<h2 class="section">3.1 Windows and Pixmaps</h2>

<dl>
<dt><a name="index-x_003acreate_002dwindow"></a><u>Function:</u> <b>x:create-window</b><i> window position size border-width depth class visual field-name value &hellip;</i></dt>
<dd><p>Creates and returns an unmapped Input-Output subwindow for a specified
parent <var>window</var> and causes the X server to generate a CreateNotify
event.  The created window is placed on top in the stacking order with
respect to siblings.  Any part of the window that extends outside its
parent <var>window</var> is clipped.  The <var>border-width</var> for an
x:Input-Only window must be zero.
</p>
<p>The coordinate system has the X axis horizontal and the Y axis vertical
with the origin [0, 0] at the upper-left corner.  Coordinates are
integral, in terms of pixels, and coincide with pixel centers.  Each
window and pixmap has its own coordinate system.  For a window, the
origin is inside the border at the inside, upper-left corner.
</p>
<p><var>Class</var> can be x:Input-Output, x:Input-Only, or x:Copy-From-Parent.
For class x:Input-Output, the <var>visual</var> type and <var>depth</var> must be
a combination supported for the screen.  The <var>depth</var> need not be the
same as the parent, but the parent must not be a window of class
x:Input-Only.  For an x:Input-Only window, the <var>depth</var> must be zero,
and the <var>visual</var> must be one supported by the screen.
</p>
<p>The returned window will have the attributes specified by
<var>field-name</var>s and <var>value</var>.
</p>
</dd><dt><a name="index-x_003acreate_002dwindow-1"></a><u>Function:</u> <b>x:create-window</b><i> window position size border-width border background</i></dt>
<dd><p>The returned window inherits its depth, class, and visual from its
parent.  All other window attributes, except <var>background</var> and
<var>border</var>, have their default values.
</p></dd></dl>

<dl>
<dt><a name="index-x_003acreate_002dpixmap"></a><u>Function:</u> <b>x:create-pixmap</b><i> drawable size depth</i></dt>
<dt><a name="index-x_003acreate_002dpixmap-1"></a><u>Function:</u> <b>x:create-pixmap</b><i> display size depth</i></dt>
<dd>
<p><var>size</var> is a list, vector, or pair of nonzero integers specifying the width
and height desired in the new pixmap.
</p>
<p><var>x:create-pixmap</var> returns a new pixmap of the width, height, and
<var>depth</var> specified.  It is valid to pass an x:Input-Only window to the
drawable argument.  The <var>depth</var> argument must be one of the depths
supported by the screen of the specified <var>drawable</var>.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aclose-1"></a><u>Function:</u> <b>x:close</b><i> window</i></dt>
<dd><p>Destroys the specified <var>window</var> as well as all of its subwindows and
causes the X server to generate a DestroyNotify event for each window.
The window should not be used again.  If the window specified by the
<var>window</var> argument is mapped, it is unmapped automatically.  The
ordering of the DestroyNotify events is such that for any given window
being destroyed, DestroyNotify is generated on any inferiors of the
window before being generated on the window itself.  The ordering among
siblings and across subhierarchies is not otherwise constrained.  If the
<var>window</var> you specified is a root window, an error is signaled.
Destroying a mapped <var>window</var> will generate x:Expose events on other
windows that were obscured by the window being destroyed.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aclose-2"></a><u>Function:</u> <b>x:close</b><i> pixmap</i></dt>
<dd><p>Deletes the association between the <var>pixmap</var> and its storage.  The X
server frees the pixmap storage when there are no references to it.
</p></dd></dl>

<dl>
<dt><a name="index-x_003awindow_002dgeometry"></a><u>Function:</u> <b>x:window-geometry</b><i> drawable</i></dt>
<dd><p>Returns a list of:
</p>
<dl compact="compact">
<dt> coordinates</dt>
<dd><p><code>list</code> of x and y coordinates that define the location of the
<var>drawable</var>.  For a window, these coordinates specify the upper-left
outer corner relative to its parent&rsquo;s origin.  For pixmaps, these
coordinates are always zero.
</p></dd>
<dt> size</dt>
<dd><p><code>list</code> of the <var>drawable</var>&rsquo;s dimensions (width and height).  For
a window, these dimensions specify the inside size, not including the
border.
</p></dd>
<dt> border-width</dt>
<dd><p>The border width in pixels.  If the <var>drawable</var> is a pixmap, this is
zero.
</p></dd>
<dt> depth</dt>
<dd><p>The depth of the <var>drawable</var> (bits per pixel for the object).
</p></dd>
</dl>
</dd></dl>


<dl>
<dt><a name="index-x_003awindow_002dgeometry_002dset_0021"></a><u>Function:</u> <b>x:window-geometry-set!</b><i> window field-name value &hellip;</i></dt>
<dd><p>Changes the <em>Configuration</em> components specified by
<var>field-name</var>s for the specified <var>window</var>.
</p></dd></dl>

<p>These are the attributes settable by <code>x:window-geometry-set!</code>.
That these attributes are encoded by small integers &ndash; just like those
of the next section.  Be warned therefore that confusion of attribute
names will likely not signal errors, just cause mysterious behavior.
</p>
<dl>
<dt><a name="index-x_003aCWX"></a><u>Attribute:</u> <b>x:CWX</b></dt>
<dt><a name="index-x_003aCWY"></a><u>Attribute:</u> <b>x:CWY</b></dt>
<dt><a name="index-x_003aCW_002dWidth"></a><u>Attribute:</u> <b>x:CW-Width</b></dt>
<dt><a name="index-x_003aCW_002dHeight"></a><u>Attribute:</u> <b>x:CW-Height</b></dt>
<dd><p>The x:CWX and x:CYY members are used to set the window&rsquo;s x and y
coordinates, which are relative to the parent&rsquo;s origin and indicate the
position of the upper-left outer corner of the window.  The x:CW-Width
and x:CW-Height members are used to set the inside size of the window,
not including the border, and must be nonzero.  Attempts to configure a
root window have no effect.
</p>
<p>If a window&rsquo;s size actually changes, the window&rsquo;s subwindows move
according to their window gravity.  Depending on the window&rsquo;s bit
gravity, the contents of the window also may be moved
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBorder_002dWidth"></a><u>Attribute:</u> <b>x:CW-Border-Width</b></dt>
<dd><p>The integer x:CW-Border-Width is used to set the width of the border in
pixels.  Note that setting just the border width leaves the outer-left
corner of the window in a fixed position but moves the absolute position
of the window&rsquo;s origin.  It is an error to set the border-width
attribute of an InputOnly window nonzero.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dSibling"></a><u>Attribute:</u> <b>x:CW-Sibling</b></dt>
<dd><p>The sibling member is used to set the sibling window for stacking
operations.  
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dStack_002dMode"></a><u>Attribute:</u> <b>x:CW-Stack-Mode</b></dt>
<dd><p>The x:CW-Stack-Mode member is used to set how the window is to be
restacked and can be set to x:Above, x:Below, x:Top-If, x:Bottom-If, or
x:Opposite.
</p></dd></dl>

<p>If a sibling and a stack-mode are specified, the window is restacked as
follows:
</p>
<dl compact="compact">
<dt> <code>x:Above</code></dt>
<dd><p>The window is placed just above the sibling.
</p></dd>
<dt> <code>x:Below</code></dt>
<dd><p>The window is placed just below the sibling.
</p></dd>
<dt> <code>x:Top-If</code></dt>
<dd><p>If the sibling occludes the window, the window is placed at the top of
the stack.
</p></dd>
<dt> <code>x:Bottom-If</code></dt>
<dd><p>If the window occludes the sibling, the window is placed at the bottom
of the stack.
</p></dd>
<dt> <code>x:Opposite</code></dt>
<dd><p>If the sibling occludes the window, the window is placed at the top of
the stack.  If the window occludes the sibling, the window is placed at
the bottom of the stack.
</p></dd>
</dl>

<p>If a stack-mode is specified but no sibling is specified, the window
is restacked as follows:
</p>
<dl compact="compact">
<dt> <code>x:Above</code></dt>
<dd><p>The window is placed at the top of the stack.
</p></dd>
<dt> <code>x:Below</code></dt>
<dd><p>The window is placed at the bottom of the stack.
</p></dd>
<dt> <code>x:Top-If</code></dt>
<dd><p>If any sibling occludes the window, the window is placed at the top of
the stack.
</p></dd>
<dt> <code>x:Bottom-If</code></dt>
<dd><p>If the window occludes any sibling, the window is placed at the bottom
of the stack.
</p></dd>
<dt> <code>x:Opposite</code></dt>
<dd><p>If any sibling occludes the window, the window is placed at the top of
the stack.  If the window occludes any sibling, the window is placed at
the bottom of the stack.
</p></dd>
</dl>




<hr size="6">
<a name="Window-Attributes"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Windows-and-Pixmaps" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Window-Properties-and-Visibility" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Drawables" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Drawables" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Window-Attributes-1"></a>
<h2 class="section">3.2 Window Attributes</h2>

<dl>
<dt><a name="index-x_003awindow_002dset_0021"></a><u>Function:</u> <b>x:window-set!</b><i> window field-name value &hellip;</i></dt>
<dd><p>Changes the components specified by <var>field-name</var>s for the specified
<var>window</var>.  The restrictions are the same as for
<code>x:create-window</code>.  The order in which components are verified and
altered is server dependent.  If an error occurs, a subset of the
components may have been altered.
</p></dd></dl>

<p>The <code>x:create-window</code> and <code>x:window-set!</code> procedures take five
and one argument (respectively) followed by pairs of arguments, where
the first is one of the property-name symbols (or its top-level value)
listed below; and the second is the value to associate with that
property.
</p>
<dl>
<dt><a name="index-x_003aCW_002dBack_002dPixmap"></a><u>Attribute:</u> <b>x:CW-Back-Pixmap</b></dt>
<dd><p>Sets the background pixmap of the <var>window</var> to the specified pixmap.
The background pixmap can immediately be freed if no further explicit
references to it are to be made.  If x:Parent-Relative is specified, the
background pixmap of the window&rsquo;s parent is used, or on the root window,
the default background is restored.  It is an error to perform this
operation on an x:Input-Only window.  If the background is set to #f or
None, the window has no defined background.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBack_002dPixel"></a><u>Attribute:</u> <b>x:CW-Back-Pixel</b></dt>
<dd><p>Sets the background of the <var>window</var> to the specified pixel value.
Changing the background does not cause the <var>window</var> contents to be
changed.  It is an error to perform this operation on an x:Input-Only
window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBorder_002dPixmap"></a><u>Attribute:</u> <b>x:CW-Border-Pixmap</b></dt>
<dd><p>Sets the border pixmap of the <var>window</var> to the pixmap you specify.
The border pixmap can be freed if no further explicit references to it
are to be made.  If you specify x:Copy-From-Parent, a copy of the parent
window&rsquo;s border pixmap is used.  It is an error to perform this
operation on an x:Input-Only <var>window</var>.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBorder_002dPixel"></a><u>Attribute:</u> <b>x:CW-Border-Pixel</b></dt>
<dd><p>Sets the border of the <var>window</var> to the pixel <var>value</var>.  It is an
error to perform this operation on an x:Input-Only window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBit_002dGravity"></a><u>Attribute:</u> <b>x:CW-Bit-Gravity</b></dt>
<dt><a name="index-x_003aCW_002dWin_002dGravity"></a><u>Attribute:</u> <b>x:CW-Win-Gravity</b></dt>
<dd><p>The bit gravity of a window defines which region of the window should be
retained when an x:Input-Output window is resized.  The default value
for the bit-gravity attribute is x:Forget-Gravity.  The window gravity
of a window allows you to define how the x:Input-Output or x:Input-Only
window should be repositioned if its parent is resized.  The default
value for the win-gravity attribute is x:North-West-Gravity.
</p>
<p>If the inside width or height of a window is not changed and if the
window is moved or its border is changed, then the contents of the
window are not lost but move with the window.  Changing the inside width
or height of the window causes its contents to be moved or lost
(depending on the bit-gravity of the window) and causes children to be
reconfigured (depending on their win-gravity).  For a change of width
and height, the (x, y) pairs are defined:
</p>
<table>
<tr><td width="50%">Gravity Direction</td><td width="50%">Coordinates</td></tr>
<tr><td width="50%">x:North-West-Gravity</td><td width="50%">(0, 0)</td></tr>
<tr><td width="50%">x:North-Gravity</td><td width="50%">(Width/2, 0)</td></tr>
<tr><td width="50%">x:North-East-Gravity</td><td width="50%">(Width, 0)</td></tr>
<tr><td width="50%">x:West-Gravity</td><td width="50%">(0, Height/2)</td></tr>
<tr><td width="50%">x:Center-Gravity</td><td width="50%">(Width/2, Height/2)</td></tr>
<tr><td width="50%">x:East-Gravity</td><td width="50%">(Width, Height/2)</td></tr>
<tr><td width="50%">x:South-West-Gravity</td><td width="50%">(0, Height)</td></tr>
<tr><td width="50%">x:South-Gravity</td><td width="50%">(Width/2, Height)</td></tr>
<tr><td width="50%">x:South-East-Gravity</td><td width="50%">(Width, Height)</td></tr>
</table>

<p>When a window with one of these bit-gravity values is resized, the
corresponding pair defines the change in position of each pixel in the
window.  When a window with one of these win-gravities has its parent
window resized, the corresponding pair defines the change in position of
the window within the parent.  When a window is so repositioned, a
x:Gravity-Notify event is generated (see section 10.10.5).
</p>
<p>A bit-gravity of x:Static-Gravity indicates that the contents or origin
should not move relative to the origin of the root window.  If the
change in size of the window is coupled with a change in position (x,
y), then for bit-gravity the change in position of each pixel is (-x,
-y), and for win-gravity the change in position of a child when its
parent is so resized is (-x, -y).  Note that x:Static-Gravity still only
takes effect when the width or height of the window is changed, not when
the window is moved.
</p>
<p>A bit-gravity of x:Forget-Gravity indicates that the window&rsquo;s contents
are always discarded after a size change, even if a backing store or
save under has been requested.  The window is tiled with its background
and zero or more x:Expose events are generated.  If no background is
defined, the existing screen contents are not altered.  Some X servers
may also ignore the specified bit-gravity and always generate x:Expose
events.
</p>
<p>The contents and borders of inferiors are not affected by their parent&rsquo;s
bit-gravity.  A server is permitted to ignore the specified bit-gravity
and use x:Forget-Gravity instead.
</p>
<p>A win-gravity of x:Unmap-Gravity is like x:North-West-Gravity (the
window is not moved), except the child is also unmapped when the parent
is resized, and an x:Unmap-Notify event is generated.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBacking_002dStore"></a><u>Attribute:</u> <b>x:CW-Backing-Store</b></dt>
<dd><p>Some implementations of the X server may choose to maintain the contents
of x:Input-Output windows.  If the X server maintains the contents of a
window, the off-screen saved pixels are known as backing store.  The
backing store advises the X server on what to do with the contents of a
window.  The backing-store attribute can be set to x:Not-Useful
(default), x:When-Mapped, or x:Always.  A backing-store attribute of
x:Not-Useful advises the X server that maintaining contents is
unnecessary, although some X implementations may still choose to
maintain contents and, therefore, not generate x:Expose events.  A
backing-store attribute of x:When-Mapped advises the X server that
maintaining contents of obscured regions when the window is mapped would
be beneficial.  In this case, the server may generate an x:Expose event
when the window is created.  A backing-store attribute of x:Always
advises the X server that maintaining contents even when the window is
unmapped would be beneficial.  Even if the window is larger than its
parent, this is a request to the X server to maintain complete contents,
not just the region within the parent window boundaries.  While the X
server maintains the window&rsquo;s contents, x:Expose events normally are not
generated, but the X server may stop maintaining contents at any time.
</p>
<p>When the contents of obscured regions of a window are being maintained,
regions obscured by noninferior windows are included in the destination
of graphics requests (and source, when the window is the source).
However, regions obscured by inferior windows are not included.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dBacking_002dPlanes"></a><u>Attribute:</u> <b>x:CW-Backing-Planes</b></dt>
<dt><a name="index-x_003aCW_002dBacking_002dPixel"></a><u>Attribute:</u> <b>x:CW-Backing-Pixel</b></dt>
<dd><p>You can set backing planes to indicate (with bits set to 1) which bit
planes of an x:Input-Output window hold dynamic data that must be
preserved in backing store and during save unders.  The default value
for the backing-planes attribute is all bits set to 1.  You can set
backing pixel to specify what bits to use in planes not covered by
backing planes.  The default value for the backing-pixel attribute is
all bits set to 0.  The X server is free to save only the specified bit
planes in the backing store or the save under and is free to regenerate
the remaining planes with the specified pixel value.  Any extraneous
bits in these values (that is, those bits beyond the specified depth of
the window) may be simply ignored.  If you request backing store or save
unders, you should use these members to minimize the amount of
off-screen memory required to store your window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dOverride_002dRedirect"></a><u>Attribute:</u> <b>x:CW-Override-Redirect</b></dt>
<dd><p>To control window placement or to add decoration, a window manager often
needs to intercept (redirect) any map or configure request.  Pop-up
windows, however, often need to be mapped without a window manager
getting in the way.  To control whether an x:Input-Output or
x:Input-Only window is to ignore these structure control facilities, use
the override-redirect flag.
</p>
<p>The override-redirect flag specifies whether map and configure requests
on this window should override a x:Substructure-Redirect-Mask on the
parent.  You can set the override-redirect flag to #t or #f (default).
Window managers use this information to avoid tampering with pop-up
windows.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dSave_002dUnder"></a><u>Attribute:</u> <b>x:CW-Save-Under</b></dt>
<dd><p>Some server implementations may preserve contents of x:Input-Output windows
under other x:Input-Output windows.  This is not the same as preserving the
contents of a window for you.  You may get better visual appeal if
transient windows (for example, pop-up menus) request that the system
preserve the screen contents under them, so the temporarily obscured
applications do not have to repaint.
</p>
<p>You can set the save-under flag to True or False (default).  If
save-under is True, the X server is advised that, when this window is
mapped, saving the contents of windows it obscures would be beneficial.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dEvent_002dMask"></a><u>Attribute:</u> <b>x:CW-Event-Mask</b></dt>
<dd><p>The event mask defines which events the client is interested in for this
x:Input-Output or x:Input-Only window (or, for some event types,
inferiors of this window).  The event mask is the bitwise inclusive OR
of zero or more of the valid event mask bits.  You can specify that no
maskable events are reported by setting x:No-Event-Mask (default).
</p>
<p>The following table lists the event mask constants you can pass to the
event-mask argument and the circumstances in which you would want to
specify the event mask:
</p>
<table>
<tr><td width="45%">Event Mask</td><td width="55%">Circumstances</td></tr>
<tr><td width="45%">x:No-Event-Mask</td><td width="55%">No events wanted</td></tr>
<tr><td width="45%">x:Key-Press-Mask</td><td width="55%">Keyboard down events wanted</td></tr>
<tr><td width="45%">x:Key-Release-Mask</td><td width="55%">Keyboard up events wanted</td></tr>
<tr><td width="45%">x:Button-Press-Mask</td><td width="55%">Pointer button down events wanted</td></tr>
<tr><td width="45%">x:Button-Release-Mask</td><td width="55%">Pointer button up events wanted</td></tr>
<tr><td width="45%">x:Enter-Window-Mask</td><td width="55%">Pointer window entry events wanted</td></tr>
<tr><td width="45%">x:Leave-Window-Mask</td><td width="55%">Pointer window leave events wanted</td></tr>
<tr><td width="45%">x:Pointer-Motion-Mask</td><td width="55%">Pointer motion events wanted</td></tr>
<tr><td width="45%">x:Pointer-Motion-Hint-Mask</td><td width="55%">If x:Pointer-Motion-Hint-Mask is selected in combination with one or
more motion-masks, the X server is free to send only one x:Motion-Notify
event (with the is_hint member of the X:Pointer-Moved-Event structure
set to x:Notify-Hint) to the client for the event window, until either
the key or button state changes, the pointer leaves the event window, or
the client calls X:Query-Pointer or X:Get-Motion-Events.  The server
still may send x:Motion-Notify events without is_hint set to
x:Notify-Hint.</td></tr>
<tr><td width="45%">x:Button1-Motion-Mask</td><td width="55%">Pointer motion while button 1 down</td></tr>
<tr><td width="45%">x:Button2-Motion-Mask</td><td width="55%">Pointer motion while button 2 down</td></tr>
<tr><td width="45%">x:Button3-Motion-Mask</td><td width="55%">Pointer motion while button 3 down</td></tr>
<tr><td width="45%">x:Button4-Motion-Mask</td><td width="55%">Pointer motion while button 4 down</td></tr>
<tr><td width="45%">x:Button5-Motion-Mask</td><td width="55%">Pointer motion while button 5 down</td></tr>
<tr><td width="45%">x:Button-Motion-Mask</td><td width="55%">Pointer motion while any button down</td></tr>
<tr><td width="45%">x:Keymap-State-Mask</td><td width="55%">Keyboard state wanted at window entry and focus in</td></tr>
<tr><td width="45%">x:Exposure-Mask</td><td width="55%">Any exposure wanted</td></tr>
<tr><td width="45%">x:Visibility-Change-Mask</td><td width="55%">Any change in visibility wanted</td></tr>
<tr><td width="45%">x:Structure-Notify-Mask</td><td width="55%">Any change in window structure wanted</td></tr>
<tr><td width="45%">x:Resize-Redirect-Mask</td><td width="55%">Redirect resize of this window</td></tr>
<tr><td width="45%">x:Substructure-Notify-Mask</td><td width="55%">Substructure notification wanted</td></tr>
<tr><td width="45%">x:Substructure-Redirect-Mask</td><td width="55%">Redirect structure requests on children</td></tr>
<tr><td width="45%">x:Focus-Change-Mask</td><td width="55%">Any change in input focus wanted</td></tr>
<tr><td width="45%">x:Property-Change-Mask</td><td width="55%">Any change in property wanted</td></tr>
<tr><td width="45%">x:Colormap-Change&ndash;Mask</td><td width="55%">Any change in colormap wanted</td></tr>
<tr><td width="45%">x:Owner-Grab-Button&ndash;Mask</td><td width="55%">Automatic grabs should activate with owner_events set to True</td></tr>
</table>

</dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dDont_002dPropagate"></a><u>Attribute:</u> <b>x:CW-Dont-Propagate</b></dt>
<dd><p>The do-not-propagate-mask attribute defines which events should not be
propagated to ancestor windows when no client has the event type
selected in this x:Input-Output or x:Input-Only window.  The
do-not-propagate-mask is the bitwise inclusive OR of zero or more of the
following masks: x:Key-Press, x:Key-Release, x:Button-Press,
x:Button-Release, x:Pointer-Motion, x:Button1Motion, x:Button2Motion,
x:Button3Motion, x:Button4Motion, x:Button5Motion, and x:Button-Motion.
You can specify that all events are propagated by setting
x:No-Event-Mask (default).
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dColormap"></a><u>Attribute:</u> <b>x:CW-Colormap</b></dt>
<dd><p>The colormap attribute specifies which colormap best reflects the true
colors of the x:Input-Output window.  The colormap must have the same
visual type as the window.  X servers capable of supporting multiple
hardware colormaps can use this information, and window managers can use
it for calls to X:Install-Colormap.  You can set the colormap attribute
to a colormap or to x:Copy-From-Parent (default).
</p>
<p>If you set the colormap to x:Copy-From-Parent, the parent window&rsquo;s
colormap is copied and used by its child.  However, the child window
must have the same visual type as the parent.  The parent window must
not have a colormap of x:None.  The colormap is copied by sharing the
colormap object between the child and parent, not by making a complete
copy of the colormap contents.  Subsequent changes to the parent
window&rsquo;s colormap attribute do not affect the child window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aCW_002dCursor"></a><u>Attribute:</u> <b>x:CW-Cursor</b></dt>
<dd><p>The cursor attribute specifies which cursor is to be used when the
pointer is in the x:Input-Output or x:Input-Only window.  You can set
the cursor to a cursor or x:None (default).
</p>
<p>If you set the cursor to x:None, the parent&rsquo;s cursor is used when the
pointer is in the x:Input-Output or x:Input-Only window, and any change
in the parent&rsquo;s cursor will cause an immediate change in the displayed
cursor.  On the root window, the default cursor is restored.
</p></dd></dl>

<dl>
<dt><a name="index-x_003awindow_002dref"></a><u>Function:</u> <b>x:window-ref</b><i> window field-name &hellip;</i></dt>
<dd><p>Returns a list of the components specified by <var>field-name</var>s for the
specified <var>window</var>.  Allowable <var>field-name</var>s are a subset of
those for <code>x:window-set!</code>:
</p>
<ul>
<li> x:CW-Back-Pixel
</li><li> x:CW-Bit-Gravity
</li><li> x:CW-Win-Gravity
</li><li> x:CW-Backing-Store
</li><li> x:CW-Backing-Planes
</li><li> x:CW-Backing-Pixel
</li><li> x:CW-Override-Redirect
</li><li> x:CW-Save-Under
</li><li> x:CW-Event-Mask
</li><li> x:CW-Dont-Propagate
</li><li> x:CW-Colormap
</li></ul>
</dd></dl>


<hr size="6">
<a name="Window-Properties-and-Visibility"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Window-Attributes" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Drawables" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Drawables" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Window-Properties-and-Visibility-1"></a>
<h2 class="section">3.3 Window Properties and Visibility</h2>

<dl>
<dt><a name="index-x_003aget_002dwindow_002dproperty"></a><u>Function:</u> <b>x:get-window-property</b><i> window property</i></dt>
<dd><p>Returns the (string or list of numbers) value of <var>property</var> of
<var>window</var>.
</p></dd><dt><a name="index-x_003aget_002dwindow_002dproperty-1"></a><u>Function:</u> <b>x:get-window-property</b><i> window property #t</i></dt>
<dd><p>Removes and returns the (string or list of numbers) value of
<var>property</var> of <var>window</var>.
</p></dd></dl>

<dl>
<dt><a name="index-x_003alist_002dproperties"></a><u>Function:</u> <b>x:list-properties</b><i> window</i></dt>
<dd><p>Returns a list of the properties (strings) defined for <var>window</var>.
</p></dd></dl>

<p>In X parlance, a window which is hidden even when not obscured by other
windows is <em>unmapped</em>; one which
<a name="index-map"></a>
<a name="index-unmap"></a>
<a name="index-mapped"></a>
<a name="index-unmapped"></a>
shows is <em>mapped</em>.  It is an unfortunate name-collision with Scheme,
and is ingrained in the attribute names.
</p>
<dl>
<dt><a name="index-x_003amap_002dwindow"></a><u>Function:</u> <b>x:map-window</b><i> window</i></dt>
<dd><p>Maps the <var>window</var> and all of its subwindows that have had map
requests.  Mapping a window that has an unmapped ancestor does not
display the window but marks it as eligible for display when the
ancestor becomes mapped.  Such a window is called unviewable.  When all
its ancestors are mapped, the window becomes viewable and will be
visible on the screen if it is not obscured by another window.  This
function has no effect if the <var>window</var> is already mapped.
</p>
<p>If the override-redirect of the window is False and if some other client
has selected x:Substructure-Redirect-Mask on the parent window, then the X
server generates a MapRequest event, and the <code>x:map-window</code>
function does not map the <var>window</var>.  Otherwise, the <var>window</var> is
mapped, and the X server generates a MapNotify event.
</p>
<p>If the <var>window</var> becomes viewable and no earlier contents for it are
remembered, the X server tiles the <var>window</var> with its background.  If
the window&rsquo;s background is undefined, the existing screen contents are
not altered, and the X server generates zero or more x:Expose events.  If
backing-store was maintained while the <var>window</var> was unmapped, no
x:Expose events are generated.  If backing-store will now be maintained, a
full-window exposure is always generated.  Otherwise, only visible
regions may be reported.  Similar tiling and exposure take place for any
newly viewable inferiors.
</p>
<p>If the window is an Input-Output window, <code>x:map-window</code> generates
x:Expose events on each Input-Output window that it causes to be displayed.
If the client maps and paints the window and if the client begins
processing events, the window is painted twice.  To avoid this, first
ask for x:Expose events and then map the window, so the client processes
input events as usual.  The event list will include x:Expose for each
window that has appeared on the screen.  The client&rsquo;s normal response to
an x:Expose event should be to repaint the window.  This method usually
leads to simpler programs and to proper interaction with window
managers.
</p></dd></dl>

<dl>
<dt><a name="index-x_003amap_002dsubwindows"></a><u>Function:</u> <b>x:map-subwindows</b><i> window</i></dt>
<dd><p>Maps all subwindows of a specified <var>window</var> in top-to-bottom
stacking order.  The X server generates x:Expose events on each newly
displayed window.  This may be much more efficient than mapping many
windows one at a time because the server needs to perform much of the
work only once, for all of the windows, rather than for each window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aunmap_002dwindow"></a><u>Function:</u> <b>x:unmap-window</b><i> window</i></dt>
<dd><p>Unmaps the specified <var>window</var> and causes the X server to generate an
UnmapNotify event.  If the specified <var>window</var> is already unmapped,
<code>x:unmap-window</code> has no effect.  Normal exposure processing on
formerly obscured windows is performed.  Any child window will no longer
be visible until another map call is made on the parent.  In other
words, the subwindows are still mapped but are not visible until the
parent is mapped.  Unmapping a <var>window</var> will generate x:Expose events
on windows that were formerly obscured by it.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aunmap_002dsubwindows"></a><u>Function:</u> <b>x:unmap-subwindows</b><i> window</i></dt>
<dd><p>Unmaps all subwindows for the specified <var>window</var> in bottom-to-top
stacking order.  It causes the X server to generate an UnmapNotify event
on each subwindow and x:Expose events on formerly obscured windows.  Using
this function is much more efficient than unmapping multiple windows one
at a time because the server needs to perform much of the work only
once, for all of the windows, rather than for each window.
</p></dd></dl>

<hr size="6">
<a name="Graphics-Context"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Window-Properties-and-Visibility" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Cursor" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Drawables" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Cursor" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Graphics-Context-1"></a>
<h1 class="chapter">4. Graphics Context</h1>

<p>Most attributes of graphics operations are stored in <em>GC</em>s.  These
include line width, line style, plane mask, foreground, background,
tile, stipple, clipping region, end style, join style, and so on.
Graphics operations (for example, drawing lines) use these values to
determine the actual drawing operation.
</p>
<dl>
<dt><a name="index-x_003acreate_002dgc"></a><u>Function:</u> <b>x:create-gc</b><i> drawable field-name value &hellip;</i></dt>
<dd><p>Creates and returns graphics context.  The graphics context can be used
with any destination drawable having the same root and depth as the
specified <var>drawable</var>.
</p></dd></dl>

<dl>
<dt><a name="index-x_003agc_002dset_0021"></a><u>Function:</u> <b>x:gc-set!</b><i> graphics-context field-name value &hellip;</i></dt>
<dd><p>Changes the components specified by <var>field-name</var>s for the specified
<var>graphics-context</var>.  The restrictions are the same as for
<code>x:create-gc</code>.  The order in which components are verified and
altered is server dependent.  If an error occurs, a subset of the
components may have been altered.
</p></dd></dl>

<dl>
<dt><a name="index-x_003acopy_002dgc_002dfields_0021"></a><u>Function:</u> <b>x:copy-gc-fields!</b><i> gcontext-src gcontext-dst field-name &hellip;</i></dt>
<dd><p>Copies the components specified by <var>field-name</var>s from
<var>gcontext-src</var> to <var>gcontext-dst</var>.  <var>Gcontext-src</var> and
<var>gcontext-dst</var> must have the same root and depth.
</p></dd></dl>

<dl>
<dt><a name="index-x_003agc_002dref"></a><u>Function:</u> <b>x:gc-ref</b><i> graphics-context field-name &hellip;</i></dt>
<dd><p>Returns a list of the components specified by <var>field-name</var>s &hellip;
from the specified <var>graphics-context</var>.
</p></dd></dl>

<a name="GC-Attributes"></a>
<h2 class="heading">GC Attributes</h2>

<p>Both <code>x:create-gc</code> and <code>x:change-gc</code> take one argument
followed by pairs of arguments, where the first is one of the
property-name symbols (or its top-level value) listed below; and the
second is the value to associate with that property.
</p>
<dl>
<dt><a name="index-x_003aGC_002dFunction"></a><u>Attribute:</u> <b>x:GC-Function</b></dt>
<dd><p>The function attributes of a GC are used when you update a section of a
drawable (the destination) with bits from somewhere else (the source).
The function in a GC defines how the new destination bits are to be
computed from the source bits and the old destination bits.  x:G-Xcopy is
typically the most useful because it will work on a color display, but
special applications may use other functions, particularly in concert
with particular planes of a color display.  The 16 functions are:
</p>
<table><tr><td>&nbsp;</td><td><pre class="format"><tt>
x:G-Xclear           0
x:G-Xand             (AND src dst)
x:G-Xand-Reverse     (AND src (NOT dst))
x:G-Xcopy            src
x:G-Xand-Inverted    (AND (NOT src) dst)
x:G-Xnoop            dst
x:G-Xxor             (XOR src dst)
x:G-Xor              (OR src dst)
x:G-Xnor             (AND (NOT src) (NOT dst))
x:G-Xequiv           (XOR (NOT src) dst)
x:G-Xinvert          (NOT dst)
x:G-Xor-Reverse      (OR src (NOT dst))
x:G-Xcopy-Inverted   (NOT src)
x:G-Xor-Inverted     (OR (NOT src) dst)
x:G-Xnand            (OR (NOT src) (NOT dst))
x:G-Xset             1</tt>
</pre></td></tr></table>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dPlane_002dMask"></a><u>Attribute:</u> <b>x:GC-Plane-Mask</b></dt>
<dd>
<p>Many graphics operations depend on either pixel values or planes in a
GC.  The planes attribute is an integer which specifies which planes of
the destination are to be modified, one bit per plane.  A monochrome
display has only one plane and will be the least significant bit of the
integer.  As planes are added to the display hardware, they will occupy
more significant bits in the plane mask.
</p>
<p>In graphics operations, given a source and destination pixel, the result
is computed bitwise on corresponding bits of the pixels.  That is, a
Boolean operation is performed in each bit plane.  The plane-mask
restricts the operation to a subset of planes.  <code>x:All-Planes</code> can be
used to refer to all planes of the screen simultaneously.  The result is
computed by the following:
</p>
<table><tr><td>&nbsp;</td><td><pre class="format">(OR (AND (FUNC src dst) plane-mask) (AND dst (NOT plane-mask)))
</pre></td></tr></table>

<p>Range checking is not performed on a plane-mask value.  It is simply
truncated to the appropriate number of bits.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dForeground"></a><u>Attribute:</u> <b>x:GC-Foreground</b></dt>
<dt><a name="index-x_003aGC_002dBackground"></a><u>Attribute:</u> <b>x:GC-Background</b></dt>
<dd><p>Range checking is not performed on the values for foreground or
background.  They are simply truncated to the appropriate number of
bits.
</p>
<p>Note that foreground and background are not initialized to any values
likely to be useful in a window.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dLine_002dWidth"></a><u>Attribute:</u> <b>x:GC-Line-Width</b></dt>
<dd><p>The line-width is measured in pixels and either can be greater than or
equal to one (wide line) or can be the special value zero (thin line).
</p>
<p>Thin lines (zero line-width) are one-pixel-wide lines drawn using an
unspecified, device-dependent algorithm.  There are only two constraints
on this algorithm.
</p>
<ul>
<li>
If a line is drawn unclipped from [x1,y1] to [x2,y2] and if another line
is drawn unclipped from [x1+dx,y1+dy] to [x2+dx,y2+dy], a point [x,y] is
touched by drawing the first line if and only if the point [x+dx,y+dy]
is touched by drawing the second line.

</li><li>
The effective set of points comprising a line cannot be affected by
clipping.  That is, a point is touched in a clipped line if and only if
the point lies inside the clipping region and the point would be touched
by the line when drawn unclipped.
</li></ul>

<p>A wide line drawn from [x1,y1] to [x2,y2] always draws the same pixels
as a wide line drawn from [x2,y2] to [x1,y1], not counting cap-style and
join-style.  It is recommended that this property be true for thin
lines, but this is not required.  A line-width of zero may differ from a
line-width of one in which pixels are drawn.  This permits the use of
many manufacturers&rsquo; line drawing hardware, which may run many times
faster than the more precisely specified wide lines.
</p>
<p>In general, drawing a thin line will be faster than drawing a wide line
of width one.  However, because of their different drawing algorithms,
thin lines may not mix well aesthetically with wide lines.  If it is
desirable to obtain precise and uniform results across all displays, a
client should always use a line-width of one rather than a linewidth of
zero.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dLine_002dStyle"></a><u>Attribute:</u> <b>x:GC-Line-Style</b></dt>
<dd><p>The line-style defines which sections of a line are drawn:
</p>
<dl compact="compact">
<dt> <tt>x:Line-Solid</tt></dt>
<dd><p>The full path of the line is drawn.
</p></dd>
<dt> <tt>x:Line-Double-Dash</tt></dt>
<dd><p>The full path of the line is drawn, but the even dashes are filled
differently from the odd dashes (see fill-style) with x:Cap-Butt style used
where even and odd dashes meet.
</p></dd>
<dt> <tt>x:Line-On-Off-Dash</tt></dt>
<dd><p>Only the even dashes are drawn, and cap-style applies to all internal
ends of the individual dashes, except x:Cap-Not-Last is treated as x:Cap-Butt.
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dCap_002dStyle"></a><u>Attribute:</u> <b>x:GC-Cap-Style</b></dt>
<dd>
<p>The cap-style defines how the endpoints of a path are drawn:
</p>
<dl compact="compact">
<dt> <tt>x:Cap-Not-Last</tt></dt>
<dd><p>This is equivalent to x:Cap-Butt except that for a line-width of zero the
final endpoint is not drawn.
</p></dd>
<dt> <tt>x:Cap-Butt</tt></dt>
<dd><p>The line is square at the endpoint (perpendicular to the slope of the
line) with no projection beyond.
</p></dd>
<dt> <tt>x:Cap-Round</tt></dt>
<dd><p>The line has a circular arc with the diameter equal to the line-width,
centered on the endpoint.  (This is equivalent to x:Cap-Butt for line-width
of zero).
</p></dd>
<dt> <tt>x:Cap-Projecting</tt></dt>
<dd><p>The line is square at the end, but the path continues beyond the
endpoint for a distance equal to half the line-width.  (This is
equivalent to x:Cap-Butt for line-width of zero).
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dJoin_002dStyle"></a><u>Attribute:</u> <b>x:GC-Join-Style</b></dt>
<dd>
<p>The join-style defines how corners are drawn for wide lines:
</p>
<dl compact="compact">
<dt> <tt>x:Join-Miter</tt></dt>
<dd><p>The outer edges of two lines extend to meet at an angle.  However, if
the angle is less than 11 degrees, then a x:Join-Bevel join-style is used
instead.
</p></dd>
<dt> <tt>x:Join-Round</tt></dt>
<dd><p>The corner is a circular arc with the diameter equal to the
line-width, centered on the x:Join-point.
</p></dd>
<dt> <tt>x:Join-Bevel</tt></dt>
<dd><p>The corner has x:Cap-Butt endpoint styles with the triangular notch filled.
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dFill_002dStyle"></a><u>Attribute:</u> <b>x:GC-Fill-Style</b></dt>
<dd>
<p>The fill-style defines the contents of the source for line, text, and
fill requests.  For all text and fill requests (for example,
X:Draw-Text, X:Fill-Rectangle, X:Fill-Polygon, and X:Fill-Arc); for line
requests with linestyle x:Line-Solid (for example, X:Draw-Line,
X:Draw-Segments, X:Draw-Rectangle, X:Draw-Arc); and for the even dashes
for line requests with line-style x:Line-On-Off-Dash or
x:Line-Double-Dash, the following apply:
</p>
<dl compact="compact">
<dt> <tt>x:Fill-Solid</tt></dt>
<dd><p>Foreground
</p></dd>
<dt> <tt>x:Fill-Tiled</tt></dt>
<dd><p>Tile
</p></dd>
<dt> <tt>x:Fill-Opaque-Stippled</tt></dt>
<dd><p>A tile with the same width and height as stipple, but with background
everywhere stipple has a zero and with foreground everywhere stipple has
a one
</p></dd>
<dt> <tt>x:Fill-Stippled</tt></dt>
<dd><p>Foreground masked by stipple
</p></dd>
</dl>

<p>When drawing lines with line-style x:Line-Double-Dash, the odd dashes
are controlled by the fill-style in the following manner:
</p>
<dl compact="compact">
<dt> <tt>x:Fill-Solid</tt></dt>
<dd><p>Background
</p></dd>
<dt> <tt>x:Fill-Tiled</tt></dt>
<dd><p>Same as for even dashes
</p></dd>
<dt> <tt>x:Fill-Opaque-Stippled</tt></dt>
<dd><p>Same as for even dashes
</p></dd>
<dt> <tt>x:Fill-Stippled</tt></dt>
<dd><p>Background masked by stipple
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dFill_002dRule"></a><u>Attribute:</u> <b>x:GC-Fill-Rule</b></dt>
<dd><p>The fill-rule defines what pixels are inside (drawn) for paths given in
X:Fill-Polygon requests and can be set to x:Even-Odd-Rule or
x:Winding-Rule.
</p>
<dl compact="compact">
<dt> <tt>x:Even-Odd-Rule</tt></dt>
<dd><p>A point is inside if an infinite ray with the point as
origin crosses the path an odd number of times.
</p></dd>
<dt> <tt>x:Winding-Rule</tt></dt>
<dd><p>A point is inside if an infinite ray with the point as origin crosses an
unequal number of clockwise and counterclockwise directed path segments.
</p></dd>
</dl>

<p>A clockwise directed path segment is one that crosses the ray from left
to right as observed from the point.  A counterclockwise segment is one
that crosses the ray from right to left as observed from the point.  The
case where a directed line segment is coincident with the ray is
uninteresting because you can simply choose a different ray that is not
coincident with a segment.
</p>
<p>For both x:Even-Odd-Rule and x:Winding-Rule, a point is infinitely
small, and the path is an infinitely thin line.  A pixel is inside if
the center point of the pixel is inside and the center point is not on
the boundary.  If the center point is on the boundary, the pixel is
inside if and only if the polygon interior is immediately to its right
(x increasing direction).  Pixels with centers on a horizontal edge are
a special case and are inside if and only if the polygon interior is
immediately below (y increasing direction).
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dTile"></a><u>Attribute:</u> <b>x:GC-Tile</b></dt>
<dt><a name="index-x_003aGC_002dStipple"></a><u>Attribute:</u> <b>x:GC-Stipple</b></dt>
<dd><p>The tile/stipple represents an infinite two-dimensional plane, with the
tile/stipple replicated in all dimensions.
</p>
<p>The tile pixmap must have the same root and depth as the GC, or an error
results.  The stipple pixmap must have depth one and must have the same
root as the GC, or an error results.  For stipple operations where the
fill-style is x:Fill-Stippled but not x:Fill-Opaque-Stippled, the
stipple pattern is tiled in a single plane and acts as an additional
clip mask to be ANDed with the clip-mask.  Although some sizes may be
faster to use than others, any size pixmap can be used for tiling or
stippling.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dTile_002dStip_002dX_002dOrigin"></a><u>Attribute:</u> <b>x:GC-Tile-Stip-X-Origin</b></dt>
<dt><a name="index-x_003aGC_002dTile_002dStip_002dY_002dOrigin"></a><u>Attribute:</u> <b>x:GC-Tile-Stip-Y-Origin</b></dt>
<dd><p>When the tile/stipple plane is superimposed on a drawable for use in a
graphics operation, the upper-left corner of some instance of the
tile/stipple is at the coordinates within the drawable specified by the
tile/stipple origin.  The tile/stipple origin is interpreted relative to
the origin of whatever destination drawable is specified in a graphics
request.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dFont"></a><u>Attribute:</u> <b>x:GC-Font</b></dt>
<dd><p>The font to be used for drawing text.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dSubwindow_002dMode"></a><u>Attribute:</u> <b>x:GC-Subwindow-Mode</b></dt>
<dd><p>You can set the subwindow-mode to x:Clip-By-Children or
x:Include-Inferiors.
</p><dl compact="compact">
<dt> <tt>x:Clip-By-Children</tt></dt>
<dd><p>Both source and destination windows are additionally clipped by all
viewable Input-Output children.
</p></dd>
<dt> <tt>x:Include-Inferiors</tt></dt>
<dd><p>Neither source nor destination window is clipped by inferiors.  This
will result in including subwindow contents in the source and drawing
through subwindow boundaries of the destination.  The use of
<code>x:Include-Inferiors</code> on a window of one depth with mapped
inferiors of differing depth is not illegal, but the semantics are
undefined by the core protocol.
</p></dd>
</dl>
</dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dGraphics_002dExposures"></a><u>Attribute:</u> <b>x:GC-Graphics-Exposures</b></dt>
<dd><p>The graphics-exposure flag controls x:Graphics-Expose event generation
for X:Copy-Area and X:Copy-Plane requests (and any similar requests
defined by extensions).
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dClip_002dX_002dOrigin"></a><u>Attribute:</u> <b>x:GC-Clip-X-Origin</b></dt>
<dt><a name="index-x_003aGC_002dClip_002dY_002dOrigin"></a><u>Attribute:</u> <b>x:GC-Clip-Y-Origin</b></dt>
<dd><p>The clip-mask origin is interpreted relative to the origin of whatever
destination drawable is specified in a graphics request.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dClip_002dMask"></a><u>Attribute:</u> <b>x:GC-Clip-Mask</b></dt>
<dd><p>The clip-mask restricts writes to the destination drawable.  If the
clip-mask is set to a pixmap, it must have depth one and have the same
root as the GC, or an error results.  If clip-mask is set to
<a name="index-x_003aNone"></a>
<a name="index-none"></a>
<em>x:None</em>, the pixels are always drawn regardless of the clip origin.
The clip-mask also can be set by calling <code>X:Set-Region</code>.  Only
pixels where the clip-mask has a bit set to 1 are drawn.  Pixels are not
drawn outside the area covered by the clip-mask or where the clip-mask
has a bit set to 0.  The clip-mask affects all graphics requests.  The
clip-mask does not clip sources.  The clip-mask origin is interpreted
relative to the origin of whatever destination drawable is specified in
a graphics request.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dDash_002dOffset"></a><u>Attribute:</u> <b>x:GC-Dash-Offset</b></dt>
<dd><p>Defines the phase of the pattern, specifying how many pixels into the
dash-list the pattern should actually begin in any single graphics
request.  Dashing is continuous through path elements combined with a
join-style but is reset to the dash-offset between each sequence of
joined lines.
</p>
<p>The unit of measure for dashes is the same for the ordinary
coordinate system.  Ideally, a dash length is measured along
the slope of the line, but implementations are only required
to match this ideal for horizontal and vertical lines.
Failing the ideal semantics, it is suggested that the length
be measured along the major axis of the line.  The major
axis is defined as the x axis for lines drawn at an angle of
between -45 and +45 degrees or between 135 and 225 degrees
from the x axis.  For all other lines, the major axis is the
y axis.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dDash_002dList"></a><u>Attribute:</u> <b>x:GC-Dash-List</b></dt>
<dd><p>There must be at least one element in the specified <var>dash-list</var>.
The initial and alternating elements (second, fourth, and so on) of the
<var>dash-list</var> are the even dashes, and the others are the odd dashes.
Each element specifies a dash length in pixels.  All of the elements
must be nonzero.  Specifying an odd-length list is equivalent to
specifying the same list concatenated with itself to produce an
even-length list.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aGC_002dArc_002dMode"></a><u>Attribute:</u> <b>x:GC-Arc-Mode</b></dt>
<dd><p>The arc-mode controls filling in the X:Fill-Arcs function and can be set
to x:Arc-Pie-Slice or x:Arc-Chord.
</p><dl compact="compact">
<dt> <tt>x:Arc-Pie-Slice</tt></dt>
<dd><p>The arcs are pie-slice filled.
</p></dd>
<dt> <tt>x:Arc-Chord</tt></dt>
<dd><p>The arcs are chord filled.
</p></dd>
</dl>
</dd></dl>


<hr size="6">
<a name="Cursor"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Graphics-Context" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Colormap" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Graphics-Context" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Colormap" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Cursor-1"></a>
<h1 class="chapter">5. Cursor</h1>

<dl>
<dt><a name="index-x_003acreate_002dcursor"></a><u>Function:</u> <b>x:create-cursor</b><i> display shape</i></dt>
<dd><p>X provides a set of standard cursor shapes in a special font named
<a name="index-cursor"></a>
<em>cursor</em>.  Applications are encouraged to use this interface for
their cursors because the font can be customized for the individual
display type.  The <var>shape</var> argument specifies which glyph of the standard
fonts to use.
</p>
<p>The hotspot comes from the information stored in the cursor font.  The
initial colors of a cursor are a black foreground and a white background
(see X:Recolor-Cursor).  The names of all cursor shapes are defined with
the prefix XC: in &lsquo;<tt>x11.scm</tt>&rsquo;.
</p>
</dd><dt><a name="index-x_003acreate_002dcursor-1"></a><u>Function:</u> <b>x:create-cursor</b><i> source-font source-char mask-font mask-char fgc bgc</i></dt>
<dd><p>Creates a cursor from the source and mask bitmaps obtained from the
specified font glyphs.  The integer <var>source-char</var> must be a defined
glyph in <var>source-font</var>.  The integer <var>mask-char</var> must be a
defined glyph in <var>mask-font</var>.  The origins of the <var>source-char</var>
and <var>mask-char</var> glyphs are positioned coincidently and define the
hotspot.  The <var>source-char</var> and <var>mask-char</var> need not have the
same bounding box metrics, and there is no restriction on the placement
of the hotspot relative to the bounding boxes.
</p>
</dd><dt><a name="index-x_003acreate_002dcursor-2"></a><u>Function:</u> <b>x:create-cursor</b><i> source-font source-char #f #f fgc bgc</i></dt>
<dd><p>If <var>mask-font</var> and <var>mask-char</var> are #f, all pixels of the source
are displayed.
</p>
</dd><dt><a name="index-x_003acreate_002dcursor-3"></a><u>Function:</u> <b>x:create-cursor</b><i> source-pixmap mask-pixmap fgc bgc origin</i></dt>
<dd><p><var>mask-pixmap</var> must be the same size as the pixmap defined by the
<var>source-pixmap</var> argument.  The foreground and background RGB values
must be specified using <var>foreground-color</var> and
<var>background-color</var>, even if the X server only has a x:Static-Gray or
x:Gray-Scale screen.  The hotspot must be a point within the
<var>source-pixmap</var>.
</p>
<p><code>X:Create-Cursor</code> creates and returns a cursor.  The
<var>foreground-color</var> is used for the pixels set to 1 in the source,
and the <var>background-color</var> is used for the pixels set to 0.  Both
source and mask must have depth one but can have any root.  The
<var>mask-pixmap</var> defines the shape of the cursor.  The pixels set to 1
in <var>mask-pixmap</var> define which source pixels are displayed, and the
pixels set to 0 define which pixels are ignored.
</p>
</dd><dt><a name="index-x_003acreate_002dcursor-4"></a><u>Function:</u> <b>x:create-cursor</b><i> source-pixmap #f fgc bgc origin</i></dt>
<dd><p>If <var>mask-pixmap</var> is #f, all pixels of the source are displayed.
</p></dd></dl>

<hr size="6">
<a name="Colormap"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Cursor" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Rendering" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Cursor" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Rendering" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Colormap-1"></a>
<h1 class="chapter">6. Colormap</h1>

<a name="index-colormap"></a>
<a name="index-RGB"></a>
<p>A <em>colormap</em> maps pixel values to <em>RGB</em> color space values.
</p>
<dl>
<dt><a name="index-x_003acreate_002dcolormap"></a><u>Function:</u> <b>x:create-colormap</b><i> window visual alloc-policy</i></dt>
<dd><p><var>window</var> specifies the window on whose screen you want to create a
colormap.  <var>visual</var> specifies a visual type supported on the screen.
<var>alloc-policy</var> Specifies the colormap entries to be allocated.  You
can pass <code>X:Alloc-None</code> or <code>X:Alloc-All</code>.
</p>
<p>The <code>X:Create-Colormap</code> function creates and returns a colormap of
the specified <var>visual</var> type for the screen on which <var>window</var>
resides.  Note that <var>window</var> is used only to determine the screen.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>X:Gray-Scale</samp>&rsquo;</dt>
<dt> &lsquo;<samp>X:Pseudo-Color</samp>&rsquo;</dt>
<dt> &lsquo;<samp>X:Direct-Color</samp>&rsquo;</dt>
<dd><p>The initial values of the colormap entries are undefined.
</p>
</dd>
<dt> &lsquo;<samp>X:Static-Gray</samp>&rsquo;</dt>
<dt> &lsquo;<samp>X:Static-Color</samp>&rsquo;</dt>
<dt> &lsquo;<samp>X:True-Color</samp>&rsquo;</dt>
<dd><p>The entries have defined values, but those values are specific to
<var>visual</var> and are not defined by X.  The <var>alloc-policy</var> must be
&lsquo;<samp>X:Alloc-None</samp>&rsquo;.
</p>
</dd>
</dl>

<p>For the other visual classes, if <var>alloc-policy</var> is
&lsquo;<samp>X:Alloc-None</samp>&rsquo;, the colormap initially has no allocated entries,
and clients can allocate them.
</p>
<p>If <var>alloc-policy</var> is &lsquo;<samp>X:Alloc-All</samp>&rsquo;, the entire colormap is
allocated writable.  The initial values of all allocated entries are
undefined.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>X:Gray-Scale</samp>&rsquo;</dt>
<dt> &lsquo;<samp>X:Pseudo-Color</samp>&rsquo;</dt>
<dd><p>The effect is as if an <code>XAllocColorCells</code> call returned all pixel
values from zero to N - 1, where N is the colormap entries value in
<var>visual</var>.
</p>
</dd>
<dt> &lsquo;<samp>X:Direct-Color</samp>&rsquo;</dt>
<dd><p>The effect is as if an <code>XAllocColorPlanes</code> call returned a pixel
value of zero and red_mask, green_mask, and blue_mask values containing
the same bits as the corresponding masks in the specified visual.
</p></dd>
</dl>

</dd></dl>


<p>To create a new colormap when the allocation out of a previously
shared colormap has failed because of resource exhaustion, use:
</p>
<dl>
<dt><a name="index-x_003acopy_002dcolormap_002dand_002dfree"></a><u>Function:</u> <b>x:copy-colormap-and-free</b><i> colormap</i></dt>
<dd>
<p>Creates and returns a colormap of the same visual type and for the same
screen as the specified <var>colormap</var>.  It also moves all of the
client&rsquo;s existing allocation from the specified <var>colormap</var> to the
new colormap with their color values intact and their read-only or
writable characteristics intact and frees those entries in the specified
colormap.  Color values in other entries in the new colormap are
undefined.  If the specified colormap was created by the client with
alloc set to &lsquo;<samp>X:Alloc-All</samp>&rsquo;, the new colormap is also created with
&lsquo;<samp>X:Alloc-All</samp>&rsquo;, all color values for all entries are copied from the
specified <var>colormap</var>, and then all entries in the specified
<var>colormap</var> are freed.  If the specified <var>colormap</var> was not
created by the client with &lsquo;<samp>X:Alloc-All</samp>&rsquo;, the allocations to be moved
are all those pixels and planes that have been allocated by the client
and that have not been freed since they were allocated.
</p>
</dd></dl>

<p>A <em>colormap</em> maps pixel values to elements of the <em>RGB</em>
datatype.  An <var>RGB</var> is a list or vector of 3 integers, describing
the red, green, and blue intensities respectively.  The integers are in
the range 0 - 65535.
</p>
<dl>
<dt><a name="index-x_003aalloc_002dcolormap_002dcells"></a><u>Function:</u> <b>x:alloc-colormap-cells</b><i> colormap ncolors nplanes</i></dt>
<dt><a name="index-x_003aalloc_002dcolormap_002dcells-1"></a><u>Function:</u> <b>x:alloc-colormap-cells</b><i> colormap ncolors nplanes contiguous?</i></dt>
<dd>
<p>The <code>X:Alloc-Color-Cells</code> function allocates read/write color
cells.  The number of colors, <var>ncolors</var> must be positive and the
number of planes, <var>nplanes</var> nonnegative.  If <var>ncolors</var> and
nplanes are requested, then <var>ncolors</var> pixels and nplane plane masks
are returned.  No mask will have any bits set to 1 in common with any
other mask or with any of the pixels.  By ORing together each pixel with
zero or more masks, <var>ncolors</var> * 2^<var>nplanes</var> distinct pixels can
be produced.  All of these are allocated writable by the request.
</p>
<dl compact="compact">
<dt> &lsquo;<samp>x:Gray-Scale</samp>&rsquo;</dt>
<dt> &lsquo;<samp>x:Pseudo-Color</samp>&rsquo;</dt>
<dd><p>Each mask has exactly one bit set to 1.  If <var>contiguous?</var> is
non-false and if all masks are ORed together, a single contiguous set of
bits set to 1 is formed.
</p></dd>
<dt> &lsquo;<samp>x:Direct-Color</samp>&rsquo;</dt>
<dd><p>Each mask has exactly three bits set to 1.  If <var>contiguous?</var> is
non-false and if all masks are ORed together, three contiguous sets of
bits set to 1 (one within each pixel subfield) is formed.
</p></dd>
</dl>

<p>The RGB values of the allocated entries are undefined.
<code>X:Alloc-Color-Cells</code> returns a list of two uniform arrays if it
succeeded or #f if it failed.  The first array has the pixels allocated
and the second has the plane-masks.
</p>

</dd><dt><a name="index-x_003aalloc_002dcolormap_002dcells-2"></a><u>Function:</u> <b>x:alloc-colormap-cells</b><i> colormap ncolors rgb</i></dt>
<dt><a name="index-x_003aalloc_002dcolormap_002dcells-3"></a><u>Function:</u> <b>x:alloc-colormap-cells</b><i> colormap ncolors rgb contiguous?</i></dt>
<dd>
<p>The specified <var>ncolors</var> must be positive; and <var>rgb</var> a list or
vector of 3 nonnegative integers.  If <var>ncolors</var> colors, <var>nreds</var>
reds, <var>ngreens</var> greens, and <var>nblues</var> blues are requested,
<var>ncolors</var> pixels are returned; and the masks have <var>nreds</var>,
<var>ngreens</var>, and <var>nblues</var> bits set to 1, respectively.  If
<var>contiguous?</var> is non-false, each mask will have a contiguous set of
bits set to 1.  No mask will have any bits set to 1 in common with any
other mask or with any of the pixels.
</p>
<p>Each mask will lie within the corresponding pixel subfield.  By ORing
together subsets of masks with each pixel value, <var>ncolors</var> *
2(<var>nreds</var>+<var>ngreens</var>+<var>nblues</var>) distinct pixel values can be
produced.  All of these are allocated by the request.  However, in the
colormap, there are only <var>ncolors</var> * 2^<var>nreds</var> independent red
entries, <var>ncolors</var> * 2^<var>ngreens</var> independent green entries, and
<var>ncolors</var> * 2^<var>nblues</var> independent blue entries.
</p>
<p><code>X:Alloc-Color-Cells</code> returns a list if it succeeded or #f if it
failed.  The first element of the list has an array of the pixels
allocated.  The second, third, and fourth elements are the red, green,
and blue plane-masks.
</p></dd></dl>

<dl>
<dt><a name="index-x_003afree_002dcolormap_002dcells"></a><u>Function:</u> <b>x:free-colormap-cells</b><i> colormap pixels planes</i></dt>
<dt><a name="index-x_003afree_002dcolormap_002dcells-1"></a><u>Function:</u> <b>x:free-colormap-cells</b><i> colormap pixels</i></dt>
<dd>
<p>Frees the cells represented by pixels whose values are in the
<var>pixels</var> unsigned-integer uniform-vector.  The <var>planes</var> argument
should not have any bits set to 1 in common with any of the pixels.  The
set of all pixels is produced by ORing together subsets of the
<var>planes</var> argument with the pixels.  The request frees all of these
pixels that were allocated by the client.  Note that freeing an
individual pixel obtained from <code>X:Alloc-Colormap-Cells</code> with a
planes argument may not actually allow it to be reused until all of its
related pixels are also freed.  Similarly, a read-only entry is not
actually freed until it has been freed by all clients, and if a client
allocates the same read-only entry multiple times, it must free the
entry that many times before the entry is actually freed.
</p>
<p>All specified pixels that are allocated by the client in the
<var>colormap</var> are freed, even if one or more pixels produce an error.
It is an error if a specified pixel is not allocated by the client (that
is, is unallocated or is only allocated by another client) or if the
colormap was created with all entries writable (by passing
&lsquo;<samp>x:Alloc-All</samp>&rsquo; to <code>X:Create-Colormap</code>).  If more than one pixel
is in error, the one that gets reported is arbitrary.
</p></dd></dl>

<dl>
<dt><a name="index-x_003acolormap_002dfind_002dcolor"></a><u>Function:</u> <b>x:colormap-find-color</b><i> colormap rgb</i></dt>
<dd>
<p><var>rgb</var> is a list or vector of 3 integers, describing the red, green,
and blue intensities respectively; or an integer &lsquo;<samp>#x<i>rrggbb</i></samp>&rsquo;,
packing red, green and blue intensities in the range 0 - 255.
</p>
</dd><dt><a name="index-x_003acolormap_002dfind_002dcolor-1"></a><u>Function:</u> <b>x:colormap-find-color</b><i> colormap color-name</i></dt>
<dd>
<p>The case-insensitive string <var>color_name</var> specifies the name of a
color (for example, &lsquo;<tt>red</tt>&rsquo;)
</p>
<p><code>X:Colormap-Find-Color</code> allocates a read-only colormap entry
corresponding to the closest RGB value supported by the hardware.
<code>X:Colormap-Find-Color</code> returns the pixel value of the color
closest to the specified <var>RGB</var> or <var>color_name</var> elements
supported by the hardware, if successful; otherwise
<code>X:Colormap-Find-Color</code> returns #f.
</p>
<p>Multiple clients that request the same effective RGB value can
be assigned the same read-only entry, thus allowing entries to be
shared.  When the last client deallocates a shared cell, it is
deallocated.
</p>
</dd></dl>

<dl>
<dt><a name="index-x_003acolor_002dref"></a><u>Function:</u> <b>x:color-ref</b><i> colormap pixel</i></dt>
<dd>
<p>Returns a list of 3 integers, describing the red, green,
and blue intensities respectively of the <var>colormap</var> entry of the
cell indexed by <var>pixel</var>.
</p>
<p>The integer <var>pixel</var> must be a valid index into <var>colormap</var>.
</p></dd></dl>

<dl>
<dt><a name="index-X_003aColor_002dSet_0021"></a><u>Function:</u> <b>X:Color-Set!</b><i> colormap pixel rgb</i></dt>
<dd>
<p><var>rgb</var> is a list or vector of 3 integers, describing the red, green,
and blue intensities respectively; or an integer &lsquo;<samp>#x<i>rrggbb</i></samp>&rsquo;,
packing red, green and blue intensities in the range 0 - 255.
</p>
</dd><dt><a name="index-X_003aColor_002dSet_0021-1"></a><u>Function:</u> <b>X:Color-Set!</b><i> colormap pixel color-name</i></dt>
<dd>
<p>The case-insensitive string <var>color_name</var> specifies the name of a
color (for example, &lsquo;<tt>red</tt>&rsquo;)
</p>
<p>The integer <var>pixel</var> must be a valid index into <var>colormap</var>.
</p>
<p><code>X:Color-Set!</code> changes the <var>colormap</var> entry of the read/write
cell indexed by <var>pixel</var>.  If the <var>colormap</var> is an installed map
for its screen, the changes are visible immediately.
</p>
</dd></dl>

<dl>
<dt><a name="index-x_003ainstall_002dcolormap"></a><u>Function:</u> <b>x:install-colormap</b><i> colormap</i></dt>
<dd>
<p>Installs the specified <var>colormap</var> for its associated screen.  All
windows associated with <var>colormap</var> immediately display with true
colors.  A colormap is associated with a window when the window is
created or its attributes changed.
</p>
<p>If the specified colormap is not already an installed colormap, the X
server generates a ColormapNotify event on each window that has that
colormap.
</p>
</dd></dl>

<dl>
<dt><a name="index-x_003accc"></a><u>Function:</u> <b>x:ccc</b><i> colormap</i></dt>
<dd><p>Returns the Color-Conversion-Context of <var>colormap</var>.
</p></dd></dl>


<hr size="6">
<a name="Rendering"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Colormap" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Images" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Colormap" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Images" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Rendering-1"></a>
<h1 class="chapter">7. Rendering</h1>

<dl>
<dt><a name="index-x_003aflush"></a><u>Function:</u> <b>x:flush</b><i> display</i></dt>
<dt><a name="index-x_003aflush-1"></a><u>Function:</u> <b>x:flush</b><i> window</i></dt>
<dd><p>Flushes the output buffer.  Some client applications need not use this
function because the output buffer is automatically flushed as needed by
calls to X:Pending, X:Next-Event, and X:Window-Event.  Events generated
by the server may be enqueued into the library&rsquo;s event queue.
</p>
</dd><dt><a name="index-x_003aflush-2"></a><u>Function:</u> <b>x:flush</b><i> gc</i></dt>
<dd><p>Forces sending of GC component changes.
</p>
<p>Xlib usually defers sending changes to the components of a GC to the
server until a graphics function is actually called with that GC.  This
permits batching of component changes into a single server request.  In
some circumstances, however, it may be necessary for the client to
explicitly force sending the changes to the server.  An example might be
when a protocol extension uses the GC indirectly, in such a way that the
extension interface cannot know what GC will be used.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aclear_002darea"></a><u>Function:</u> <b>x:clear-area</b><i> window (x-pos y-pos) (width height) expose?</i></dt>
<dd><p>Paints a rectangular area in the specified <var>window</var> according to the
specified dimensions with the <var>window</var>&rsquo;s background pixel or pixmap.
The subwindow-mode effectively is &lsquo;<samp>x:Clip-By-Children</samp>&rsquo;.  If width
is zero, it is replaced with the current width of the <var>window</var> minus
x.  If height is zero, it is replaced with the current height of the
<var>window</var> minus y.  If the <var>window</var> has a defined background
tile, the rectangle clipped by any children is filled with this tile.
If the <var>window</var> has background x:None, the contents of the
<var>window</var> are not changed.  In either case, if <var>expose?</var> is True,
one or more x:Expose events are generated for regions of the rectangle
that are either visible or are being retained in a backing store.  If
you specify a <var>window</var> whose class is x:Input-Only, an error
results.
</p></dd></dl>

<dl>
<dt><a name="index-x_003afill_002drectangle"></a><u>Function:</u> <b>x:fill-rectangle</b><i> window gcontext position size</i></dt>
</dl>

<a name="Draw-Strings"></a>
<h2 class="heading">Draw Strings</h2>

<dl>
<dt><a name="index-x_003adraw_002dstring"></a><u>Function:</u> <b>x:draw-string</b><i> drawable gc position string</i></dt>
<dd><p><var>Position</var> specifies coordinates relative to the origin of
<var>drawable</var> of the origin of the first character to be drawn.
</p>
<p><code>x:draw-string</code> draws the characters of <var>string</var>, starting at
<var>position</var>.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aimage_002dstring"></a><u>Function:</u> <b>x:image-string</b><i> drawable gc position string</i></dt>
<dd><p><var>Position</var> specifies coordinates relative to the origin of
<var>drawable</var> of the origin of the first character to be drawn.
</p>
<p><code>x:image-string</code> draws the characters <em>and background</em> of
<var>string</var>, starting at <var>position</var>.
</p></dd></dl>

<a name="Draw-Shapes"></a>
<h2 class="heading">Draw Shapes</h2>

<dl>
<dt><a name="index-x_003adraw_002dpoints"></a><u>Function:</u> <b>x:draw-points</b><i> drawable gc position &hellip;</i></dt>
<dd><p><var>Position</var> &hellip; specifies coordinates of the point to be drawn.
</p>
</dd><dt><a name="index-x_003adraw_002dpoints-1"></a><u>Function:</u> <b>x:draw-points</b><i> drawable gc x y &hellip;</i></dt>
<dd><p>(<var>x</var>, <var>y</var>) &hellip; specifies coordinates of the point to be
drawn.
</p>
</dd><dt><a name="index-x_003adraw_002dpoints-2"></a><u>Function:</u> <b>x:draw-points</b><i> drawable gc point-array</i></dt>
<dd><p><var>point-array</var> is a uniform short array of rank 2, whose rightmost
index spans a range of 2.
</p>
<p>The <code>X:Draw-Points</code> procedure uses the foreground pixel and
function components of the <var>gc</var> to draw points into <var>drawable</var>
at the positions (relative to the origin of <var>drawable</var>) specified.
</p>
<p><code>X:Draw-Points</code> uses these <var>gc</var> components: function,
planemask, foreground, subwindow-mode, clip-x-origin, clip-y-origin, and
clip-mask.
</p></dd></dl>


<dl>
<dt><a name="index-x_003adraw_002dsegments"></a><u>Function:</u> <b>x:draw-segments</b><i> drawable gc pos1 pos2 &hellip;</i></dt>
<dd><p><var>Pos1</var>, <var>pos2</var>, &hellip; specify coordinates to be connected by
segments.
</p>
</dd><dt><a name="index-x_003adraw_002dsegments-1"></a><u>Function:</u> <b>x:draw-segments</b><i> drawable gc x1 y1 x2 y2 &hellip;</i></dt>
<dd><p>(<var>x1</var>, <var>y1</var>), (<var>x2</var>, <var>y2</var>) &hellip; specify coordinates
to be connected by segments.
</p>
</dd><dt><a name="index-x_003adraw_002dsegments-2"></a><u>Function:</u> <b>x:draw-segments</b><i> drawable gc point-array</i></dt>
<dd><p><var>point-array</var> is a uniform short array of rank 2, whose rightmost
index spans a range of 2.
</p>
<p>The <code>X:Draw-Segments</code> procedure uses the components of the
specified <var>gc</var> to draw multiple unconnected lines between disjoint
adjacent pair of points passed as arguments.  It draws the segments in
order and does not perform joining at coincident endpoints.  For any
given line, <code>X:Draw-Segments</code> does not draw a pixel more than once.
If thin (zero line-width) segments intersect, the intersecting pixels
are drawn multiple times.  If wide segments intersect, the intersecting
pixels are drawn only once, as though the entire PolyLine protocol
request were a single, filled shape.  <code>X:Draw-Segments</code> treats all
coordinates as relative to the origin of <var>drawable</var>.
</p>
<p><code>X:Draw-Segments</code> uses these <var>gc</var> components: function,
plane-mask, line-width, line-style, cap-style, fill-style,
subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask, join-style.
It also use these <var>gc</var> mode-dependent components: foreground,
background, tile, stipple, tilestipple-x-origin, tile-stipple-y-origin,
dash-offset, and dash-list.
</p></dd></dl>

<dl>
<dt><a name="index-x_003adraw_002dlines"></a><u>Function:</u> <b>x:draw-lines</b><i> drawable gc pos1 pos2 &hellip;</i></dt>
<dd><p><var>Pos1</var>, <var>pos2</var>, &hellip; specify coordinates to be connected by
lines.
</p>
</dd><dt><a name="index-x_003adraw_002dlines-1"></a><u>Function:</u> <b>x:draw-lines</b><i> drawable gc x1 y1 x2 y2 &hellip;</i></dt>
<dd><p>(<var>x1</var>, <var>y1</var>), (<var>x2</var>, <var>y2</var>) &hellip; specify coordinates
to be connected by lines.
</p>
</dd><dt><a name="index-x_003adraw_002dlines-2"></a><u>Function:</u> <b>x:draw-lines</b><i> drawable gc point-array</i></dt>
<dd><p><var>point-array</var> is a uniform short array of rank 2, whose rightmost
index spans a range of 2.
</p>
<p>The <code>X:Draw-Lines</code> procedure uses the components of the specified
<var>gc</var> to draw lines between each adjacent pair of points passed as
arguments.  It draws the lines in order.  The lines join correctly at
all intermediate points, and if the first and last points coincide, the
first and last lines also join correctly.  For any given line,
<code>X:Draw-Lines</code> does not draw a pixel more than once.  If thin (zero
line-width) lines intersect, the intersecting pixels are drawn multiple
times.  If wide lines intersect, the intersecting pixels are drawn only
once, as though the entire PolyLine protocol request were a single,
filled shape.  <code>X:Draw-Lines</code> treats all coordinates as relative to
the origin of <var>drawable</var>.
</p>
<p><code>X:Draw-Lines</code> uses these <var>gc</var> components: function,
plane-mask, line-width, line-style, cap-style, fill-style,
subwindow-mode, clip-x-origin, clip-y-origin, and clip-mask, join-style.
It also use these <var>gc</var> mode-dependent components: foreground,
background, tile, stipple, tilestipple-x-origin, tile-stipple-y-origin,
dash-offset, and dash-list.
</p></dd></dl>

<dl>
<dt><a name="index-x_003afill_002dpolygon"></a><u>Function:</u> <b>x:fill-polygon</b><i> drawable gc pos1 pos2 &hellip;</i></dt>
<dd><p><var>Pos1</var>, <var>pos2</var>, &hellip; specify coordinates of the border path.
</p>
</dd><dt><a name="index-x_003afill_002dpolygon-1"></a><u>Function:</u> <b>x:fill-polygon</b><i> drawable gc x1 y1 x2 y2 &hellip;</i></dt>
<dd><p>(<var>x1</var>, <var>y1</var>), (<var>x2</var>, <var>y2</var>) &hellip; specify coordinates
of the border path.
</p>
</dd><dt><a name="index-x_003afill_002dpolygon-2"></a><u>Function:</u> <b>x:fill-polygon</b><i> drawable gc point-array</i></dt>
<dd><p><var>point-array</var> is a uniform short array of rank 2, whose rightmost
index spans a range of 2.
</p>
<p>The path is closed automatically if the last point in the list or
<var>point-array</var> does not coincide with the first point.
</p>
<p>The <code>X:Fill-Polygon</code> procedure uses the components of the specified
<var>gc</var> to fill the region closed by the specified path.
<code>X:Fill-Polygon</code> does not draw a pixel of the region more than
once.  <code>X:Fill-Polygon</code> treats all coordinates as relative to the
origin of <var>drawable</var>.
</p>
<p><code>X:Fill-Polygon</code> uses these <var>gc</var> components: function,
planemask, fill-style, fill-rule, subwindow-mode, clip-x-origin,
clip-y-origin, and clip-mask.  It also use these <var>gc</var> mode-dependent
components: foreground, background, tile, stipple,
tile-stipple-x-origin, and tile-stipple-y-origin.
</p></dd></dl>

<hr size="6">
<a name="Images"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Rendering" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Event" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Rendering" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Event" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Images-1"></a>
<h1 class="chapter">8. Images</h1>

<dl>
<dt><a name="index-x_003aread_002dbitmap_002dfile"></a><u>Function:</u> <b>x:read-bitmap-file</b><i> drawable file</i></dt>
</dl>

<hr size="6">
<a name="Event"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Images" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Images" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Event-1"></a>
<h1 class="chapter">9. Event</h1>

<p>These three status routines always return immediately if there are
events already in the queue.
</p>
<dl>
<dt><a name="index-x_003aq_002dlength"></a><u>Function:</u> <b>x:q-length</b><i> display</i></dt>
<dd><p>Returns the length of the event queue for the connected <var>display</var>.
Note that there may be more events that have not been read into the
queue yet (see X:Events-Queued).
</p></dd></dl>

<dl>
<dt><a name="index-x_003apending"></a><u>Function:</u> <b>x:pending</b><i> display</i></dt>
<dd><p>Returns the number of events that have been received from the X server
but have not been removed from the event queue.
</p></dd></dl>

<dl>
<dt><a name="index-x_003aevents_002dqueued"></a><u>Function:</u> <b>x:events-queued</b><i> display</i></dt>
<dd><p>Returns the number of events already in the queue if the number is
nonzero.  If there are no events in the queue, <code>X:Events-Queued</code>
attempts to read more events out of the application&rsquo;s connection without
flushing the output buffer and returns the number read.
</p></dd></dl>

<p>Both of these routines return an object of type <em>event</em>.
</p>
<dl>
<dt><a name="index-x_003anext_002devent"></a><u>Function:</u> <b>x:next-event</b><i> display</i></dt>
<dd><p>Removes and returns the first event from the event queue.  If the event
queue is empty, <code>X:Next-Event</code> flushes the output buffer and blocks
until an event is received.
</p></dd></dl>

<dl>
<dt><a name="index-x_003apeek_002devent"></a><u>Function:</u> <b>x:peek-event</b><i> display</i></dt>
<dd><p>Returns the first event from the event queue, but it does not remove the
event from the queue.  If the queue is empty, <code>X:Peek-Event</code>
flushes the output buffer and blocks until an event is received.
</p></dd></dl>

<p>Each event object has fields dependent on its sub-type.
</p>
<dl>
<dt><a name="index-x_003aevent_002dref"></a><u>Function:</u> <b>x:event-ref</b><i> event field-name</i></dt>
<dd><table>
<tr><td width="40%">window</td><td width="60%">The window on which <var>event</var> was generated and is referred to as the
event window.</td></tr>
<tr><td width="40%">root</td><td width="60%">is the event window&rsquo;s root window.</td></tr>
<tr><td width="40%">subwindow</td><td width="60%">If the source window is an inferior of the event window, the
<var>subwindow</var> is the child of the event window that is the source
window or the child of the event window that is an ancestor of the
source window.  Otherwise, &lsquo;<samp>None</samp>&rsquo;.</td></tr>
<tr><td width="40%">X-event:type</td><td width="60%">An integer: <var>x:Key-Press</var>, <var>x:Key-Release</var>,
<var>x:Button-Press</var>, <var>x:Button-Release</var>, <var>x:Motion-Notify</var>,
<var>x:Enter-Notify</var>, <var>x:Leave-Notify</var>, <var>x:Focus-In</var>,
<var>x:Focus-Out</var>, <var>x:Keymap-Notify</var>, <var>x:Expose</var>,
<var>x:Graphics-Expose</var>, <var>x:No-Expose</var>, <var>x:Visibility-Notify</var>,
<var>x:Create-Notify</var>, <var>x:Destroy-Notify</var>, <var>x:Unmap-Notify</var>,
<var>x:Map-Notify</var>, <var>x:Map-Request</var>, <var>x:Reparent-Notify</var>,
<var>x:Configure-Notify</var>, <var>x:Configure-Request</var>,
<var>x:Gravity-Notify</var>, <var>x:Resize-Request</var>,
<var>x:Circulate-Notify</var>, <var>x:Circulate-Request</var>,
<var>x:Property-Notify</var>, <var>x:Selection-Clear</var>,
<var>x:Selection-Request</var>, <var>x:Selection-Notify</var>,
<var>x:Colormap-Notify</var>, <var>x:Client-Message</var>, or
<var>x:Mapping-Notify</var>.</td></tr>
<tr><td width="40%">X-event:serial</td><td width="60%">The serial number of the protocol request that generated the <var>event</var>.</td></tr>
<tr><td width="40%">X-event:send-event</td><td width="60%">Boolean that indicates whether the event was sent by a different client.</td></tr>
<tr><td width="40%">X-event:time</td><td width="60%">The time when the <var>event</var> was generated expressed in milliseconds.</td></tr>
<tr><td width="40%">X-event:x</td></tr>
<tr><td width="40%">X-event:y</td><td width="60%">For window entry/exit events the <var>x</var> and <var>y</var> members are set to
the coordinates of the pointer position in the event window.  This
position is always the pointer&rsquo;s final position, not its initial
position.  If the event window is on the same screen as the root window,
<var>x</var> and <var>y</var> are the pointer coordinates relative to the event
window&rsquo;s origin.  Otherwise, <var>x</var> and <var>y</var> are set to zero.

<p>For expose events The <var>x</var> and <var>y</var> members are set to the
coordinates relative to the drawable&rsquo;s origin and indicate the
upper-left corner of the rectangle.
</p>
<p>For configure, create, gravity, and reparent events the <var>x</var> and
<var>y</var> members are set to the window&rsquo;s coordinates relative to the
parent window&rsquo;s origin and indicate the position of the upper-left
outside corner of the created window.
</p></td></tr>
<tr><td width="40%">X-event:x-root</td></tr>
<tr><td width="40%">X-event:y-root</td><td width="60%">The pointer&rsquo;s coordinates relative to the root window&rsquo;s origin at the
time of the <var>event</var>.</td></tr>
<tr><td width="40%">X-event:state</td><td width="60%">For keyboard, pointer and window entry/exit events, the state member is
set to indicate the logical state of the pointer buttons and modifier
keys just prior to the <var>event</var>, which is the bitwise inclusive OR of
one or more of the button or modifier key masks: <var>x:Button1-Mask</var>,
<var>x:Button2-Mask</var>, <var>x:Button3-Mask</var>, <var>x:Button4-Mask</var>,
<var>x:Button5-Mask</var>, <var>x:Shift-Mask</var>, <var>x:Lock-Mask</var>,
<var>x:Control-Mask</var>, <var>x:Mod1-Mask</var>, <var>x:Mod2-Mask</var>,
<var>x:Mod3-Mask</var>, <var>x:Mod4-Mask</var>, and <var>x:Mod5-Mask</var>.

<p>For visibility events, the state of the window&rsquo;s visibility:
<var>x:Visibility-Unobscured</var>, <var>x:Visibility-Partially-Obscured</var>, or
<var>x:Visibility-Fully-Obscured</var>.
</p>
<p>For colormap events, indicates whether the colormap is installed or
uninstalled: x:Colormap-Installed or x:Colormap-Uninstalled.
</p>
<p>For property events, indicates whether the property was changed to a new
value or deleted: x:Property-New-Value or x:Property-Delete.
</p></td></tr>
<tr><td width="40%">X-event:keycode</td><td width="60%">An integer that represents a physical key on the keyboard.</td></tr>
<tr><td width="40%">X-event:same-screen</td><td width="60%">Indicates whether the event window is on the same screen as the root
window.  If #t, the event and root windows are on the same screen.  If
#f, the event and root windows are not on the same screen.</td></tr>
<tr><td width="40%">X-event:button</td><td width="60%">The pointer button that changed state; can be the <var>x:Button1</var>,
<var>x:Button2</var>, <var>x:Button3</var>, <var>x:Button4</var>, or <var>x:Button5</var>
value.</td></tr>
<tr><td width="40%">X-event:is-hint</td><td width="60%">Detail of motion-notify events: <var>x:Notify-Normal</var> or
<var>x:Notify-Hint</var>.</td></tr>
<tr><td width="40%">X-event:mode</td><td width="60%">Indicates whether the <var>event</var> is a normal event, pseudo-motion event
when a grab activates, or a pseudo-motion event when a grab deactivates:
<var>x:Notify-Normal</var>, <var>x:Notify-Grab</var>, or <var>x:Notify-Ungrab</var>.</td></tr>
<tr><td width="40%">X-event:detail</td><td width="60%">Indicates the notification detail: <var>x:Notify-Ancestor</var>,
<var>x:Notify-Virtual</var>, <var>x:Notify-Inferior</var>,
<var>x:Notify-Nonlinear</var>, or <var>x:Notify-Nonlinear-Virtual</var>.</td></tr>
<tr><td width="40%">X-event:focus</td><td width="60%">If the event window is the focus window or an inferior of the focus
window, #t; otherwise #f.</td></tr>
<tr><td width="40%">X-event:width</td></tr>
<tr><td width="40%">X-event:height</td><td width="60%">The size (extent) of the rectangle.</td></tr>
<tr><td width="40%">X-event:count</td><td width="60%">For mapping events is the number of keycodes altered.

<p>For expose events Is the number of Expose or GraphicsExpose events that
are to follow.  If count is zero, no more Expose events follow for this
window.  However, if count is nonzero, at least that number of Expose
events (and possibly more) follow for this window.  Simple applications
that do not want to optimize redisplay by distinguishing between
subareas of its window can just ignore all Expose events with nonzero
counts and perform full redisplays on events with zero counts.
</p></td></tr>
<tr><td width="40%">X-event:major-code</td><td width="60%">The major_code member is set to the graphics request initiated by the
client and can be either X_CopyArea or X_CopyPlane.  If it is
X_CopyArea, a call to XCopyArea initiated the request.  If it is
X_CopyPlane, a call to XCopyPlane initiated the request.</td></tr>
<tr><td width="40%">X-event:minor-code</td><td width="60%">Not currently used.</td></tr>
<tr><td width="40%">X-event:border-width</td><td width="60%">For configure events, the width of the window&rsquo;s border, in pixels.</td></tr>
<tr><td width="40%">X-event:override-redirect</td><td width="60%">The override-redirect attribute of the window.  Window manager clients
normally should ignore this window if it is #t.</td></tr>
<tr><td width="40%">X-event:from-configure</td><td width="60%">True if the event was generated as a result of a resizing of the
window&rsquo;s parent when the window itself had a win-gravity of
x:Unmap-Gravity.</td></tr>
<tr><td width="40%">X-event:value-mask</td><td width="60%">Indicates which components were specified in the ConfigureWindow
protocol request.  The corresponding values are reported as given in the
request.  The remaining values are filled in from the current geometry
of the window, except in the case of above (sibling) and detail
(stack-mode), which are reported as None and Above, respectively, if
they are not given in the request.</td></tr>
<tr><td width="40%">X-event:place</td><td width="60%">The window&rsquo;s position after the restack occurs and is either
x:Place-On-Top or x:Place-On-Bottom.  If it is x:Place-On-Top, the
window is now on top of all siblings.  If it is x:Place-On-Bottom, the
window is now below all siblings.</td></tr>
<tr><td width="40%">X-event:new</td><td width="60%">indicate whether the colormap for the specified window was changed or
installed or uninstalled and can be True or False.  If it is True, the
colormap was changed.  If it is False, the colormap was installed or
uninstalled.</td></tr>
<tr><td width="40%">X-event:format</td><td width="60%">Is 8, 16, or 32 and specifies whether the data should be viewed as a
list of bytes, shorts, or longs</td></tr>
<tr><td width="40%">X-event:request</td><td width="60%">Indicates the kind of mapping change that occurred and can be
<var>x:Mapping-Modifier</var>, <var>x:Mapping-Keyboard</var>, or
<var>x:Mapping-Pointer</var>.  If it is <var>x:Mapping-Modifier</var>, the
modifier mapping was changed.  If it is <var>x:Mapping-Keyboard</var>, the
keyboard mapping was changed.  If it is <var>x:Mapping-Pointer</var>, the
pointer button mapping was changed.</td></tr>
<tr><td width="40%">X-event:first-keycode</td><td width="60%">The X-event:first-keycode is set only if the X-event:request was set to
<var>x:Mapping-Keyboard</var>.  The number in X-event:first-keycode
represents the first number in the range of the altered mapping, and
X-event:count represents the number of keycodes altered.</td></tr>
</table>
</dd></dl>

<hr size="6">
<a name="Indexes"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Event" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Procedure-and-Macro-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Event" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Indexes-1"></a>
<h1 class="unnumbered">Indexes</h1>

<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Procedure-and-Macro-Index">Procedure and Macro Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">   
</td></tr>
<tr><td align="left" valign="top"><a href="#Variable-Index">Variable Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              
</td></tr>
<tr><td align="left" valign="top"><a href="#Concept-Index">Concept Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               
</td></tr>
</table>

<hr size="6">
<a name="Procedure-and-Macro-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Indexes" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Indexes" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Procedure-and-Macro-Index-1"></a>
<h2 class="unnumberedsec">Procedure and Macro Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Procedure-and-Macro-Index-1_fn_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Procedure-and-Macro-Index-1_fn_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-fn">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Procedure-and-Macro-Index-1_fn_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-hostname_003anumber_002escreen_002dnumber"><code>hostname:number.screen-number</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Procedure-and-Macro-Index-1_fn_letter-X">X</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aalloc_002dcolormap_002dcells"><code>x:alloc-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aalloc_002dcolormap_002dcells-1"><code>x:alloc-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aalloc_002dcolormap_002dcells-2"><code>x:alloc-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aalloc_002dcolormap_002dcells-3"><code>x:alloc-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003accc"><code>x:ccc</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aclear_002darea"><code>x:clear-area</code></a></td><td valign="top"><a href="#Rendering">7. Rendering</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aclose"><code>x:close</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aclose-1"><code>x:close</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aclose-2"><code>x:close</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acolor_002dref"><code>x:color-ref</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-X_003aColor_002dSet_0021"><code>X:Color-Set!</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-X_003aColor_002dSet_0021-1"><code>X:Color-Set!</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acolormap_002dfind_002dcolor"><code>x:colormap-find-color</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acolormap_002dfind_002dcolor-1"><code>x:colormap-find-color</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acopy_002dcolormap_002dand_002dfree"><code>x:copy-colormap-and-free</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acopy_002dgc_002dfields_0021"><code>x:copy-gc-fields!</code></a></td><td valign="top"><a href="#Graphics-Context">4. Graphics Context</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcolormap"><code>x:create-colormap</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcursor"><code>x:create-cursor</code></a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcursor-1"><code>x:create-cursor</code></a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcursor-2"><code>x:create-cursor</code></a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcursor-3"><code>x:create-cursor</code></a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dcursor-4"><code>x:create-cursor</code></a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dgc"><code>x:create-gc</code></a></td><td valign="top"><a href="#Graphics-Context">4. Graphics Context</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dpixmap"><code>x:create-pixmap</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dpixmap-1"><code>x:create-pixmap</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dwindow"><code>x:create-window</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003acreate_002dwindow-1"><code>x:create-window</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dccc"><code>x:default-ccc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dccc-1"><code>x:default-ccc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dccc-2"><code>x:default-ccc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dcolormap"><code>x:default-colormap</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dcolormap-1"><code>x:default-colormap</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dcolormap-2"><code>x:default-colormap</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dgc"><code>x:default-gc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dgc-1"><code>x:default-gc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dgc-2"><code>x:default-gc</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dscreen"><code>x:default-screen</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dvisual"><code>x:default-visual</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dvisual-1"><code>x:default-visual</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adefault_002dvisual-2"><code>x:default-visual</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dlines"><code>x:draw-lines</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dlines-1"><code>x:draw-lines</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dlines-2"><code>x:draw-lines</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dpoints"><code>x:draw-points</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dpoints-1"><code>x:draw-points</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dpoints-2"><code>x:draw-points</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dsegments"><code>x:draw-segments</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dsegments-1"><code>x:draw-segments</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dsegments-2"><code>x:draw-segments</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003adraw_002dstring"><code>x:draw-string</code></a></td><td valign="top"><a href="#Draw-Strings">Draw Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aevent_002dref"><code>x:event-ref</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aevents_002dqueued"><code>x:events-queued</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afill_002dpolygon"><code>x:fill-polygon</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afill_002dpolygon-1"><code>x:fill-polygon</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afill_002dpolygon-2"><code>x:fill-polygon</code></a></td><td valign="top"><a href="#Draw-Shapes">Draw Shapes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afill_002drectangle"><code>x:fill-rectangle</code></a></td><td valign="top"><a href="#Rendering">7. Rendering</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aflush"><code>x:flush</code></a></td><td valign="top"><a href="#Rendering">7. Rendering</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aflush-1"><code>x:flush</code></a></td><td valign="top"><a href="#Rendering">7. Rendering</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aflush-2"><code>x:flush</code></a></td><td valign="top"><a href="#Rendering">7. Rendering</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afree_002dcolormap_002dcells"><code>x:free-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003afree_002dcolormap_002dcells-1"><code>x:free-colormap-cells</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003agc_002dref"><code>x:gc-ref</code></a></td><td valign="top"><a href="#Graphics-Context">4. Graphics Context</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003agc_002dset_0021"><code>x:gc-set!</code></a></td><td valign="top"><a href="#Graphics-Context">4. Graphics Context</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aget_002dwindow_002dproperty"><code>x:get-window-property</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aget_002dwindow_002dproperty-1"><code>x:get-window-property</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aimage_002dstring"><code>x:image-string</code></a></td><td valign="top"><a href="#Draw-Strings">Draw Strings</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ainstall_002dcolormap"><code>x:install-colormap</code></a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003alist_002dproperties"><code>x:list-properties</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003amake_002dvisual"><code>x:make-visual</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003amake_002dvisual-1"><code>x:make-visual</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003amap_002dsubwindows"><code>x:map-subwindows</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003amap_002dwindow"><code>x:map-window</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003anext_002devent"><code>x:next-event</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aopen_002ddisplay"><code>x:open-display</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003apeek_002devent"><code>x:peek-event</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003apending"><code>x:pending</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aprotocol_002dversion"><code>x:protocol-version</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aq_002dlength"><code>x:q-length</code></a></td><td valign="top"><a href="#Event">9. Event</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aread_002dbitmap_002dfile"><code>x:read-bitmap-file</code></a></td><td valign="top"><a href="#Images">8. Images</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aroot_002dwindow"><code>x:root-window</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aroot_002dwindow-1"><code>x:root-window</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aroot_002dwindow-2"><code>x:root-window</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dblack"><code>x:screen-black</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dblack-1"><code>x:screen-black</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dblack-2"><code>x:screen-black</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dcells"><code>x:screen-cells</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dcells-1"><code>x:screen-cells</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dcells-2"><code>x:screen-cells</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dcount"><code>x:screen-count</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepth"><code>x:screen-depth</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepth-1"><code>x:screen-depth</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepth-2"><code>x:screen-depth</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepth-3"><code>x:screen-depth</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepths"><code>x:screen-depths</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepths-1"><code>x:screen-depths</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddepths-2"><code>x:screen-depths</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddimensions"><code>x:screen-dimensions</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddimensions-1"><code>x:screen-dimensions</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002ddimensions-2"><code>x:screen-dimensions</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dsize"><code>x:screen-size</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dsize-1"><code>x:screen-size</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dsize-2"><code>x:screen-size</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dwhite"><code>x:screen-white</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dwhite-1"><code>x:screen-white</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003ascreen_002dwhite-2"><code>x:screen-white</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aserver_002dvendor"><code>x:server-vendor</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aunmap_002dsubwindows"><code>x:unmap-subwindows</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aunmap_002dwindow"><code>x:unmap-window</code></a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avendor_002drelease"><code>x:vendor-release</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dclass"><code>x:visual-class</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dclass-1"><code>x:visual-class</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dclass-2"><code>x:visual-class</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dgeometry"><code>x:visual-geometry</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dgeometry-1"><code>x:visual-geometry</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003avisual_002dgeometry-2"><code>x:visual-geometry</code></a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003awindow_002dgeometry"><code>x:window-geometry</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003awindow_002dgeometry_002dset_0021"><code>x:window-geometry-set!</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003awindow_002dref"><code>x:window-ref</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003awindow_002dset_0021"><code>x:window-set!</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Procedure-and-Macro-Index-1_fn_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Procedure-and-Macro-Index-1_fn_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="Variable-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Procedure-and-Macro-Index" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Indexes" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Variable-Index-1"></a>
<h2 class="unnumberedsec">Variable Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Variable-Index-1_vr_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-vr">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-X">X</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBack_002dPixel"><code>x:CW-Back-Pixel</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBack_002dPixmap"><code>x:CW-Back-Pixmap</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBacking_002dPixel"><code>x:CW-Backing-Pixel</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBacking_002dPlanes"><code>x:CW-Backing-Planes</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBacking_002dStore"><code>x:CW-Backing-Store</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBit_002dGravity"><code>x:CW-Bit-Gravity</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBorder_002dPixel"><code>x:CW-Border-Pixel</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBorder_002dPixmap"><code>x:CW-Border-Pixmap</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dBorder_002dWidth"><code>x:CW-Border-Width</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dColormap"><code>x:CW-Colormap</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dCursor"><code>x:CW-Cursor</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dDont_002dPropagate"><code>x:CW-Dont-Propagate</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dEvent_002dMask"><code>x:CW-Event-Mask</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dHeight"><code>x:CW-Height</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dOverride_002dRedirect"><code>x:CW-Override-Redirect</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dSave_002dUnder"><code>x:CW-Save-Under</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dSibling"><code>x:CW-Sibling</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dStack_002dMode"><code>x:CW-Stack-Mode</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dWidth"><code>x:CW-Width</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCW_002dWin_002dGravity"><code>x:CW-Win-Gravity</code></a></td><td valign="top"><a href="#Window-Attributes">3.2 Window Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCWX"><code>x:CWX</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aCWY"><code>x:CWY</code></a></td><td valign="top"><a href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dArc_002dMode"><code>x:GC-Arc-Mode</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dBackground"><code>x:GC-Background</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dCap_002dStyle"><code>x:GC-Cap-Style</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dClip_002dMask"><code>x:GC-Clip-Mask</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dClip_002dX_002dOrigin"><code>x:GC-Clip-X-Origin</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dClip_002dY_002dOrigin"><code>x:GC-Clip-Y-Origin</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dDash_002dList"><code>x:GC-Dash-List</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dDash_002dOffset"><code>x:GC-Dash-Offset</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dFill_002dRule"><code>x:GC-Fill-Rule</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dFill_002dStyle"><code>x:GC-Fill-Style</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dFont"><code>x:GC-Font</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dForeground"><code>x:GC-Foreground</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dFunction"><code>x:GC-Function</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dGraphics_002dExposures"><code>x:GC-Graphics-Exposures</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dJoin_002dStyle"><code>x:GC-Join-Style</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dLine_002dStyle"><code>x:GC-Line-Style</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dLine_002dWidth"><code>x:GC-Line-Width</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dPlane_002dMask"><code>x:GC-Plane-Mask</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dStipple"><code>x:GC-Stipple</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dSubwindow_002dMode"><code>x:GC-Subwindow-Mode</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dTile"><code>x:GC-Tile</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dTile_002dStip_002dX_002dOrigin"><code>x:GC-Tile-Stip-X-Origin</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aGC_002dTile_002dStip_002dY_002dOrigin"><code>x:GC-Tile-Stip-Y-Origin</code></a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Variable-Index-1_vr_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="Concept-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Variable-Index" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[ &gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Indexes" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Concept-Index-1"></a>
<h2 class="unnumberedsec">Concept Index</h2>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Concept-Index-1_cp_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-D" class="summary-letter"><b>D</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-R" class="summary-letter"><b>R</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-cp">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-colormap">colormap</a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-cursor">cursor</a></td><td valign="top"><a href="#Cursor">5. Cursor</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-depth">depth</a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-drawable">drawable</a></td><td valign="top"><a href="#Drawables">3. Drawables</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Drawable">Drawable</a></td><td valign="top"><a href="#Drawables">3. Drawables</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-map">map</a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mapped">mapped</a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-none">none</a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-RGB">RGB</a></td><td valign="top"><a href="#Colormap">6. Colormap</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-unmap">unmap</a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-unmapped">unmapped</a></td><td valign="top"><a href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-visual">visual</a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Visual">Visual</a></td><td valign="top"><a href="#Display-and-Screens">2. Display and Screens</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-X">X</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-X">X</a></td><td valign="top"><a href="#XlibScm">1. XlibScm</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-x_003aNone">x:None</a></td><td valign="top"><a href="#GC-Attributes">GC Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Xlib"><code>Xlib</code></a></td><td valign="top"><a href="#XlibScm">1. XlibScm</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Concept-Index-1_cp_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-D" class="summary-letter"><b>D</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-R" class="summary-letter"><b>R</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="SEC_Contents"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Table of Contents</h1>
<div class="contents">

<ul class="toc">
  <li><a name="toc-XlibScm-1" href="#XlibScm">1. XlibScm</a></li>
  <li><a name="toc-Display-and-Screens-1" href="#Display-and-Screens">2. Display and Screens</a></li>
  <li><a name="toc-Drawables-1" href="#Drawables">3. Drawables</a>
  <ul class="toc">
    <li><a name="toc-Windows-and-Pixmaps-1" href="#Windows-and-Pixmaps">3.1 Windows and Pixmaps</a></li>
    <li><a name="toc-Window-Attributes-1" href="#Window-Attributes">3.2 Window Attributes</a></li>
    <li><a name="toc-Window-Properties-and-Visibility-1" href="#Window-Properties-and-Visibility">3.3 Window Properties and Visibility</a></li>
  </ul></li>
  <li><a name="toc-Graphics-Context-1" href="#Graphics-Context">4. Graphics Context</a></li>
  <li><a name="toc-Cursor-1" href="#Cursor">5. Cursor</a></li>
  <li><a name="toc-Colormap-1" href="#Colormap">6. Colormap</a></li>
  <li><a name="toc-Rendering-1" href="#Rendering">7. Rendering</a></li>
  <li><a name="toc-Images-1" href="#Images">8. Images</a></li>
  <li><a name="toc-Event-1" href="#Event">9. Event</a></li>
  <li><a name="toc-Indexes-1" href="#Indexes">Indexes</a>
  <ul class="toc">
    <li><a name="toc-Procedure-and-Macro-Index-1" href="#Procedure-and-Macro-Index">Procedure and Macro Index</a></li>
    <li><a name="toc-Variable-Index-1" href="#Variable-Index">Variable Index</a></li>
    <li><a name="toc-Concept-Index-1" href="#Concept-Index">Concept Index</a></li>
  </ul>
</li>
</ul>
</div>
<hr size="1">
<a name="SEC_About"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Indexes" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>About This Document</h1>
<p>
  This document was generated by <em>iwamatsu</em> on <em>March 3, 2010</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
</p>
<p>
  The buttons in the navigation panels have the following meaning:
</p>
<table border="1">
  <tr>
    <th> Button </th>
    <th> Name </th>
    <th> Go to </th>
    <th> From 1.2.3 go to</th>
  </tr>
  <tr>
    <td align="center"> [ &lt; ] </td>
    <td align="center">Back</td>
    <td>Previous section in reading order</td>
    <td>1.2.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt; ] </td>
    <td align="center">Forward</td>
    <td>Next section in reading order</td>
    <td>1.2.4</td>
  </tr>
  <tr>
    <td align="center"> [ &lt;&lt; ] </td>
    <td align="center">FastBack</td>
    <td>Beginning of this chapter or previous chapter</td>
    <td>1</td>
  </tr>
  <tr>
    <td align="center"> [ Up ] </td>
    <td align="center">Up</td>
    <td>Up section</td>
    <td>1.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt;&gt; ] </td>
    <td align="center">FastForward</td>
    <td>Next chapter</td>
    <td>2</td>
  </tr>
  <tr>
    <td align="center"> [Top] </td>
    <td align="center">Top</td>
    <td>Cover (top) of document</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Contents] </td>
    <td align="center">Contents</td>
    <td>Table of contents</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Index] </td>
    <td align="center">Index</td>
    <td>Index</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [ ? ] </td>
    <td align="center">About</td>
    <td>About (help)</td>
    <td> &nbsp; </td>
  </tr>
</table>

<p>
  where the <strong> Example </strong> assumes that the current position is at <strong> Subsubsection One-Two-Three </strong> of a document of the following structure:
</p>

<ul>
  <li> 1. Section One
    <ul>
      <li>1.1 Subsection One-One
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.2 Subsection One-Two
        <ul>
          <li>1.2.1 Subsubsection One-Two-One</li>
          <li>1.2.2 Subsubsection One-Two-Two</li>
          <li>1.2.3 Subsubsection One-Two-Three &nbsp; &nbsp;
            <strong>&lt;== Current Position </strong></li>
          <li>1.2.4 Subsubsection One-Two-Four</li>
        </ul>
      </li>
      <li>1.3 Subsection One-Three
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.4 Subsection One-Four</li>
    </ul>
  </li>
</ul>

<hr size="1">
<p>
 <font size="-1">
  This document was generated by <em>iwamatsu</em> on <em>March 3, 2010</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
 </font>
 <br>

</p>
</body>
</html>