summaryrefslogtreecommitdiff
path: root/specs/XIM/xim.xml
blob: 23558ea39f4e9718a8c8f282af7f5d4a9c3bef72 (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
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[
<!ENTITY % defs SYSTEM "defs.ent"> %defs;
]>


<!-- lifted from troff+ms+XMan by doclifter -->
<article class="specification" id="xim">

<articleinfo>
   <title>The Input Method Protocol</title>
   <subtitle>X Consortium Standard</subtitle>
   <releaseinfo>X Version 11, Release &fullrelvers;</releaseinfo>
   <releaseinfo>Version 1.0</releaseinfo>
   <authorgroup>
      <author>
         <firstname>Masahiko</firstname><surname>Narita</surname>
         <affiliation><orgname>FUJITSU Limited.</orgname></affiliation>
      </author>
      <author>
         <firstname>Hideki</firstname><surname>Hiura</surname>
         <affiliation><orgname>SunSoft, Inc.</orgname></affiliation>
      </author>
   </authorgroup>
   <copyright><year>1993</year><year>1994</year>
      <holder>FUJITSU LIMITED</holder>
      <holder>Oracle and/or its affiliates</holder>
   </copyright>

<abstract>
<para>
This specifies a protocol between IM library and IM (Input Method) Server for internationalized text input, which is indepedent from any specific language, any specific input method and the transport layer used in communication between the IM library and the IM Server, and uses a client-server model.  This protocol allows user to use his/her favorite method for all applications within the stand-along distrubuted environment.
</para>
</abstract>

<legalnotice>
<para>Permission to use,copy and distribute this documetation for any purpose
and without fee is hereby granted, provided that the above copyright notice
and this permission notice appear in all copies.  Fujitsu and Sun Microsystems
make no representation about the suitability for any purpose of the information in this document.
This documentation is provided as is without express implied warranty.
</para>
</legalnotice>

<legalnotice>
<para role="multiLicensing">Copyright © 1993, 1994 X Consortium</para>
<para>Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), 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:
</para>
<para>The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.</para>
<para>THE SOFTWARE IS PROVIDED &ldquo;AS IS&rdquo;, 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.
</para>
<para>
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.
</para>
<para>X Window System is a trademark of The Open Group.</para>
</legalnotice>

</articleinfo>

<sect1 id="Introduction">
<title>Introduction</title>
<sect2 id="Scope">
<title>Scope</title>
<!-- .XS -->
<!-- (SN Scope -->
<!-- .XE -->
<para>
<!-- .LP -->
The internationalization in the
X Window System
Version 11, Release 5 (X11R5) provides a common API which application
developers can use to create portable internationalized programs and to
adapt them to the requirements of different native languages, local customs,
and character string encodings (this is called "localization").
As one of its internationalization mechanisms X11R5 has defined a functional
interface for internationalized text input, called XIM (X Input Method).
</para>
<para>
<!-- .LP -->
When a client-server model is used with an IM (Input Method) implementation,
a protocol must be established between the client and the server.
However, the protocol used to interface Input Method Servers (IM Servers)
with the Input Method libraries (IM libraries) to which applications are
linked was not addressed in X11R5.
This led application developers to depend on vendor-specific input methods,
decreased the user's choice of available input methods, and made it more
difficult for developers to create portable applications. This paper describes
the Input Method Protocol developed for X11R6 to resolve the above problems
and to address the requirements of existing and future input methods.
</para>
<para>
<!-- .LP -->
The Input Method Protocol is independent from the transport layer used in
communication between the IM library and the IM Server.
Thus, the input method protocol can be built on any inter-process
communication mechanism, such as TCP/IP or the X protocol.
</para>
<para>
In addition, the protocol provides for future extensions such as differing
input model types.
</para>
</sect2>

<sect2 id="Background">
<title>Background</title>
<!-- .XS -->
<!-- (SN Background -->
<!-- .XE -->
<para>
<!-- .LP -->
Text input is much more simple for some languages than
others.  English, for instance, uses an alphabet of a manageable size,
and input consists of pressing the corresponding key on a keyboard,
perhaps in combination with a shift key for capital letters or special
characters.
</para>
<para>
<!-- .LP -->
Some languages have larger alphabets, or modifiers such as accents,
which require the addition of special key combinations in order to enter
text.  These input methods may require "dead-keys" or "compose-keys"
which, when followed by different combinations of key strokes,
generate different characters.
</para>
<para>
<!-- .LP -->
Text input for ideographic languages is much less simple.  In these
languages, characters represent actual objects rather than phonetic
sounds used in pronouncing a word, and the number of characters
in these languages may continue to grow.  In Japanese, for instance, most
text input methods involve entering characters in a phonetic alphabet,
after which the input method searches a dictionary for possible
ideographic equivalents (of which there may be many).  The input method then
presents the candidate characters for the user to choose from.
</para>
<para>
<!-- .LP -->
In Japanese, either Kana (phonetic symbols) or Roman letters are
typed and then a region is selected for conversion to Kanji. Several
Kanji characters may have the same phonetic representation. If that
is the case with the string entered, a menu of characters is presented
and the user must choose the appropriate one. If no choice is necessary
or a preference has been established, the input method does the
substitution directly.
</para>
<para>
<!-- .LP -->
These complicated input methods must present state information (Status Area),
text entry and edit space (Preedit Area), and menu/choice presentations
(Auxiliary Area).  Much of the protocol between the IM library and the IM
Server involves managing these IM areas.
Because of the size and complexity of these input methods, and because
of how widely they vary from one language or locale to another, they are
usually implemented as separate processes which can serve many client
processes on the same computer or network.
</para>
<para>
<!-- .LP -->
</para>
</sect2>
<sect2 id="Input_Method_Styles">
<title>Input Method Styles</title>
<!-- .XS -->
<!-- (SN Input Method Styles -->
<!-- .XE -->
<para>
<!-- .LP -->
X11 internationalization support includes the following four types of
input method:
<!-- .RS -->
</para>

<variablelist>
  <varlistentry>
    <term>- on-the-spot:</term>
    <listitem>
      <para>
The client application is directed by the IM Server to display all
pre-edit data at the site of text insertion.  The client registers
callbacks invoked by the input method during pre-editing.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>- off-the-spot:</term>
    <listitem>
      <para>
The client application provides display windows for the pre-edit data
to the input method which displays into them directly.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>- over-the-spot:</term>
    <listitem>
      <para>
The input method displays pre-edit data in a window which it brings up
directly over the text insertion position.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>- root-window:</term>
    <listitem>
      <para>
The input method displays all pre-edit data in a separate area of the
screen in a window specific to the input method.
      </para>
    </listitem>
  </varlistentry>
</variablelist>

<para>
Client applications must choose from the available input methods
supported by the IM Server and provide the display areas and callbacks
required by the input method.
</para>
</sect2>

</sect1>
<sect1 id="Architecture">
<title>Architecture</title>
<!-- .XS -->
<!-- (SN Architecture -->
<!-- .XE -->
<sect2 id="Implementation_Model">
<title>Implementation Model</title>
<!-- .XS -->
<!-- (SN Implementation Model -->
<!-- .XE -->
<para>
<!-- .LP -->
Within the X Window System environment, the following two typical
architectural models can be used as an input method's implementation
model.
</para>

<variablelist>
  <varlistentry>
    <term>- Client/Server model:</term>
    <listitem>
      <para>
A separate process, the IM Server, processes input and handles preediting,
converting, and committing.  The IM library within the application, acting
as client to the IM Server, simply receives the committed string from the
IM Server.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>- Library model:</term>
    <listitem>
      <para>
All input is handled by the IM library within the application.  The
event process is closed within the IM library and a separate IM Server
process may not be required.
      </para>
    </listitem>
  </varlistentry>
</variablelist>

<para>
<!-- .LP -->
Most languages which need complex preediting, such as Asian languages,
are implemented using the Client/Server IM model.  Other languages
which need only dead key or compose key processing, such as European
languages, are implemented using the Library model.
</para>
<para>
<!-- .LP -->
In this paper, we discuss mainly the Client/Server IM model and the
protocol used in communication between the IM library (client) and the IM
Server.
</para>
</sect2>

<sect2 id="Structure_of_IM">
<title>Structure of IM</title>
<!-- .XS -->
<!-- (SN Structure of IM -->
<!-- .XE -->
<para>
<!-- .LP -->
When the client connects or disconnects to the IM Server, an open or close
operation occurs between the client and the IM Server.
</para>
<para>
<!-- .LP -->
The IM can be specified at the time of XOpenIM() by setting the locale
of the client and a locale modifier. Since the IM remembers
the locale at the time of creation XOpenIM() can be called
multiple times (with the
setting for the locale and the locale modifier changed) to support
multiple languages.
</para>
<para>
<!-- .LP -->
In addition, the supported IM type can be obtained using XGetIMValues().
</para>
<para>
<!-- .LP -->
The client usually holds multiple input (text) fields. Xlib provides a
value type called the "Input Context" (IC) to manage each individual
input field.  An IC can be created by specifying XIM using XCreateIC(),
and it can be destroyed using XDestroyIC().
</para>
<para>
<!-- .LP -->
The IC can specify the type of IM which is supported by XIM for each
input field, so each input field can handle a different type of IM.
</para>
<para>
<!-- .LP -->
Most importantly information such as the committed string sent from
the IM Server to the client, is exchanged based on each IC.
</para>
<para>
<!-- .LP -->
Since each IC corresponds to an input field, the focused input field
should be announced to the IM Server using XSetICFocus(). (XUnsetICFocus()
can also be used to change the focus.)
</para>
<para>
<!-- .LP -->
</para>
</sect2>
<sect2 id="Event_Handling_Model">
<title>Event Handling Model</title>
<!-- .XS -->
<!-- (SN Event Handling Model -->
<!-- .XE -->
<para>
<!-- .LP -->
Existing input methods support either the FrontEnd method, the BackEnd method,
or both.  This protocol specifically supports the BackEnd method as
the default method, but also supports the FrontEnd method as an optional
IM Server extension.
</para>
<para>
<!-- .LP -->
The difference between the FrontEnd and BackEnd methods is in how
events are delivered to the IM Server.  (Fig. 1) <!-- xref -->
</para>

<sect3 id="BackEnd_Method">
<title>BackEnd Method</title>
<!-- .XS -->
<!-- (SN BackEnd Method -->
<!-- .XE -->
<para>
<!-- .LP -->
In the BackEnd method, client window input events are always delivered
to the IM library, which then passes them to the IM Server.  Events are
handled serially in the order delivered, and therefore there is no
synchronization problem between the IM library and the IM Server.
</para>
<para>
<!-- .LP -->
Using this method, the IM library forwards all KeyPress and KeyRelease
events to the IM Server (as required by the Event Flow Control model
described in
<link linkend="event_flow_control">
<xref linkend="event_flow_control"></xref></link>)
and synchronizes with the IM Server (as described in
<link linkend="filtering_events">
<xref linkend="filtering_events"></xref></link>).

</para>
</sect3>

<sect3 id="FrontEnd_Method">
<title>FrontEnd Method</title>
<!-- .XS -->
<!-- (SN FrontEnd Method -->
<!-- .XE -->
<para>
<!-- .LP -->
In the FrontEnd method, client window input events are delivered by the
X server directly to both the IM Server and the IM library.  Therefore this
method provides much better interactive performance while preediting
(particularly in cases such as when the IM Server is running locally on
the user's workstation and the client application is running on another
workstation over a relatively slow network).
</para>
<para>
<!-- .LP -->
However, the FrontEnd model may have synchronization problems between
the key events handled in the IM Server and other events handled in the
client, and these problems could possibly cause the loss or duplication
of key events.  For this reason, the BackEnd method is the core method
supported, and the FrontEnd method is made available as an extension for
performance purposes. (Refer to
<link linkend="common_extensions">
<xref linkend="common_extensions"></xref></link>
for more information.)
</para>

<mediaobject  id="flow_of_events">
  <imageobject>
    <imagedata  format="SVG"  fileref="eventflow.svg"/>
  </imageobject>
  <caption>The flow of events</caption>
</mediaobject>

<!--
<para>
Fig.1 The Flow of Events
</para>
-->

</sect3>
</sect2>

<sect2 id="event_flow_control">
<title>Event Flow Control</title>
<!-- .XS -->
<!-- (SN Event Flow Control -->
<!-- .XE -->
<para>
<!-- .LP -->
This protocol supports two event flow models for communication between the
IM library and the IM Server (Static and Dynamic).
</para>
<para>
<!-- .LP -->
Static Event Flow requires that input events always be sent to the IM
Server from the client.
</para>
<para>
<!-- .LP -->
Dynamic Event Flow, however, requires only that those input events which
need to be processed (converted) be sent to the IM Server from the client.
</para>
<para>
<!-- .LP -->
For instance, in the case of inputing a combination of ASCII characters
and Chinese characters, ASCII characters do not need to be processed in
the IM Server, so their key events do not have to be sent to the IM
Server.  On the other hand, key events necessary for composing Chinese
characters must be sent to the IM Server.
</para>
<para>
<!-- .LP -->
Thus, by adopting the Dynamic Event Flow, the number of requests among the
X Server, the client, and the IM Server is significantly reduced, and the
number of context switches is also reduced, resulting in improved performance.
The IM Server can send
<function>XIM_REGISTER_TRIGGERKEYS </function>
message in order to switch the event flow in the Dynamic Event Flow.
</para>
<para>
<!-- .LP -->
The protocol for this process is described in
<link linkend="event_flow_control_2">
<xref linkend="event_flow_control_2"></xref></link>.
</para>
</sect2>
</sect1>

<sect1 id="Default_Preconnection_Convention">
<title>Default Preconnection Convention</title>
<!-- .XS -->
<!-- (SN Default Preconnection Convention  -->
<!-- .XE -->
<para>
<!-- .LP -->
IM Servers are strongly encouraged to register their symbolic
names as the ATOM names into the IM Server directory property,
<function>XIM_SERVERS,</function>
on the root window of the screen_number 0.
This property can contain a list of ATOMs, and the each ATOM represents
each possible IM Server.
IM Server names are restricted to POSIX Portable Filename Character Set.
To discover if the IM Server is active, see if there is an owner for
the selection with that atom name.  To learn the address of that IM Server,
convert the selection target
<function>TRANSPORT,</function>
which will return a string form of the transport address(es).
To learn the supported locales of that IM Server, convert the selection target
<function>LOCALES,</function>
which will return a set of names of the supported locales in the syntax
X/Open defines.
</para>
<para>
<!-- .LP -->
The basic semantics to determine the IM Server if there are
multiple ATOMs are found in
<function>XIM_SERVERS</function>
property, is first fit if the IM Server name is not given as
a X modifier's category
<function>im.</function>
</para>
<para>
<!-- .LP -->
The address information retrievable from the
<function>TRANSPORT</function>
target is a transport-specific name.
The preregistered formats for transport-specific names are listed in
<link linkend="transport_list">
<xref linkend="transport_list"></xref></link>.
Additional transport-specific names may be registered with X Consortium.
</para>

<para>
For environments that lack X connections, or for IM Servers which
do not use the X Window System, the preconnection convention with IM Server
may be given outside the X Window system (e.g. using a Name Service).
</para>
</sect1>

<sect1 id="Protocol">
<title>Protocol</title>
<!-- .XS -->
<!-- (SN Protocol -->
<!-- .XE -->
<para>
<!-- .LP -->
The protocol described below uses the bi-directional
synchronous/asynchronous request/reply/error model and is specified
using the same conventions outlined in Section 2 of the core X Window
System protocol [1]:
</para>

<sect2 id="Basic_Requests_Packet_Format">
<title>Basic Requests Packet Format</title>
<!-- .XS -->
<!-- (SN Basic Requests Packet Format -->
<!-- .XE -->
<para>
<!-- .LP -->
This section describes the requests that may be exchanged between the client
and the IM Server.
</para>
<para>
<!-- .LP -->
The basic request packet header format is as follows.
</para>
<literallayout class="monospaced">
          major-opcode:               CARD8
          minor-opcode:               CARD8
          length:                     CARD16
</literallayout>

<para>
The MAJOR-OPCODE specifies which core request or extension package this
packet represents.  If the MAJOR-OPCODE corresponds to a core request,
the MINOR-OPCODE contains 8 bits of request-specific data.
(If the MINOR-OPCODE is not used, it is 0.)
Otherwise, the MAJOR-OPCODE and the MINOR-OPCODE are specified by
<function>XIM_QUERY_EXTENSION</function>
message.  (Refer to 4.7. Query the supported extension protocol list.)
The LENGTH field specifies the number of 4 bytes elements following the
header.  If no additional data is followed by the header, the LENGTH field
will be 0.
</para>
</sect2>

<sect2 id="Data_Types">
<title>Data Types</title>
<!-- .XS -->
<!-- (SN Data Types -->
<!-- .XE -->
<para>
The following data types are used in the core X IM Server protocol:
</para>

<literallayout class="monospaced">
BITMASK16
     CARD16
BITMASK32
     CARD32
PADDING FORMAT
     Where N is some expression, and Pad(N) is the number of bytes needed to round N up to a

          Pad(N) = (4 - (N mod 4)) mod 4

LPCE
  1          A character from the4 X Portable Character Set in Latin Portable
             Character Encoding

STRING
     2     n              length of string in bytes
     n     LISTofLPCE     string
     p                    unused, p=Pad(2+n)

STR
     1     n              length of name in bytes
     n     STRING8        name

XIMATTR
     2     CARD16         attribute ID (*1)
     2     CARD16         type of the value (*2)
     2     n              length of im-attribute
     n     STRING8        im-attribute
     p                    unused, p = Pad(2+n)

The im-attribute argument specifies XIM values such as XNQueryInputStyle.

XICATTR
     2     CARD16         attribute ID (*1)
     2     CARD16         type of the value (*2)
     2     n              length of ic-attribute
     n     STRING8        ic-attribute
     p                    unused, p = Pad(2+n)

(*1) XIMATTR and XICATTR are used during the setup stage and XIMATTRIBUTE and
     XICATTRIBUTE are used after each attribute ID has been recognized by
     the IM Server and the IM library.

(*2) The value types are defined as follows:
</literallayout>
<informaltable id="valuetypes" frame="none">
  <tgroup cols="5">
  <colspec colname="col1" colsep="0"/>
  <colspec colname="col2" colsep="0"/>
  <colspec colname="col3" colsep="0"/>
  <colspec colname="col4" colsep="0"/>
  <colspec colname="col5" colsep="0"/>
  <spanspec namest="col3" nameend="col5" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry>values</entry>
      <entry>data</entry>
      <entry>format</entry>
      <!-- <entry spanname="span-horiz">format</entry> -->
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>#0</entry>
      <entry>Separator of NestedList</entry>
      <entry>-----(*3)</entry>
    </row>
    <row rowsep="0">
      <entry>#1</entry>
      <entry>byte data</entry>
      <entry>CARD8</entry>
    </row>
    <row rowsep="0">
      <entry>#2</entry>
      <entry>word data</entry>
      <entry>CARD16</entry>
    </row>
    <row rowsep="0">
      <entry>#3</entry>
      <entry>long data</entry>
      <entry>CARD32</entry>
    </row>
    <row rowsep="0">
      <entry>#4</entry>
      <entry>char data</entry>
      <entry>STRING8</entry>
    </row>
    <row rowsep="0">
      <entry>#5</entry>
      <entry>Window</entry>
      <entry>CARD32</entry>
    </row>
    <row rowsep="0">
      <entry>#10</entry>
      <entry>XIMStyles</entry>
      <entry>2</entry>
      <entry>n</entry>
      <entry>number of XIMStyle list</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>2</entry>
      <entry></entry>
      <entry>unused</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>n</entry>
      <entry>CARD32</entry>
      <entry>XIMStyle list</entry>
    </row>
    <row rowsep="0">
      <entry>#11</entry>
      <entry>XRectangle</entry>
      <entry>2</entry>
      <entry>INT16</entry>
      <entry>X</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>2</entry>
      <entry>INT16</entry>
      <entry>Y</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>2</entry>
      <entry>CARD16</entry>
      <entry>width</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>2</entry>
      <entry>CARD16</entry>
      <entry>height</entry>
    </row>
    <row rowsep="0">
      <entry>#12</entry>
      <entry>XPoint</entry>
      <entry>2</entry>
      <entry>INT16</entry>
      <entry>X</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>2</entry>
      <entry>INT16</entry>
      <entry>Y</entry>
    </row>
    <row rowsep="0">
      <entry>#13</entry>
      <entry>XFontSet</entry>
      <entry>2</entry>
      <entry>n</entry>
      <entry>length of Base font name</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>n</entry>
      <entry>STRING8</entry>
      <entry>Base font name list</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>p</entry>
      <entry></entry>
      <entry>unused, p = Pad(2+n)</entry>
    </row>
    <row rowsep="0">
      <entry>#15</entry>
      <entry>XIMHotKeyTriggers</entry>
      <entry>4</entry>
      <entry>n</entry>
      <entry>number of XIMTRIGGERKEY list (*4)</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>n</entry>
      <entry>XIMTRIGGERKEY</entry>
      <entry>XIMHotkeyTrigger list</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry></entry>
      <entry>n</entry>
      <entry>XIMHOTKEYSTATE</entry>
      <entry>HotKey processing state</entry>
    </row>
    <row rowsep="0">
      <entry>#17</entry>
      <entry>XIMStringConversion</entry>
      <entry>XIMSTRCONVTEXT</entry>
      <entry></entry>
      <entry></entry>
    </row>
    <row rowsep="0">
      <entry>#18</entry>
      <entry>XIMPreeditState</entry>
      <entry>XIMPREEDITSTATE</entry>
    </row>
    <row rowsep="0">
      <entry>#19</entry>
      <entry>XIMResetState</entry>
      <entry>XIMRESETSTATE</entry>
    </row>
    <row rowsep="0">
      <entry>#x7fff</entry>
      <entry>NestedList</entry>
      <entry>-----</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<literallayout class="monospaced">
(*3)  The IC value for the separator of NestedList is defined as follows,
            #define   XNSeparatorofNestedList   "separatorofNestedList"
      , which is registered in X Consortium and cannot be used for any other purpose.

(*4) LISTofFOO
            A Type name of the form LISTof FOO means a counted list of elements of type FOO.
            The size of the length field may vary (it is not necessarily the same
            size as a FOO), and in some cases, it may be implicit.
XIMTRIGGERKEY
     4     CARD32       keysym
     4     CARD32       modifier
     4     CARD32       modifier mask

ENCODINGINFO
     2     n            length of encoding info
     n     STRING8      encoding info
     p                  unused, p=Pad(2+n)


     1     CARD8        extension major-opcode
     1     CARD8        extension minor-opcode
     2     n            length of extension name
     n     STRING8      extension name
     p                  unused, p = Pad(n)

XIMATTRIBUTE
     2     CARD16       attribute ID
     2     n            value length
     n                  value
     p                  unused, p = Pad(n)

XICATTRIBUTE
     2     CARD16       attribute ID
     2     n            value length
     n                  value
     p                  unused, p = Pad(n)



XIMSTRCONVTEXT
     2    CARD16                      XIMStringConversionFeedback
          #x0000001                   XIMStringConversionLeftEdge
          #x0000002                   XIMStringConversionRightEdge
          #x0000004                   XIMStringConversionTopEdge
          #x0000008                   XIMStringConversionBottomEdge
          #x0000010                   XIMStringConversionConvealed
          #x0000020                   XIMStringConversionWrapped
     2     n                          byte length of the retrieved string
     n     STRING8                    retrieved string
     p                                unused, p = Pad(n)
     2     m                          byte length of feedback array
     2                                unused
     m     LISTofXIMSTRCONVFEEDBACK   feedback array(*1)

(*1)   This field is reserved for future use.

XIMFEEDBACK
     4    CARD32       XIMFeedback
          #x000001     XIMReverse
          #x000002     XIMUnderline
          #x000004     XIMHighlight
          #x000008     XIMPrimary
          #x000010     XIMSecondary
          #x000020     XIMTertiary
          #x000040     XIMVisibleToForward
          #x000080     XIMVisibleToBackward
          #x000100     XIMVisibleCenter

XIMHOTKEYSTATE
     4    CARD32       XIMHotKeyState
          #x0000001    XIMHotKeyStateON
          #x0000002    XIMHotKeyStateOFF

XIMPREEDITSTATE
     4    CARD32       XIMPreeditState
          #x0000001    XIMPreeditEnable
          #x0000002    XIMPreeditDisable

XIMRESETSTATE
     4    CARD32       XIMResetState
          #x0000001    XIMInitialState
          #x0000002    XIMPreserveState
</literallayout>
</sect2>

<sect2 id="Error_Notification">
<title>Error Notification</title>
<!-- .XS -->
<!-- (SN Error Notification -->
<!-- .XE -->
<para>
Both the IM Server and the IM library return
<function>XIM_ERROR</function>
messages instead of the corresponding reply messages if any errors occur
during data processing.
</para>

<para>
At most one error is generated per request. If more than one error condition
is encountered in processing a request, the choice of which error is returned
is implementation-dependent.
</para>

<literallayout class="monospaced">
XIM_ERROR (IM Server &lt;--&gt; IM library)
<!-- .sp 6p -->
          2     CARD16          input-method-ID
          2     CARD16          input-context-ID
          2     BITMASK16       flag (*1)
                #0000           Both Input-Method-ID and Input-Context-ID are invalid
                #0001           Input-Method-ID is valid
                #0002           Input-Context-ID is valid
          2     CARD16          Error Code
                #1              BadAlloc
                #2              BadStyle
                #3              BadClientWindow
                #4              BadFocusWindow
                #5              BadArea
                #6              BadSpotLocation
                #7              BadColormap
                #8              BadAtom
                #9              BadPixel
                #10             BadPixmap
                #11             BadName
                #12             BadCursor
                #13             BadProtocol
                #14             BadForeground
                #15             BadBackground
                #16             LocaleNotSupported
                #999            BadSomething (*2)
          2     n               byte length of error detail.
          2     CARD16          type of error detail (*3)
          n     STRING8         error detail (*4)
          p                     unused, p = Pad(n)

(*1)  Before an IM is created, both Input-Method-ID and
      Input-Context-ID are invalid.
      Before an IC is created, only Input-Method-ID is valid.
      After that, both of Input-Method-ID and Input-Context-ID are valid.

(*2) Unspecific error, for example "language engine died"

(*3) This field is reserved for future use.

(*4) Vendor defined detail error message
</literallayout>
</sect2>

<sect2 id="Connection_Establishment">
<title>Connection Establishment</title>
<!-- .XS -->
<!-- (SN Connection Establishment -->
<!-- .XE -->
<para>
<function>XIM_CONNECT</function>
message requests to establish a connection over a mutually-understood virtual
stream.
</para>

<literallayout class="monospaced">
XIM_CONNECT (IM library -&gt; IM Server)
     1                      byte order
           #x42             MSB first
           #x6c             LSB first
     1                      unused
     2     CARD16           client-major-protocol-version (*1)
     2     CARD16           client-minor-protocol-version (*1)
     2     CARD16           number of client-auth-protocol-names
     n     LISTofSTRING     client-auth-protocol-names

(*1) Specify the version of IM Protocol that the client supports.
</literallayout>

<para>
A client must send
<function>XIM_CONNECT</function>
message as the first message on the connection.
The list specifies the names of authentication protocols the sending
IM Server is willing to perform.
(If the client need not authenticate, the list may be omited.)
</para>

<para>
<function>XIM_AUTH_REQUIRED </function>
message is used to send the authentication protocol name and protocol-specific
data.
</para>

<literallayout class="monospaced">
XIM_AUTH_REQUIRED (IM library &lt;--&gt; IM Server)

     1     CARD8              auth-protocol-index
     3                        unused
     2     n                  length of authentication data
     2                        unused
     n     &lt;varies&gt;     data
     p                        unused, p = Pad(n)
</literallayout>

<para>
The auth-protocol is specified by an index into the list of names
given in the
<function>XIM_CONNECT</function>
or
<function>XIM_AUTH_SETUP</function>
message. Any protocol-specific data that might be required is also sent.
</para>

<para>
The IM library sends
<function>XIM_AUTH_REPLY</function>
message as the reply to
<function>XIM_AUTH_REQUIRED</function>
message, if the IM Server is authenticated.
</para>

<literallayout class="monospaced">
XIM_AUTH_REPLY (IM library -&gt; IM Server)
     2     n                 length of authentication data
     2                       unused
     2     n                 length of authentication data
     2                       unused
     n     &lt;varies&gt;      data
     p                       unused, p = Pad(n)
</literallayout>

<para>
The auth data is specific to the authentication protocol in use.
</para>
<para>
<!-- .LP -->
<function>XIM_AUTH_NEXT </function>
message requests to send more auth data.
</para>

<literallayout class="monospaced">
XIM_AUTH_NEXT (IM library &lt;--&gt; IM Server)
     2     n                 length of authentication data
     2                       unused
     n     &lt;varies&gt;      data
     p                       unused, p = Pad(n)
</literallayout>
<para>
The auth data is specific to the authentication protocol in use.
</para>

<para>
<!-- .LP -->
The IM Server sends
<function>XIM_AUTH_SETUP</function>
message to authenticate the client.
</para>

<literallayout class="monospaced">
XIM_AUTH_SETUP (IM Server -&gt; IM library)
     2     CARD16           number of client-auth-protocol-names
     2                      unused
     n     LISTofSTRING     server-auth-protocol-names
</literallayout>

<para>
The list specifies the names of authentication protocols the
client is willing to perform.
</para>

<para>
<function>XIM_AUTH_NG</function>
message requests to give up the connection.
</para>

<para>
XIM_AUTH_NG (IM library &lt;--&gt; IM Server)
</para>

<para>
The IM Server sends
<function>XIM_CONNECT_REPLY</function>
message as the reply to
<function>XIM_CONNECT</function>
or
<function>XIM_AUTH_REQUIRED</function>
message.
</para>

<literallayout class="monospaced">
XIM_CONNECT_REPLY (IM Server -&gt; IM library)
     2     CARD16     server-major-protocol-version (*1)
     2     CARD16     server-minor-protocol-version (*1)

(*1) Specify the version of IM Protocol that the IM Server supports.
This document specifies major version one, minor version zero.
</literallayout>

<para>
Here are the state diagrams for the client and the IM Server.
</para>

<para>
State transitions for the client
</para>

<variablelist>
  <varlistentry>
    <term><emphasis remap='I'>init_status</emphasis>:</term>
    <listitem>
      <para>
Use authorization function -&gt; <emphasis remap='I'>client_ask</emphasis>
      </para>
      <para>
Not use authorization function -&gt; <emphasis remap='I'>client_no_check</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>start</emphasis>:</term>
    <listitem>
      <para>
Send <function>XIM_CONNECT</function>
      </para>
      <para>
If <emphasis remap='I'>client_ask</emphasis> -&gt; <emphasis remap='I'>client_wait1</emphasis>
      </para>
      <para>
If <emphasis remap='I'>client_no_check</emphasis>,
client-auth-protocol-names may be omited -&gt; <emphasis remap='I'>client_wait2</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>client_wait1</emphasis>:</term>
    <listitem>
      <para>
Receive <function>XIM_AUTH_REQUIRED</function>
-&gt; <emphasis remap='I'>client_check</emphasis>
      </para>
      <para>
Receive &lt;other&gt; -&gt; <emphasis remap='I'>client_NG</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>client_check</emphasis>:</term>
    <listitem>
      <para>
If no more auth needed, send <function>XIM_AUTH_REPLY</function>
-&gt; <emphasis remap='I'>client_wait2</emphasis>
      </para>
      <para>
If good auth data, send <function>XIM_AUTH_NEXT</function>
-&gt; <emphasis remap='I'>client_wait1</emphasis>
      </para>
      <para>
If bad auth data, send <function>XIM_AUTH_NG</function>
-&gt; give up on this protocol
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>client_wait2</emphasis>:</term>
    <listitem>
      <para>
Receive <function>XIM_CONNECT_REPLY</function>
-&gt; connect Receive
<function>XIM_AUTH_SETUP </function>
-&gt; <emphasis remap='I'>client_more</emphasis>
      </para>
      <para>
Receive <function>XIM_AUTH_NEXT</function>
-&gt; <emphasis remap='I'>client_more</emphasis>
      </para>
      <para>
Receive <function>XIM_AUTH_NG</function>
-&gt; give up on this protocol
      </para>
      <para>
Receive &lt;other&gt; -&gt; <emphasis remap='I'>client_NG</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>client_more</emphasis>:</term>
    <listitem>
      <para>
Send <function>XIM_AUTH_REQUIRED</function>
-&gt; <emphasis remap='I'>client_wait2</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>client_NG</emphasis>:</term>
    <listitem>
      <para>
Send <function>XIM_AUTH_NG</function>
-&gt; give up on this protocol
      </para>
    </listitem>
  </varlistentry>
</variablelist>

<para>
State transitions for the IM Server
</para>

<variablelist>
  <varlistentry>
    <term><emphasis remap='I'>init_status</emphasis>:</term>
    <listitem>
      <para>
Use authorization function -&gt; <emphasis remap='I'>server_ask</emphasis>
      </para>
      <para>
Not use authorization function -&gt; <emphasis remap='I'>server_no_check</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>start</emphasis>:</term>
    <listitem>
      <para>
Receive <function>XIM_CONNECT</function>
      </para>
      <para>
-&gt; <emphasis remap='I'>start2</emphasis>
Receive &lt;other&gt; -&gt; <emphasis remap='I'>server_NG</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>start2</emphasis>:</term>
    <listitem>
      <para>
If <emphasis remap='I'>client_ask</emphasis>, send
<function>XIM_AUTH_REQUIRED</function>
-&gt; <emphasis remap='I'>server_wait1</emphasis>
      </para>
      <para>
If <emphasis remap='I'>client_no_check</emphasis> and
<emphasis remap='I'>server_ask</emphasis>, send
<function>XIM_AUTH_SETUP</function>
-&gt; <emphasis remap='I'>server_wait2</emphasis>
      </para>
      <para>
If <emphasis remap='I'>client_no_check</emphasis> and
<emphasis remap='I'>server_no_check</emphasis>, send
<function>XIM_CONNECT_REPLY</function>
-&gt; connect
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server_wait1</emphasis>:</term>
    <listitem>
      <para>
Receive
<function>XIM_AUTH_REPLY</function>
-&gt; <emphasis remap='I'>server2</emphasis>
      </para>
      <para>
Receive
<function>XIM_AUTH_NEXT</function>
-&gt; <emphasis remap='I'>server_more</emphasis>
      </para>
      <para>
Receive &lt;other&gt; -&gt; <emphasis remap='I'>server_NG</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server_more</emphasis></term>
    <listitem>
      <para>
Send
<function>XIM_AUTH_REQUIRED</function>
-&gt; <emphasis remap='I'>server_wait1</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server2</emphasis></term>
    <listitem>
      <para>
If <emphasis remap='I'>server_ask</emphasis>, send
<function>XIM_AUTH_SETUP</function>
-&gt; <emphasis remap='I'>server_wait2</emphasis>
      </para>
      <para>
If <emphasis remap='I'>server_no_check</emphasis>, send
<function>XIM_CONNECT_REPLY </function>
-&gt; connect
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server_wait2</emphasis></term>
    <listitem>
      <para>
Receive
<function>XIM_AUTH_REQUIRED</function>
-&gt; <emphasis remap='I'>server_check</emphasis>
      </para>
      <para>
Receive &lt;other&gt; -&gt; <emphasis remap='I'>server_NG</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server_check</emphasis></term>
    <listitem>
      <para>
If no more auth data, send
<function>XIM_CONNECT_REPLY</function>
-&gt; connect
      </para>
      <para>
If bad auth data, send
<function>XIM_AUTH_NG</function>
-&gt; give up on this protocol
      </para>
      <para>
If good auth data, send
<function>XIM_AUTH_NEXT</function>
-&gt; <emphasis remap='I'>server_wait2</emphasis>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term><emphasis remap='I'>server_NG</emphasis></term>
    <listitem>
      <para>
Send
<function>XIM_AUTH_NG</function>
-&gt; give up on this protocol
      </para>
    </listitem>
  </varlistentry>
</variablelist>

<para>
<function>XIM_DISCONNECT </function>
message requests to shutdown the connection over a mutually-understood
virtual stream.
</para>

<para>
XIM_DISCONNECT (IM library -&gt; IM Server)
</para>

<para>
<function>XIM_DISCONNECT</function>
is a synchronous request.  The IM library should wait until it receives
either an
<function>XIM_DISCONNECT_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<para>
XIM_DISCONNECT_REPLY (IM Server -&gt; IM library)
</para>

<para>
<function>XIM_OPEN</function>
requests to establish a logical connection between the IM library and the IM
Server.
</para>

<literallayout class="monospaced">
XIM_OPEN (IM library -&gt; IM Server)
     n     STR     locale name
     p             unused, p = Pad(n)
</literallayout>

<para>
<function>XIM_OPEN</function>
is a synchronous request.  The IM library should wait until receiving
either an <function>XIM_OPEN_REPLY</function>
packet or an <function>XIM_ERROR </function> packet.
</para>

<literallayout class="monospaced">
XIM_OPEN_REPLY (IM Server -&gt; IM library)
     2     CARD16             input-method-ID
     2     n                  byte length of IM attributes supported
     n     LISTofXIMATTR      IM attributes supported
     2     m                  byte length of IC attributes supported
     2     CARD16             unused
     m     LISTofXICATTR      IC attributes supported
</literallayout>

<para>
<function>XIM_OPEN_REPLY</function>
message returns all supported IM and IC attributes in LISTofXIMATTR and
LISTofXICATTR.  These IM and IC attribute IDs are used to reduce the amount
of data which must be transferred via the network. In addition, this
indicates to the IM library what kinds of IM/IC attributes can be used
in this session, and what types of data will be exchanged. This allows
the IM Server provider and application writer to support IM system
enhancements with new IM/IC attributes, without modifying Xlib.
The IC value for the separator of NestedList must be included in the
LISTofXICATTR.
</para>

<para>
<function>XIM_CLOSE </function>
message requests to shutdown the logical connection between the IM library
and the IM Server.
</para>

<literallayout class="monospaced">
XIM_CLOSE (IM library -&gt; IM Server)
     2     CARD16     input-method-ID
     2                unused
</literallayout>

<para>
<function>XIM_CLOSE</function>
is a synchronous request.  The IM library should wait until receiving
either an <function>XIM_CLOSE_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_CLOSE_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2                unused
</literallayout>

</sect2>

<sect2 id="event_flow_control_2">
<title>Event Flow Control</title>
<!-- .XS -->
<!-- (SN Event Flow Control -->
<!-- .XE -->
<para>
<!-- .LP -->
An IM Server must send
<function>XIM_SET_EVENT_MASK </function>
message to the IM library in order for events to be forwarded to the IM
Server, since the IM library initially doesn't forward any events to the
IM Server. In the protocol, the IM Server will specify masks of X events
to be forwarded and which need to be synchronized by the IM library.
</para>

<literallayout class="monospaced">
XIM_SET_EVENT_MASK (IM Server -&gt; IM library)
     2     CARD16        input-method-ID
     2     CARD16        input-context-ID
     4     EVENTMASK     forward-event-mask (*1)
     4     EVENTMASK     synchronous-event-mask (*2)

(*1)  Specify all the events to be forwarded to the IM Server by the IM library.
(*2)  Specify the events to be forwarded with synchronous flag on by the IM library.
</literallayout>

<para>
<function>XIM_SET_EVENT_MASK </function>
is an asynchronous request.  The event masks are valid immediately after
they are set until changed by another
<function>XIM_SET_EVENT_MASK</function>
message.  If input-context-ID is set to zero, the default value of the
input-method-ID will be changed to the event masks specified in the request.
That value will be used for the IC's which have no individual values.
</para>

<para>
Using the Dynamic Event Flow model, an IM Server sends
<function>XIM_REGISTER_TRIGGERKEYS </function>
message to the IM library before sending
<function>XIM_OPEN_REPLY</function>
message.
Or the IM library may suppose that the IM Server uses the Static Event Flow
model.
</para>

<literallayout class="monospaced">
XIM_REGISTER_TRIGGERKEYS (IM Server -&gt; IM library)
<!-- .sp 6p -->
     2     CARD16                  input-method-ID
     2                             unused
     4     n                       byte length of on-keys
     n     LISTofXIMTRIGGERKEY     on-keys list
     4     m                       byte length of off-keys
     m     LISTofXIMTRIGGERKEY     off-keys list
</literallayout>

<para>
<function>XIM_REGISTER_TRIGGERKEYS</function>
is an asynchronous request.
The IM Server notifys the IM library of on-keys and off-keys lists with
this message.
</para>

<para>
The IM library notifys the IM Server with
<function>XIM_TRIGGER_NOTIFY </function>
message that a key event matching either on-keys or off-keys has been occurred.
</para>

<literallayout class="monospaced">
XIM_TRIGGER_NOTIFY (IM library -&gt; IM Server)
     2     CARD16           input-method-ID
     2     CARD16           input-context-ID
     4     CARD32           flag
           #0               on-keys list
           #1               off-keys list
     4     CARD32           index of keys list
     4     EVENTMASK        client-select-event-mask (*1)

(*1)  Specify the events currently selected by the IM library with XSelectInput.

</literallayout>

<para>
<function>XIM_TRIGGER_NOTIFY </function>
is a synchronous request.  The IM library should wait until receiving
either an <function>XIM_TRIGGER_NOTIFY_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_TRIGGER_NOTIFY_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect2>

<sect2 id="Encoding_Negotiation">
<title>Encoding Negotiation</title>
<para>
<function>XIM_ENCODING_NEGOTIATION</function>
message requests to decide which encoding to be sent across the wire.
When the negotiation fails, the fallback default encoding is Portable
Character Encoding.
</para>

<literallayout class="monospaced">
XIM_ENCODING_NEGOTIATION (IM library -&gt; IM Server).sp 6p
     2     CARD16                 input-method-ID
     2     n                      byte length of encodings listed by name
     n     LISTofSTR              list of encodings supported in the IM library.
     p                            unused, p = Pad(n)
     2     m                      byte length of encodings listed by detailed data
     2                            unused
     m     LISTofENCODINGINFO     list of encordings supported in the IM library
</literallayout>

<para>
The IM Server must choose one encoding from the list sent by the IM library.
If index of the encording determined is -1 to indicate that the negotiation
is failed, the fallback default encoding is used.
The message must be issued after sending
<function>XIM_OPEN</function> message via XOpenIM().
The name of encoding may be registered with X Consortium.
</para>

<para>
<function>XIM_ENCODING_NEGOTIATION</function>
is a synchronous request.  The IM library should wait until receiving
either an <function>XIM_ENCODING_NEGOTIATION_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>


<literallayout class="monospaced">
XIM_ENCODING_NEGOTIATION_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     category of the encoding determined.
           #0         name
           #1         detailed data
     2     INT16      index of the encoding determinated.
     2                unused
</literallayout>

</sect2>

<sect2 id="Query_the_supported_extension_protocol_list">
<title>Query the supported extension protocol list</title>
<para>
<function>XIM_QUERY_EXTENSION</function>
message requests to query the IM extensions supported by the IM Server to
which the client is being connected.
</para>

<literallayout class="monospaced">
XIM_QUERY_EXTENSION (IM library -&gt; IM Server)
     2     CARD16        input-method-ID
     2     n             byte length of extensions supported by the IM library
     n     LISTofSTR     extensions supported by the IM library
     p                   unused, p = Pad(n)
</literallayout>

<para>
An example of a supported extension is FrontEnd.
The message must be issued after sending
<function>XIM_OPEN </function> message via XOpenIM().
</para>

<para>
If n is 0, the IM library queries the IM Server for all extensions.
</para>

<para>
If n is not 0, the IM library queries whether the IM Server supports the
contents specified in the list.
</para>

<para>
If a client uses an extension request without previously having issued a
<function>XIM_QUERY_EXTENSION</function>
message for that extension, the IM Server responds with a
<function>BadProtocol</function>
error.  If the IM Server encounters a request with an unknown MAJOR-OPCODE
or MINOR-OPCODE, it responds with a
<function>BadProtocol</function> error.
</para>

<para>
<function>XIM_QUERY_EXTENSION</function>
is a synchronous request.  The IM library should wait until receiving
either an <function>XIM_QUERY_EXTENSION_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_QUERY_EXTENSION_REPLY (IM Server -&gt; IM library)
     2     CARD16      input-method-ID
     2     n           byte length of extensions supported by both the IM library and the IM Server
     n     LISTofEXT   list of extensions supported by both the IM library and the IM Server

</literallayout>

<para>
<function>XIM_QUERY_EXTENSION_REPLY</function>
message returns the list of extensions supported by both the IM library and
the IM Server. If the list passed in
<function>XIM_QUERY_EXTENSION</function>
message is NULL, the IM Server returns the full list of extensions supported
by the IM Server.  If the list is not NULL, the IM Server returns the
extensions in the list that are supported by the IM Server.
</para>

<para>
<!-- .LP -->
A zero-length string is not a valid extension name.  The IM library should
disregard any zero-length strings that are returned in the extension list.
The IM library does not use the requests which are not supported by the IM
Server.
</para>

</sect2>

<sect2 id="Setting_IM_Values">
<title>Setting IM Values</title>
<para>
<function>XIM_SET_IM_VALUES </function>
requests to set attributes to the IM.
</para>

<literallayout class="monospaced">
XIM_SET_IM_VALUES (IM library -&gt; IM Server)
     2     CARD16                 input-method-ID
     2     n                      byte length of im-attribute
     n     LISTofXIMATTRIBUTE     im-attributes
</literallayout>

<para>
The im-attributes in
<function>XIM_SET_IM_VALUES</function>
message are specified as a LISTofXIMATTRIBUTE, specifying the attributes
to be set. Attributes other than the ones returned by
<function>XIM_OPEN_REPLY</function>
message should not be specified.
</para>

<para>
<function>XIM_SET_IM_VALUES </function>
is a synchronous request. The IM library should wait until receiving
either an
<function>XIM_SET_IM_VALUES_REPLY</function>
packet or an
<function>XIM_ERROR</function>
packet, because it must receive the error attribute if
<function>XIM_ERROR</function> message is returned.
</para>

<literallayout class="monospaced">
XIM_SET_IM_VALUES_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2                unused
</literallayout>

<para>
<function>XIM_SET_IM_VALUES_REPLY</function>
message returns the input-method-ID to distinguish replies from multiple IMs.
</para>

</sect2>
<sect2 id="Getting_IM_Values">
<title>Getting IM Values</title>
<para>
<function>XIM_GET_IM_VALUES </function>
requests to query IM values supported by the IM Server currently being
connected.
</para>

<literallayout class="monospaced">
XIM_GET_IM_VALUES (IM library -&gt; IM Server)
     2     CARD16           input-method-ID
     2     n                byte length of im-attribute-id
     n     LISTofCARD16     im-attribute-id
     p                      unused, p=Pad(n)
</literallayout>

<para>
<function>XIM_GET_IM_VALUES</function>
is a synchronous request.  The IM library should wait until it receives
either an
<function>XIM_GET_IM_VALUES_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_GET_IM_VALUES_REPLY (IM Server -&gt; IM library)
     2     CARD16                 input-method-ID
     2     n                      byte length of im-attributes returned
     n     LISTofXIMATTRIBUTE     im-attributes returned
</literallayout>

<para>
The IM Server returns IM values with
<function>XIM_GET_IM_VALUES_REPLY</function>
message.  The order of the returned im-attribute values corresponds directly
to that of the list passed with the
<function>XIM_GET_IM_VALUES</function> message.
</para>

</sect2>
<sect2 id="Creating_an_IC">
<title>Creating an IC</title>
<para>
<function>XIM_CREATE_IC</function> message requests to create an IC.
</para>

<literallayout class="monospaced">
XIM_CREATE_IC (IM library -&gt; IM Server)
     2     CARD16                 input-method-ID
     2     n                      byte length of ic-attributes
     n     LISTofXICATTRIBUTE     ic-attributes
</literallayout>

<para>
The input-context-id is specified by the IM Server to identify the client
(IC).  (It is not specified by the client in
<function>XIM_CREATE_IC</function>
message.), and it should not be set to zero.
</para>

<para>
<function>XIM_CREATE_IC</function>
is a synchronous request which returns the input-context-ID.
The IM library should wait until it receives either an
<function>XIM_CREATE_IC_REPLY</function>
packet or an
<function>XIM_ERROR</function>
packet.
</para>

<literallayout class="monospaced">
XIM_CREATE_IC_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect2>
<sect2 id="Destroying_the_IC">
<title>Destroying the IC</title>
<para>
<function>XIM_DESTROY_IC</function>
message requests to destroy the IC.
</para>

<literallayout class="monospaced">
XIM_DESTROY_IC (IM library -&gt; IM Server)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
<function>XIM_DESTROY_IC </function>
is a synchronous request. The IM library should not free its resources
until it receives an
<function>XIM_DESTROY_IC_REPLY</function>
message because <function>XIM_DESTROY_IC</function>
message may result in Callback packets such as
<function>XIM_PREEDIT_DRAW</function>
and <function>XIM_PREEDIT_DONE.</function>
</para>

<literallayout class="monospaced">
XIM_DESTROY_IC_REPLY (IM Server -&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect2>

<sect2 id="Setting_IC_Values">
<title>Setting IC Values</title>
<para>
<function>XIM_SET_IC_VALUES</function>
messages requests to set attributes to the IC.
</para>


<literallayout class="monospaced">
XIM_SET_IC_VALUES (IM library -&gt; IM Server)
     2     CARD16                 input-method-ID
     2     CARD16                 input-context-ID
     2     n                      byte length of ic-attributes
     2                            unused
     n     LISTofXICATTRIBUTE     ic-attributes
</literallayout>

<para>
The ic-attributes in
<function>XIM_SET_IC_VALUES</function>
message are specified as a LISTofXICATTRIBUTE, specifying the attributes
to be set. Attributes other than the ones returned by
<function>XIM_OPEN_REPLY</function> message should not be specified.
</para>

<para>
<function>XIM_SET_IC_VALUES </function>
is a synchronous request. The IM library should wait until receiving
either an <function>XIM_SET_IC_VALUES_REPLY </function>
packet or an <function>XIM_ERROR</function>
packet, because it must receive the error attribute if
<function>XIM_ERROR</function> message is returned.
</para>


<literallayout class="monospaced">
XIM_SET_IC_VALUES_REPLY (IM Server -&gt; IM library)
<!-- .sp 6p -->
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect2>
<sect2 id="Getting_IC_Values">
<title>Getting IC Values</title>
<para>
<function>XIM_GET_IC_VALUES</function>
message requests to query IC values supported by the IM Server currently
being connected.
</para>


<literallayout class="monospaced">
XIM_GET_IC_VALUES (IM library -&gt; IM Server)
<!-- .sp 6p -->
     2     CARD16           input-method-ID
     2     CARD16           input-context-ID
     2     n                byte length of ic-attribute-id
     n     LISTofCARD16     ic-attribute-id
     p                      unused, p=Pad(2+n)
</literallayout>

<para>
In LISTofCARD16, the appearance of the ic-attribute-id for the separator
of NestedList shows the end of the heading nested list.
</para>

<para>
<function>XIM_GET_IC_VALUES</function>
is a synchronous request and returns each attribute with its values to
show the correspondence.  The IM library should wait until receiving
either an <function>XIM_GET_IC_VALUES_REPLY</function>
packet or an <function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_GET_IC_VALUES_REPLY (IM Server -&gt; IM library)
     2     CARD16                 input-method-ID
     2     CARD16                 input-context-ID
     2     n                      byte length of ic-attribute
     2                            unused
     n     LISTofXICATTRIBUTE     ic-attribute
</literallayout>

</sect2>
<sect2 id="Setting_IC_Focus">
<title>Setting IC Focus</title>
<para>
<function>XIM_SET_IC_FOCUS</function>
message requests to set the focus to the IC.
</para>

<literallayout class="monospaced">
XIM_SET_IC_FOCUS (IM library -&gt; IM Server)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
<function>XIM_SET_IC_FOCUS</function> is an asynchronous request.
</para>

</sect2>
<sect2 id="Unsetting_IC_Focus">
<title>Unsetting IC Focus</title>
<para>
<function>XIM_UNSET_IC_FOCUS</function>
message requests to unset the focus to the focused IC.
</para>

<literallayout class="monospaced">
XIM_UNSET_IC_FOCUS (IM library -&gt; IM Server)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
<function>XIM_UNSET_IC_FOCUS</function>
is an asynchronous request.
</para>

</sect2>

<sect2 id="filtering_events">
<title>Filtering Events</title>
<para>
Event filtering is mainly provided for BackEnd method to allow input method
to capture X events transparently to clients.
</para>

<para>
X Events are forwarded by
<function>XIM_FORWARD_EVENT</function> message.
This message can be operated both synchronously and asynchronously.
If the requester sets the synchronous flag, the receiver must send
<function>XIM_SYNC_REPLY</function>
message back to the requester when all the data processing is done.
</para>
<para>
Protocol flow of BackEnd model
</para>

<para>
With BackEnd method, the protocol flow can be classified into two
methods in terms of synchronization, depending on the synchronous-eventmask
of <function>XIM_SET_EVENT_MASK</function>
message.  One can be called on-demand-synchronous method and another
can be called as full-synchronous method.
</para>

<para>
In on-demand-synchronous method, the IM library always receives
<function>XIM_FORWARD_EVENT</function>
or
<function>XIM_COMMIT</function>
message as a synchronous request. Also, the IM Server needs to synchronously
process the correspondent reply from the IM library and the following
<function>XIM_FORWARD_EVENT</function>
message sent from the IM library when any of the event causes the IM Server
to send
<function>XIM_FORWARD_EVENT</function>
or
<function>XIM_COMMIT</function>
message to the IM library, so that the input service is consistent.  If the
IM library gets the control back from the application after receiving the
synchronous request, the IM library replies for the synchronous request before
processing any of the events. In this time, the IM Server blocks
<function>XIM_FORWARD_EVENT</function>
message which is sent by the IM library, and handles it after receiving the
reply. However, the IM Server handles the other protocols at any time.
</para>

<para>
In full-synchronous method, the IM library always sends
<function>XIM_FORWARD_EVENT</function>
message to the IM Server as a synchronous request. Therefore, the reply to it
from the IM Server will be put between the
<function>XIM_FORWARD_EVENT</function> message and its
<function>XIM_SYNC_REPLY</function> message.  In case of sending
<function>XIM_FORWARD_EVENT</function> or
<function>XIM_COMMIT</function>
message, the IM Server should set the synchronous flag off. Because the
synchronization can be done by the following
<function>XIM_SYNC_REPLY</function> message.
</para>

<para>
Following chart shows one of the simplest protocol flow which only
deals with keyevents for preediting operation.
</para>

<mediaobject  id="sampleprotocolflow">
  <imageobject>
    <imagedata  format="SVG"  fileref="sampleprotocolflow1.svg"/>
  </imageobject>
  <caption>Sample Protocol Flow</caption>
</mediaobject>


<para>
Following chart shows one of the complex protocol flow, which deals
with multiple focus windows and button press event as well as keyevent,
and the focus is moved by the application triggered by both of keyevent
and button press event.
</para>
<mediaobject  id="sampleprotocolflow2">
  <imageobject>
    <imagedata  format="SVG"  fileref="sampleprotocolflow2.svg"/>
  </imageobject>
  <caption>Sample Protocol Flow 2</caption>
</mediaobject>

<literallayout class="monospaced">
XIM_FORWARD_EVENT (IM library &lt;--&gt; IM Server)
     2     CARD16         input-method-ID
     2     CARD16         input-context-ID
     2     BITMASK16      flag
           #0001          synchronous
           #0002          request filtering (*1)
           #0004          request lookupstring (*2)
     2     CARD16         serial number
           XEVENT         X event

(*1)  Indicate the receiver should filter events and possible preedit may be invoked.

(*2)  Indicate the receiver should only do lookup string. The IM Server is expected
to just do a conversion of the key event to the best candidate. This bit may
affect the state of the preedit state (e.g. compose of dead key sequences).
</literallayout>

<para>
XEVENT format is same as the X Protocol event format(xEvent).
As the value of xEvent's sequenceNumber is the bottom of 16 bit of XEvent's
xany.serial, the top of 16 bit is sent by serial number(INT16).
</para>

<para>
<function>XIM_FORWARD_EVENT</function>
message is used for forwarding the events from the IM library to the IM Server
in order for IM to be able to filter the event. On the other hand, this
message is also used for forwarding the events from the IM Server to the IM
library if the event forwarded from the IM library is not filtered.
The IM Server, which receives
<function>XIM_FORWARD_EVENT</function>
message without synchronous bit, should set synchronous bit.
If both "request event filtering" and "request lookupstring" flag are
set, then both filtering and lookup should be done for the same event.
</para>

</sect2>

<sect2 id="Synchronizing_with_the_IM_Server">
<title>Synchronizing with the IM Server</title>

<para>
<function>XIM_SYNC</function>
message requests to synchronize the IM library and the IM Server.
</para>

<literallayout class="monospaced">
XIM_SYNC (IM library &lt;--&gt; IM Server)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
This synchronization can be started either on the IM library side or on the
IM Server side.  The side which receives
<function>XIM_SYNC</function>
message should process all XIM requests before replying. The input-context-ID
is necessary to distinguish the IC with which the IM library and the IM
Server are synchronized.
</para>

<literallayout class="monospaced">
XIM_SYNC_REPLY (IM Server &lt;--&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>



<para>
The side which receives
<function>XIM_FORWARD_EVENT, </function>
<function>XIM_COMMIT</function>
or any other message with synchronous bit, should process all XIM request
before replying, and send
<function>XIM_SYNC_REPLY</function>
message as the reply to the previous message.
</para>

</sect2>

<sect2 id="Sending_a_committed_string">
<title>Sending a committed string</title>
<para>
When the IM Server commits a string, the IM Server sends either the committed
string or list of KeySym, or both, by
<function>XIM_COMMIT</function>
message.
</para>

<literallayout class="monospaced">
XIM_COMMIT (IM Server -&gt; IM library)

     2     CARD16          input-method-ID
     2     CARD16          input-context-ID
     2     BITMASK16       flag
           #0001           synchronous
           #0002           XLookupChars
           #0004           XLookupKeySym
           #0006           XLookupBoth = XLookupChars | XLookupKeySym
</literallayout>

<para>
If flag is XLookupKeySym, the arguments continue as follows:
</para>

<literallayout class="monospaced">
     2                unused
     4     KEYSYM     KeySym
</literallayout>

<para>
If flag is XLookupChars, the arguments continue as follows
</para>

<literallayout class="monospaced">
     2     m              byte length of committed string
     m     LISTofBYTE     committed string
     p                    unused, p = Pad(m)
</literallayout>

<para>
If flag is XLookupBoth, the arguments continue as follows
</para>

<literallayout class="monospaced">
     2                    unused
     4     KEYSYM         KeySym
     2     n              byte length of committed string
     n     LISTofBYTE     committed string
     p                    unused, p = Pad(2+n)
</literallayout>

<para>
The IM Server which receives
<function>XIM_COMMIT</function>
message without synchronous bit should set synchronous bit.
</para>

</sect2>

<sect2 id="Reset_IC">
<title>Reset IC</title>
<para>
<function>XIM_RESET_IC</function>
message requests to reset the status of IC in the IM Server.
</para>

<literallayout class="monospaced">
XIM_RESET_IC (IM library -&gt; IM Server)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>


<para>
<function>XIM_RESET_IC</function>
is a synchronous request. The IM library should wait until receiving either an
<function>XIM_RESET_IC_REPLY</function> packet or an
<function>XIM_ERROR</function> packet.
</para>

<literallayout class="monospaced">
XIM_RESET_IC_REPLY (IM Server -&gt; IM library)

     2     CARD16         input-method-ID
     2     CARD16         input-context-ID
     2     n              byte length of preedit string
     n     LISTofBYTE     preedit string
     p                    unused, p = Pad(2+n)
</literallayout>

<para>
<function>XIM_RESET_IC_REPLY </function>
message returns the input-context-ID to distinguish replies from multiple ICs.
</para>

</sect2>
<sect2 id="Callbacks">
<title>Callbacks</title>
<para>
If XIMStyle has XIMPreeditArea or XIMStatusArea set, XIMGeometryCallback
may be used, and if XIMPreeditCallback and/or XIMStatusCallback are set,
corresponding callbacks may be used.
</para>

<para>
Any callback request may be sent from an IM Server to an IM client
asynchronously in response to any request previously sent by the IM client
to the IM Server.
</para>

<para>
When an IM Server needs to send a callback request synchronously with
the request previously sent by an IM client, the IM Server sends it
before replying to the previous request.
</para>

<sect3 id="Negotiating_geometry">
<title>Negotiating geometry</title>
<para>
The IM Server sends
<function>XIM_GEOMETRY </function>
message to start geometry negotiation, if XIMStyle has XIMPreeditArea or
XIMStatusArea set.
</para>


<literallayout class="monospaced">
XIM_GEOMETRY (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
There is always a single Focus Window, even if some input fields have only
one IC.
</para>

</sect3>

<sect3 id="Converting_a_string">
<title>Converting a string</title>

<literallayout class="monospaced">
XIM_STR_CONVERSION (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     2     CARD16     XIMStringConversionPosition
     2                unused
     4     CARD32     XIMCaretDirection
           #0         XIMForwardChar
           #1         XIMBackwardChar
           #2         XIMForwardWord
           #3         XIMBackwardWord
           #4         XIMCaretUp
           #5         XIMCaretDown
           #6         XIMNextLine
           #7         XIMCPreviousLine
           #8         XIMLineStart
           #9         XIMLineEnd
           #10        XIMAbsolutePosition
           #11        XIMDontChange
     2     CARD16     factor
     2     CARD16     XIMStringConversionOperation
           #0001      XIMStringConversionSubstitution
           #0002      XIMStringConversionRetrieval
     2     INT16      byte length to multiply the XIMStringConversionType
</literallayout>

<para>
<function>XIM_STR_CONVERSION </function>
message may be used to start the string conversion from the IM Server.
</para>

<literallayout class="monospaced">
XIM_STR_CONVERSION_REPLY (IM library -&gt; IM Server)

     2     CARD16             input-method-ID
     2     CARD16             input-context-ID
     4     CARD32             XIMStringConversionFeedback
           XIMSTRCONVTEXT     XIMStringConversionText
</literallayout>

<para>
<function>XIM_STR_CONVERSION_REPLY </function>
message returns the string to be converted and the feedback information array.
</para>
</sect3>

<sect3 id="Preedit_Callbacks">
<title>Preedit Callbacks</title>

<para>
The IM Server sends
<function>XIM_PREEDIT_START </function>
message to call the XIMPreeditStartCallback function.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_START (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
The reply to this message must be sent synchronously. The reply forwards
the return value from the callback function to the IM Server.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_START_REPLY (IM library -&gt; IM Server)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     4     INT32     return value
</literallayout>

<para>
<function>XIM_PREEDIT_START_REPLY</function>
message returns the input-context-ID to distinguish replies from multiple
IC's.  The return value contains the return value of the function
XIMPreeditStartCallback.
</para>

<para>
The IM Server sends
<function>XIM_PREEDIT_DRAW </function>
message to call the XIMPreeditDrawCallback function.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_DRAW (IM Server -&gt; IM library)

     2     CARD16                input-method-ID
     2     CARD16                input-context-ID
     4     INT32                 caret
     4     INT32                 chg_first
     4     INT32                 chg_length
     4     BITMASK32             status
           #x0000001             no string
           #x0000002             no feedback
     2     n                     length of preedit string
     n     STRING8               preedit string
     p                           unused, p = Pad(2+n)
     2     m                     byte length of feedback array
     2                           unused
     m     LISTofXIMFEEDBACK     feedback array
</literallayout>

<para>
The fields "caret", "chg_first" and "chg_length" correspond to the
fields of XIMPreeditDrawCallbackStruct.
When the "no string" bit of the status field is set, the text field of
XIMPreeditDrawCallbackStruct is NULL.
When the "no feedback" bit of the status field is set, the text feedback
field of XIMPreeditDrawCallbackStruct is NULL.
When the above bits are not set, "preedit string" contains the preedit
string to be displayed, and the feedback array contains feedback information.
</para>

<para>
The IM Server sends
<function>XIM_PREEDIT_CARET</function>
message to call the PreeditCaretCallback function.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_CARET (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     4     INT32      position
     4     CARD32     direction
           #0         XIMForwardChar
           #1         XIMBackwardChar
           #2         XIMForwardWord
           #3         XIMBackwardWord
           #4         XIMCaretUp
           #5         XIMCaretDown
           #6         XIMNextLine
           #7         XIMCPreviousLine
           #8         XIMLineStart
           #9         XIMLineEnd
           #10        XIMAbsolutePosition
           #11        XIMDontChange
     4     CARD32     style
           #0         XIMInvisible
           #1         XIMCPrimary
           #2         XIMSecondary
</literallayout>

<para>
Each entry corresponds to a field of XIMPreeditCaretCallbackStruct.
Since this callback sets the caret position, its reply must be sent
synchronously.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_CARET_REPLY (IM library -&gt; IM Server)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     4     CARD32     position
</literallayout>

<para>
The position is the value returned by the callback function after it
has been called.
</para>

<para>
The IM Server sends
<function>XIM_PREEDIT_DONE </function>
message to call the XIMPreeditDoneCallback function.
</para>

<literallayout class="monospaced">
XIM_PREEDIT_DONE (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect3>

<sect3 id="Preedit_state_notify">
<title>Preedit state notify</title>

<literallayout class="monospaced">
XIM_PREEDITSTATE (IM Server -&gt; IM Library)
     2     CARD16        input-method-ID
     2     CARD16        input-context-ID
     4     BITMASK32     XIMPreeditState
           #x0000000     XIMPreeditUnknown
           #x0000001     XIMPreeditEnable
           #x0000002     XIMPreeditDisable
</literallayout>

<para>
<function>XIM_PREEDITSTATE</function>
message is used to call the XIMPreeditStateNotifyCallback function.
</para>

</sect3>

<sect3 id="Status_Callbacks">
<title>Status Callbacks</title>

<para>
The IM Server sends
<function>XIM_STATUS_START </function>
message to call the XIMStatusStartCallback function.
</para>

<literallayout class="monospaced">
XIM_STATUS_START (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

<para>
The IM Server sends
<function>XIM_STATUS_DRAW </function>
message to call the XIMStatusDrawCallback function.
</para>

<literallayout class="monospaced">
XIM_STATUS_DRAW (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     4     CARD32     type
           #0         XIMTextType
           #1         XIMBitmapType
</literallayout>

<para>
If type is XIMTextType, the arguments continue as follows.
</para>

<literallayout class="monospaced">
     4     BITMASK32            status
           #x0000001            no string
           #x0000002            no feedback
     2     n                    length of status string
     n     STRING8              status string
     p                          unused, p = Pad(2+n)
     2     m                    byte length of feedback array
     2                          unused
     m     LISTofXIMFEEDBACK    feedback array
</literallayout>

<para>
If type is XIMBitmapType, the arguments continue as follows.
</para>

<literallayout class="monospaced">
     4     PIXMAP     pixmap data
</literallayout>

<para>
The field "type" corresponds to the field in XIMStatusDrawCallbackStruct.
</para>

<para>
The IM Server sends
<function>XIM_STATUS_DONE </function>
message to call the XIMStatusDoneCallback function.
</para>

<literallayout class="monospaced">
XIM_STATUS_DONE (IM Server -&gt; IM library)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
</literallayout>

</sect3>
</sect2>
</sect1>

<sect1 id="Acknowledgements">
<title>Acknowledgements</title>
<para>
This document represents the culmination of several years of debate and
experiments done under the auspices of the MIT X Consortium i18n working
group.  Although this was a group effort, the author remains responsible
for any errors or omissions.
</para>

<para>
We would like to thank to all members of this group.
And we would like to make special thanks to the following people
(in alphabetical order) for their participation in the IM Protocol
design,
Hector Chan, Takashi Fujiwara, Yoshio Horiuchi, Makoto Inada,
Hiromu Inukai, Mickael Kung, Seiji Kuwari, Franky Ling, Hiroyuki Machida,
Hiroyuki Miyamoto, Frank Rojas, Bob Scheifler, Makiko Shimamura,
Shoji Sugiyama, Hidetoshi Tajima, Masaki Takeuchi, Makoto Wakamatsu,
Masaki Wakao, Nobuyuki Tanaka, Shigeru Yamada, Katsuhisa Yano, Jinsoo Yoon.
</para>

</sect1>

<bibliography>
<title>References</title>
<biblioentry>
  <title>X Window System Protocol Version 11</title>
  <author><firstname>Robert W.</firstname><surname>Scheifler</surname></author>
</biblioentry>

<biblioentry>
  <title>Xlib - C Language X Interface"</title>
  <author><firstname>Robert W.</firstname><surname>Scheifler</surname></author>
</biblioentry>
</bibliography>

<appendix id="common_extensions">
<title>Common Extensions</title>
<para>
Extension opcodes and packet names (e.g.
<function>XIM_EXT_SET_EVENT_MASK</function>
) for additional extensions may be registered with X Consortium.
The following is a commonly well-known extended packet.
</para>

<para>
(1) Extension to manipulate the event handling\fP
</para>

<para>
<!-- .LP -->
<function>XIM_EXT_SET_EVENT_MASK </function>
message specifies the set of event masks that the IM library should manipulate.
</para>

<literallayout class="monospaced">
XIM_EXT_SET_EVENT_MASK (IM Server -&gt; IM library)

     2     CARD16        input-method-ID
     2     CARD16        input-context-ID
     4     EVENTMASK     filter-event-mask (*1)
     4     EVENTMASK     intercept-event-mask (*2)
     4     EVENTMASK     select-event-mask (*3)
     4     EVENTMASK     forward-event-mask (*4)
     4     EVENTMASK     synchronous-event-mask (*5)

     (*1) Specify the events to be neglected by the IM library via XFilterEvent.
     (*2) Specify the events to be deselected by the IM library with XSelectInput.
     (*3) Specify the events to be selected by the IM library with XSelectInput.
     (*4) Specify all the events to be forwarded to the IM Server by the IM library.
     (*5) Specify the events to be forwarded with synchronous flag on by the IM library.
</literallayout>

<para>
<!-- .LP -->
The IM library must reply
<function>XIM_SYNC_REPLY</function>
message to the IM Server. This request is valid after the ic is created.
</para>

<para>
(2) Extension for improvement of performance.
</para>
<para>
The following requests may be used for improvement of performance.
</para>

<para>
<function>XIM_EXT_FORWARD_KEYEVENT</function>
message may be used instead of
<function>XIM_FORWARD_EVENT</function>
message.
</para>

<literallayout class="monospaced">
XIM_EXT_FORWARD_KEYEVENT (IM Server &lt;--&gt; IM library)
     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     2     BITMASK16     flag
          #0001     synchronous
     2     CARD16     sequence number
     1     BYTE     xEvent.u.u.type
     1     BYTE     keycode
     2     CARD16     state
     4     CARD32     time
     4     CARD32     window
</literallayout>

<para>
<function>XIM_EXT_MOVE</function>
message may be used to change the spot location instead of
<function></function>
XIM_SET_IC_VALUES
message.
It is effective only if the client specified XIMPreeditPosition.
</para>


<literallayout class="monospaced">
XIM_EXT_MOVE (IM library -&gt; IM Server)

     2     CARD16     input-method-ID
     2     CARD16     input-context-ID
     2     INT16     X
     2     INT16     Y
</literallayout>

<para>
<function>XIM_EXT_MOVE</function>
message is a asynchronous request.
</para>

</appendix>
<appendix id="transport_list">
<title>Transport List</title>

<para>
The list of transport specific IM Server address format registered
</para>

<para>
The following format represents the ATOM contained in
<function>XIM_SERVERS</function>
property and the string returned from the request converting
selection target LOCALES and TRANSPORT.
</para>
<literallayout class="monospaced">
     "{<emphasis remap='I'>category</emphasis>=[<emphasis remap='I'>value</emphasis>,...]}..."
</literallayout>
<para>
The following categories are currently registered.
</para>

<literallayout class="monospaced">
<function>server</function>;: IM Server name (used for XIM_SERVERS)
<function>locale</function>;: XPG4 locale name (LOCALES)
<function>transport</function>;: transport-specific name (TRANSPORT)
</literallayout>

<para>
The preregistered formats for transport-specific names are as follows:
</para>

<para>
<function>TCP/IP Names</function>
</para>

<para>
The following syntax should be used for system internal domain names:
</para>
<literallayout class="monospaced">
&lt;<emphasis remap='I'>local name</emphasis>&gt;  ::= "local/"&lt;<emphasis remap='I'>hostname</emphasis>&gt;":"&lt;<emphasis remap='I'>pathname</emphasis>&gt;
</literallayout>
<para>
Where &lt;<emphasis remap='I'>pathname</emphasis>&gt; is a path name of socket address.
</para>

<para>
IM Server's name should be set to &lt;<emphasis remap='I'>pathname</emphasis>&gt; to run multiple IM Server
at the same time
</para>

<para>
The following syntax should be used for Internet domain names:
</para>
<literallayout class="monospaced">
&lt;<emphasis remap='I'>TCP name</emphasis>&gt;  ::=  "tcp/"&lt;<emphasis remap='I'>hostname</emphasis>&gt;":"&lt;<emphasis remap='I'>ipportnumber</emphasis>&gt;
</literallayout>
<para>
where &lt;<emphasis remap='I'>hostname</emphasis>&gt; is either symbolic (such as expo.lcs.mit.edu) or
numeric decimal (such as 18.30.0.212).  The &lt;<emphasis remap='I'>ipportnumber</emphasis>&gt; is the
port on which the IM Server is listening for connections.
For example:
</para>
<literallayout class="monospaced">
tcp/expo.lcs.mit.edu:8012
tcp/18.30.0.212:7890
</literallayout>

<para>
<function>DECnet Names</function>
</para>

<para>
The following syntax should be used for DECnet names:
</para>
<literallayout class="monospaced">
&lt;<emphasis remap='I'>DECnet name</emphasis>&gt;  ::=  "decnet/"&lt;<emphasis remap='I'>nodename</emphasis>&gt;"::IMSERVER$"&lt;<emphasis remap='I'>objname</emphasis>&gt;
</literallayout>
<para>
where &lt;<emphasis remap='I'>nodename</emphasis>&gt; is either
symbolic (such as SRVNOD) or the numeric
decimal form of the DECnet address (such as 44.70).
The &lt;<emphasis remap='I'>objname</emphasis>&gt;
is normal, case-insensitive DECnet object name. For example:
</para>

<literallayout class="monospaced">
DECNET/SRVNOD::IMSERVER$DEFAULT
decnet/44.70::IMSERVER$other
</literallayout>

<para>
<function>X Names</function>
</para>

<para>
The following syntax should be used for X names:
</para>
<literallayout class="monospaced">
&lt;<emphasis remap='I'>X name</emphasis>&gt;  ::=  "X/"
</literallayout>

<para>
If a given category has multiple values, the value is evaluated in order of
setting.
</para>

</appendix>
<appendix id="protocol_number">
<title>Protocol Number</title>

<para>
<function>Major Protocol number</function>
</para>

<literallayout class="monospaced">
XIM_CONNECT                                  #001
XIM_CONNECT_REPLY                            #002
XIM_DISCONNECT                               #003
XIM_DISCONNECT_REPLY                         #004

XIM_AUTH_REQUIRED                            #010
XIM_AUTH_REPLY                               #011
XIM_AUTH_NEXT                                #012
XIM_AUTH_SETUP                               #013
XIM_AUTH_NG                                  #014

XIM_ERROR                                    #020

XIM_OPEN                                     #030
XIM_OPEN_REPLY                               #031
XIM_CLOSE                                    #032
XIM_CLOSE_REPLY                              #033
XIM_REGISTER_TRIGGERKEYS                     #034
XIM_TRIGGER_NOTIFY                           #035
XIM_TRIGGER_NOTIFY_REPLY                     #036
XIM_SET_EVENT_MASK                           #037
XIM_ENCODING_NEGOTIATION                     #038
XIM_ENCODING_NEGOTIATION_REPLY               #039
XIM_QUERY_EXTENSION                          #040
XIM_QUERY_EXTENSION_REPLY                    #041
XIM_SET_IM_VALUES                            #042
XIM_SET_IM_VALUES_REPLY                      #043
XIM_GET_IM_VALUES                            #044
XIM_GET_IM_VALUES_REPLY                      #045

XIM_CREATE_IC                                #050
XIM_CREATE_IC_REPLY                          #051
XIM_DESTROY_IC                               #052
XIM_DESTROY_IC_REPLY                         #053
XIM_SET_IC_VALUES                            #054
XIM_SET_IC_VALUES_REPLY                      #055
XIM_GET_IC_VALUES                            #056
XIM_GET_IC_VALUES_REPLY                      #057
XIM_SET_IC_FOCUS                             #058
XIM_UNSET_IC_FOCUS                           #059
XIM_FORWARD_EVENT                            #060
XIM_SYNC                                     #061
XIM_SYNC_REPLY                               #062
XIM_COMMIT                                   #063
XIM_RESET_IC                                 #064
XIM_RESET_IC_REPLY                           #065

XIM_GEOMETRY                                 #070
XIM_STR_CONVERSION                           #071
XIM_STR_CONVERSION_REPLY                     #072
XIM_PREEDIT_START                            #073
XIM_PREEDIT_START_REPLY                      #074
XIM_PREEDIT_DRAW                             #075
XIM_PREEDIT_CARET                            #076
XIM_PREEDIT_CARET_REPLY                      #077
XIM_PREEDIT_DONE                             #078
XIM_STATUS_START                             #079
XIM_STATUS_DRAW                              #080
XIM_STATUS_DONE                              #081
XIM_PREEDITSTATE                             #082

(*) The IM Server's extension protocol number should be more than #128.
</literallayout>
</appendix>

<appendix id="implementation_tips">

<title>Implementation Tips</title>
<para>
(1) FrontEnd Method
</para>

<para>
FrontEnd method is recognized as a performance acceleration by the
trade off of the variety of the reliability.
</para>

<para>
In order to use the FrontEnd method, the IM library must query the IM
Server to see if the FrontEnd extension is available.  The query is
made by using the
<function>XIM_QUERY_EXTENSION</function>
message. The IM Server may send
<function>XIM_EXT_SET_EVENT_MASK</function>
message with intercept-event-mask, forward-event-mask, and
synchronous-event-mask values set after replying
<function>XIM_QUERY_EXTENSION_REPLY</function>
message.
</para>

<para>
FrontEnd method can be implemented in a couple of ways depending on
how the IM Server utilize
<function>XIM_EXT_SET_EVENT_MASK</function>
message.
</para>

<para>
One approach is to update both of the input mask and the filter-event-mask
depending on the preeidting state. The sample protocol sequence using the
static event flow is as follows:
</para>

<mediaobject  id="staticflow">
  <imageobject>
    <imagedata  scale="75" format="SVG"  fileref="staticflow.svg"/>
  </imageobject>
  <caption>The flow of events</caption>
</mediaobject>

<para>
To pursuit a maximum performance regardless of the preediting mode,
the IM Server may use the dynamic event flow with the following
sample protocol sequence.
</para>

<mediaobject  id="dynamicflow">
  <imageobject>
    <imagedata  scale="75" format="SVG"  fileref="dynamicflow.svg"/>
  </imageobject>
  <caption>The flow of events</caption>
</mediaobject>

<para>
This method can reduce the XIM protocol traffic dramatically
by updating intercept-event-mask and select-event-mask accordingly.
The tradeoff of this performance improvement is that the key
events may be lost or disordered in some particular situation, such as
when the user types the keyboard in following sequence really fast:
</para>

<para>
&lt;preediting on key&gt;"some strings"&lt;preediting off
key&gt;"another string"
</para>

<para>
Since this method requires the input mask updates to the both the IM Server
and Xlib when turning on and off the preediting, and there is a time lag
till the requests take effect when two client issues the input mask updates
simultaneously.
</para>

<para>
Another approach of the FrontEnd method is to update the filter-event-mask
depending on the preediting state and not to update the input mask.
The IM Server must register both of the preediting on key list and off key
list by
<function>XIM_REGISTER_TRIGGERKEYS</function>
message.
In this method, Both the IM Server and the IM client select the same
events on the same client's window, so that the events are delivered
to both of the IM Server and the client. The preediting on and off
states are expressed by whether the key events are filtered or not.
The sample protocol sequence are as follows:
</para>

<para>
&lt;&lt;Using static event flow&gt;&gt;
</para>

<mediaobject  id="staticflowsampleseq">
  <imageobject>
    <imagedata  scale="75" format="SVG"  fileref="staticflowsampleseq.svg"/>
  </imageobject>
  <caption>The flow of events</caption>
</mediaobject>

<para>
&lt;&lt;Using the dynamic event flow&gt;&gt;
</para>

<mediaobject  id="dynamicflowsampleseq">
  <imageobject>
    <imagedata  scale="75" format="SVG"  fileref="dynamicflowsampleseq.svg"/>
  </imageobject>
  <caption>The flow of events</caption>
</mediaobject>

<para>
This method does not have the problem of the time lag when going across
the preediting on and off mode, however, the amount of the performance
acceleration is not as good as the method described above.
</para>

<para>
In general, the FrontEnd method requires some synchronization to some
of the X protocols, such as the ChangeWindowAttribute protocol for the
event mask change or the GrabKey protocol, since it relies on the X's
principal event dispatching mechanism. Any X protocol bindings do not
consider the synchronization might cause some mis-synchronization
between the IM clients and the IM Server.
</para>

<para>
(2) Transport Layer
</para>

<para>
The Xlib XIM implementation is layered into three functions, a protocol
layer, an interface layer and a transport layer. The purpose of this
layering is to make the protocol independent of transport implementation.
Each function of these layers are:
</para>

<variablelist>
  <varlistentry>
    <term>The protocol layer</term>
    <listitem>
      <para>
implements overall function of XIM and calls the interface layer
functions when it needs to communicate to IM Server.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>The interface layer</term>
    <listitem>
      <para>
separates the implementation of the transport layer from the protocol
layer, in other words, it provides implementation independent hook for
the transport layer functions.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry>
    <term>The transport layer</term>
    <listitem>
      <para>
handles actual data communication with IM Server. It is done by a set
of several functions named transporters.
      </para>
    </listitem>
  </varlistentry>
</variablelist>

<para>
The interface layer and the transport layer make various communication
channels usable such as X Protocol, TCP/IP, DECnet or STREAM.
The following is a sample implementation for the transporter using
the X connection.
Refer to "xtrans" for the transporter using Socket Transport. <!-- xref ?-->
</para>

<para>
At the beginning of the X Transport connection for the XIM transport
mechanism, two different windows must be created either in an Xlib XIM
or in an IM Server, with which the Xlib and the IM Server exchange the
XIM transports by using the ClientMessage events and Window Properties.
In the following, the window created by the Xlib is referred as the
"client communication window", and on the other hand, the window created
by the IM Server is referred as the "IMS communication window".
</para>

<para>
Connection
</para>

<para>
In order to establish a connection, a communication window is created.
A ClientMessage in the following event's format is sent to the owner
window of XIM_SERVER selection, which the IM Server has created.
</para>

<para>
Refer to "The Input Method Protocol" for the XIM_SERVER atom. <!-- xref -->
</para>

<table frame="none" id="clientmessage_sent_to_the_ims_window">
<title>The ClientMessage sent to the IMS window.</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Structure Member</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>IMS Window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_XCONNECT", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>32</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[0]</entry>
      <entry>client communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[1]</entry>
      <entry>client-major-transport-version (*1)</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[2]</entry>
      <entry>client-major-transport-version (*1)</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
In order to establish the connection (to notify the IM Server communication
window), the IM Server sends a ClientMessage in the following event's
format to the client communication window.
</para>

<table frame="none" id="clientmessage_sent_by_the_im_server">
<title>The ClientMessage sent by the IM Server.</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Structure Member</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>client communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_XCONNECT", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>32</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[0]</entry>
      <entry>IMS communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[1]</entry>
      <entry>server-major-transport-version (*1)</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[2]</entry>
      <entry>server-minor-transport-version (*1)</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[3]</entry>
      <entry>dividing size between ClientMessage and Property (*2)</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
(*1) major/minor-transport-version
</para>
<para>
The read/write method is decided by the combination of
major/minor-transport-version, as follows:
</para>


<table frame="all" id="readwrite_method_and_the_majorminor_transport_version">
<title>The read/write method and the major/minor-transport-version</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="1"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3*" colsep="1"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Transport-version</entry>
      <entry>read/write</entry>
    </row>
    <row>
      <entry>major</entry>
      <entry>minor</entry>
      <entry></entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry morerows="2">0</entry>
      <entry>0</entry>
      <entry>only-CM &amp; Property-with-CM</entry>
    </row>
    <row rowsep="0">
      <entry>1</entry>
      <entry>only-CM &amp; multi-CM</entry>
    </row>
    <row rowsep="1">
      <entry>2</entry>
      <entry>only-CM &amp; multi-CM &amp; Property-with-CM</entry>
    </row>
    <row rowsep="1">
      <entry>1</entry>
      <entry>0</entry>
      <entry>PropertyNotify</entry>
    </row>
    <row rowsep="0">
      <entry morerows="1">2</entry>
      <entry>0</entry>
      <entry>only-CM &amp; PropertyNotify</entry>
    </row>
    <row>
      <entry>1</entry>
      <entry>only-CM &amp; multi-CM &amp; PropertyNotify</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<literallayout class="monospaced">
only-CM            :    data is sent via a ClientMessage
multi-CM           :    data is sent via multiple ClientMessages
Property-with-CM   :    data is written in Property, and its Atom
                        is send via ClientMessage
PropertyNotify     :    data is written in Property, and its Atom
                        is send via PropertyNotify

</literallayout>

<para>
The method to decide major/minor-transport-version is as follows:
</para>

<itemizedlist>
  <listitem>
    <para>
The client sends 0 as major/minor-transport-version to the IM Server.
The client must support all methods in Table D-3.
The client may send another number as major/minor-transport-version to
use other method than the above in the future.
    </para>
  </listitem>
  <listitem>
    <para>
The IM Server sends its major/minor-transport-version number to
the client. The client sends data using the method specified by the
IM Server.
    </para>
  </listitem>
  <listitem>
    <para>
If major/minor-transport-version number is not available, it is regarded
as 0.
<!-- .RE -->
    </para>
  </listitem>
</itemizedlist>

<para>
(*2) dividing size between ClientMessage and Property
</para>

<para>
If data is sent via both of multi-CM and Property, specify the dividing
size between ClientMessage and Property. The data, which is smaller than
this size, is sent via multi-CM (or only-CM), and the data, which is
lager than this size, is sent via Property.
</para>

<para>
<emphasis role="bold">read/write</emphasis>
</para>

<para>
The data is transferred via either ClientMessage or Window Property in
the X Window System.
</para>

<para>
Format for the data from the Client to the IM Server
</para>

<para>
ClientMessage
</para>

<para>
If data is sent via ClientMessage event, the format is as follows:
</para>


<table frame="none" id="clientmessage_events_format_first_or_middle">
<title>The ClientMessage event's format (first or middle)</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Structure Member</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>IMS communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_MOREDATA", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>char</entry>
      <entry>data.b[20]</entry>
      <entry>(read/write DATA : 20 byte)</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<table frame="none" id="clientmessage_events_format_only_or_last">
<title>The ClientMessage event's format (only or last)</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Structure Member</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>IMS communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_PROTOCOL", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>char</entry>
      <entry>data.b[20]</entry>
      <entry>(read/write DATA : MAX 20 byte)  (*1)</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
(*1) If the data is smaller than 20 byte, all data other than available data
must be 0.
</para>

<para>
Property
</para>

<para>
In the case of large data, data will be sent via the Window Property
for the efficiency.  There are the following two methods to notify
Property, and transport-version is decided which method is used.
</para>

<itemizedlist>
  <listitem>
    <para>
The XChangeProperty function is used to store data in the client
communication window, and Atom of the stored data is notified to the
IM Server via ClientMessage event.
    </para>
  </listitem>
  <listitem>
    <para>
The XChangeProperty function is used to store data in the client
communication window, and Atom of the stored data is notified to the
IM Server via PropertyNotify event.
    </para>
  </listitem>
</itemizedlist>

<para>
The arguments of the XChangeProperty are as follows:
</para>

<table frame="none" id="xchangeproperty_events_format">
<title>The XChangeProperty event's format</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Argument</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>IMS communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>property</entry>
      <entry>read/write property Atom (*1)</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>type</entry>
      <entry>XA_STRING  </entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>mode</entry>
      <entry>PropModeAppend</entry>
    </row>
    <row rowsep="0">
      <entry>u_char</entry>
      <entry>*data</entry>
      <entry>read/write DATA</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>nelements</entry>
      <entry>length of DATA</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
The read/write property ATOM allocates the following strings by
<function>XInternAtom</function>.
</para>

<para>
"_clientXXX"
</para>

<para>
The client changes the property with the mode of PropModeAppend and
the IM Server will read it with the delete mode i.e. (delete = True).
</para>

<para>
If Atom is notified via ClientMessage event, the format of the ClientMessage
is as follows:
</para>

<table frame="none" id="clientmessage_events_format_to_send_atom_of_property">
<title>The ClientMessage event's format to send Atom of property</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry spanname="span-horiz">Structure Members</entry>
      <entry>Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>IMS communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_PROTOCOL", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>32</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[0]</entry>
      <entry>length of read/write property Atom</entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[1]</entry>
      <entry>read/write property Atom</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
Format for the data from the IM Server to the Client
</para>

<para>
<!-- .LP -->
<!-- .RS -->
<!-- .B -->
ClientMessage
</para>
<para>
<!-- .LP -->
The format of the ClientMessage is as follows:
</para>



<table frame="none" id="clientmessage_events_format_for_first_or_middle">
<title>The ClientMessage event's format (first or middle)</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry align="left" spanname="span-horiz">Structure Members</entry>
      <entry align="left">Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event </entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>client communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_MOREDATA", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>char</entry>
      <entry>data.b[20]</entry>
      <entry>(read/write DATA : 20 byte)</entry>
    </row>
  </tbody>
  </tgroup>
</table>


<table frame="none" id="clientmessage_events_format_for_only_or_last">
<title>The ClientMessage event's format (only or last)</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry align="left" spanname="span-horiz">Structure Members</entry>
      <entry align="left">Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage</entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event </entry>
      <entry>Set by the X Window System</entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>client communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_PROTOCOL", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>char</entry>
      <entry>data.b[20]</entry>
      <entry>(read/write DATA : MAX 20 byte) (*1)</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
(*1) If the data size is smaller than 20 bytes, all data other than available
data must be 0.
</para>

<para>
Property
</para>

<para>
In the case of large data, data will be sent via the Window Property
for the efficiency. There are the following two methods to notify
Property, and transport-version is decided which method is used.
</para>

<itemizedlist>
  <listitem>
    <para>
The XChangeProperty function is used to store data in the IMS
communication window, and Atom of the property is sent via the
ClientMessage event.
    </para>
  </listitem>
  <listitem>
    <para>
The XChangeProperty function is used to store data in the IMS
communication window, and Atom of the property is sent via
PropertyNotify event.
    </para>
  </listitem>
</itemizedlist>

<para>
The arguments of the XChangeProperty are as follows:
</para>

<table frame="none" id="xchangeproperty_events_format_2">
<title>The XChangeProperty event's format</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*" colsep="1"/>
  <colspec colname="col3" colwidth="3.5*" colsep="0"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry align="left" spanname="span-horiz">Argument</entry>
      <entry align="left">Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display which to connects</entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>client communication window ID</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>property</entry>
      <entry>read/write property Atom (*1)</entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>type</entry>
      <entry>XA_STRING</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>8</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>mode</entry>
      <entry>PropModeAppend</entry>
    </row>
    <row rowsep="0">
      <entry>u_char</entry>
      <entry>*data</entry>
      <entry>read/write DATA</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>nelements</entry>
      <entry>length of DATA</entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
(*1)  The read/write property ATOM allocates some strings, which are not
allocated by the client, by <function>XInternAtom</function>.
</para>

<para>
The IM Server changes the property with the mode of PropModeAppend and
the client reads it with the delete mode, i.e. (delete = True).
</para>

<para>
If Atom is notified via ClientMessage event, the format of the ClientMessage
is as follows:
</para>


<table frame="none" id="clientmessage_events_format_to_send_atom_of_property_2">
<title>The ClientMessage event's format to send Atom of property</title>
  <tgroup cols="3">
  <colspec colname="col1" colwidth="1*" colsep="0"/>
  <colspec colname="col2" colwidth="1*"/>
  <colspec colname="col3" colwidth="3.5*"/>
  <spanspec namest="col1" nameend="col2" spanname="span-horiz" align="center"/>
  <thead>
    <row>
      <entry align="left" spanname="span-horiz">Structure Member</entry>
      <entry align="left">Contents</entry>
    </row>
  </thead>
  <tbody>
    <row rowsep="0">
      <entry>int</entry>
      <entry>type</entry>
      <entry>ClientMessage  </entry>
    </row>
    <row rowsep="0">
      <entry>u_long</entry>
      <entry>serial</entry>
      <entry>Set by the X Window System  </entry>
    </row>
    <row rowsep="0">
      <entry>Bool</entry>
      <entry>send_event</entry>
      <entry>Set by the X Window System  </entry>
    </row>
    <row rowsep="0">
      <entry>Display</entry>
      <entry>*display</entry>
      <entry>The display to which connects  </entry>
    </row>
    <row rowsep="0">
      <entry>Window</entry>
      <entry>window</entry>
      <entry>client communication window ID  </entry>
    </row>
    <row rowsep="0">
      <entry>Atom</entry>
      <entry>message_type</entry>
      <entry>XInternAtom(display, "_XIM_PROTOCOL", False)</entry>
    </row>
    <row rowsep="0">
      <entry>int</entry>
      <entry>format</entry>
      <entry>32  </entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[0]</entry>
      <entry>length of read/write property ATOM  </entry>
    </row>
    <row rowsep="0">
      <entry>long</entry>
      <entry>data.l[1]</entry>
      <entry>read/write property ATOM  </entry>
    </row>
  </tbody>
  </tgroup>
</table>

<para>
Closing Connection
</para>

<para>
If the client disconnect with the IM Server, shutdown function should
free the communication window properties and etc..
</para>
</appendix>
</article>