File: anthy-utf8.scm

package info (click to toggle)
uim 1%3A1.5.3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 24,036 kB
  • ctags: 15,554
  • sloc: lisp: 195,815; ansic: 69,547; cpp: 21,157; sh: 11,636; makefile: 1,855; asm: 333; ruby: 288
file content (1816 lines) | stat: -rw-r--r-- 62,607 bytes parent folder | download
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
;;; anthy.scm: Anthy (UTF-8) for uim.
;;; charset: UTF-8
;;;
;;; Copyright (c) 2003-2008 uim Project http://code.google.com/p/uim/
;;;
;;; All rights reserved.
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;; 1. Redistributions of source code must retain the above copyright
;;;    notice, this list of conditions and the following disclaimer.
;;; 2. Redistributions in binary form must reproduce the above copyright
;;;    notice, this list of conditions and the following disclaimer in the
;;;    documentation and/or other materials provided with the distribution.
;;; 3. Neither the name of authors nor the names of its contributors
;;;    may be used to endorse or promote products derived from this software
;;;    without specific prior written permission.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
;;; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
;;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
;;; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
;;; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
;;; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
;;; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
;;; SUCH DAMAGE.
;;;;

(require-extension (srfi 1 8))

(require "util.scm")
(require "ustr.scm")
(require "japanese.scm")
(require "japanese-kana.scm")
(require "japanese-azik.scm")
(require-custom "generic-key-custom.scm")
(require-custom "anthy-utf8-custom.scm")
(require-custom "anthy-key-custom.scm")


;;; implementations

(define anthy-utf8-lib-initialized? #f)
(define anthy-version #f)

(define anthy-type-direct          ja-type-direct)
(define anthy-type-hiragana        ja-type-hiragana)
(define anthy-type-katakana        ja-type-katakana)
(define anthy-type-halfkana        ja-type-halfkana)
(define anthy-type-halfwidth-alnum ja-type-halfwidth-alnum)
(define anthy-type-fullwidth-alnum ja-type-fullwidth-alnum)

(define anthy-input-rule-roma 0)
(define anthy-input-rule-kana 1)
(define anthy-input-rule-azik 2)

(define anthy-candidate-type-katakana -2)
(define anthy-candidate-type-hiragana -3)
(define anthy-candidate-type-halfkana -4)
;; below are not defined in Anthy
(define anthy-candidate-type-halfwidth-alnum -5)
(define anthy-candidate-type-fullwidth-alnum -6)
(define anthy-candidate-type-upper-halfwidth-alnum -7)
(define anthy-candidate-type-upper-fullwidth-alnum -8)

(define anthy-compiled-encoding 0)
(define anthy-euc-jp-encoding 1)
(define anthy-utf8-encoding 2)

;; I don't think the key needs to be customizable.
(define-key anthy-space-key? '(" "))

;; Handle Anthy's version scheme like 7100b, 8158memm.
(define anthy-utf8-version->major.minor
  (lambda (vstr)
    (if (string=? vstr "(unknown)")
	'("-1" . "")
	(receive (maj min) (span char-numeric? (string->list vstr))
	  (cons (list->string maj)
		(list->string min))))))

(define anthy-utf8-prepare-input-rule-activation
  (lambda (ac)
    (cond
     ((anthy-utf8-context-converting ac)
      (anthy-utf8-do-commit ac))
     ((anthy-utf8-context-transposing ac)
      (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-transposing-text ac))))
     ((and
       (anthy-utf8-context-on ac)
       (anthy-utf8-has-preedit? ac))
      (im-commit
       ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t (anthy-utf8-context-kana-mode ac))))))
    (anthy-utf8-flush ac)
    (anthy-utf8-update-preedit ac)))

(define anthy-utf8-prepare-input-mode-activation
  (lambda (ac new-mode)
    (let ((old-kana (anthy-utf8-context-kana-mode ac)))
      (cond
       ((anthy-utf8-context-converting ac)
	(anthy-utf8-do-commit ac))
       ((anthy-utf8-context-transposing ac)
	(im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-transposing-text ac)))
	(anthy-utf8-flush ac))
       ((and
	 (anthy-utf8-context-on ac)
	 (anthy-utf8-has-preedit? ac)
	 (not (= old-kana new-mode)))
	(im-commit
	 ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t (anthy-utf8-context-kana-mode ac))))
	(anthy-utf8-flush ac)))
      (anthy-utf8-update-preedit ac))))

(register-action 'action_anthy_utf8_hiragana
;;		 (indication-alist-indicator 'action_anthy_utf8_hiragana
;;					     anthy-utf8-input-mode-indication-alist)
		 (lambda (ac) ;; indication handler
		   '(ja_hiragana
		     "あ"
		     "ひらがな"
		     "ひらがな入力モード"))

		 (lambda (ac) ;; activity predicate
		   (and (anthy-utf8-context-on ac)
			(not (anthy-utf8-context-alnum ac))
			(= (anthy-utf8-context-kana-mode ac)
			   anthy-type-hiragana)))

		 (lambda (ac) ;; action handler
		   (anthy-utf8-prepare-input-mode-activation ac anthy-type-hiragana)
		   (anthy-utf8-context-set-on! ac #t)
		   (anthy-utf8-context-set-alnum! ac #f)
		   (anthy-utf8-context-change-kana-mode! ac anthy-type-hiragana)))

(register-action 'action_anthy_utf8_katakana
;;		 (indication-alist-indicator 'action_anthy_utf8_katakana
;;					     anthy-utf8-input-mode-indication-alist)
		 (lambda (ac)
		   '(ja_katakana
		     "ア"
		     "カタカナ"
		     "カタカナ入力モード"))
		 (lambda (ac)
		   (and (anthy-utf8-context-on ac)
			(not (anthy-utf8-context-alnum ac))
			(= (anthy-utf8-context-kana-mode ac)
			   anthy-type-katakana)))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-mode-activation ac anthy-type-katakana)
		   (anthy-utf8-context-set-on! ac #t)
		   (anthy-utf8-context-set-alnum! ac #f)
		   (anthy-utf8-context-change-kana-mode! ac anthy-type-katakana)))

(register-action 'action_anthy_utf8_halfkana
;;		 (indication-alist-indicator 'action_anthy_utf8_halfkana
;;					     anthy-utf8-input-mode-indication-alist)
		 (lambda (ac)
		   '(ja_halfkana
		     "ア"
		     "半角カタカナ"
		     "半角カタカナ入力モード"))
		 (lambda (ac)
		   (and (anthy-utf8-context-on ac)
			(not (anthy-utf8-context-alnum ac))
			(= (anthy-utf8-context-kana-mode ac)
			   anthy-type-halfkana)))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-mode-activation ac anthy-type-halfkana)
		   (anthy-utf8-context-set-on! ac #t)
		   (anthy-utf8-context-set-alnum! ac #f)
		   (anthy-utf8-context-change-kana-mode! ac anthy-type-halfkana)))

(register-action 'action_anthy_utf8_halfwidth_alnum
		 (lambda (ac)
		   '(ja_halfwidth_alnum
		     "a"
		     "半角英数"
		     "半角英数入力モード"))
		 (lambda (ac)
		   (and (anthy-utf8-context-on ac)
			(anthy-utf8-context-alnum ac)
			(= (anthy-utf8-context-alnum-type ac)
			   anthy-type-halfwidth-alnum)))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-mode-activation
		    ac (anthy-utf8-context-kana-mode ac))
		   (anthy-utf8-context-set-on! ac #t)
		   (anthy-utf8-context-set-alnum! ac #t)
		   (anthy-utf8-context-set-alnum-type!
		    ac anthy-type-halfwidth-alnum)))

(register-action 'action_anthy_utf8_direct
;;		 (indication-alist-indicator 'action_anthy_utf8_direct
;;					     anthy-utf8-input-mode-indication-alist)
		 (lambda (ac)
		   '(ja_direct
		     "-"
		     "直接入力"
		     "直接(無変換)入力モード"))
		 (lambda (ac)
		   (not (anthy-utf8-context-on ac)))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-mode-activation ac anthy-type-direct)
		   (anthy-utf8-context-set-on! ac #f)))

(register-action 'action_anthy_utf8_fullwidth_alnum
;;		 (indication-alist-indicator 'action_anthy_utf8_fullwidth_alnum
;;					     anthy-utf8-input-mode-indication-alist)
		 (lambda (ac)
		   '(ja_fullwidth_alnum
		     "A"
		     "全角英数"
		     "全角英数入力モード"))
		 (lambda (ac)
		   (and (anthy-utf8-context-on ac)
			(anthy-utf8-context-alnum ac)
			(= (anthy-utf8-context-alnum-type ac)
			   anthy-type-fullwidth-alnum)))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-mode-activation
		    ac (anthy-utf8-context-kana-mode ac))
		   (anthy-utf8-context-set-on! ac #t)
		   (anthy-utf8-context-set-alnum! ac #t)
		   (anthy-utf8-context-set-alnum-type!
		    ac anthy-type-fullwidth-alnum)))

(register-action 'action_anthy_utf8_roma
;;		 (indication-alist-indicator 'action_anthy_utf8_roma
;;					     anthy-utf8-kana-input-method-indication-alist)
		 (lambda (ac)
		   '(ja_romaji
		     "R"
		     "ローマ字"
		     "ローマ字入力モード"))
		 (lambda (ac)
		   (= (anthy-utf8-context-input-rule ac)
		      anthy-input-rule-roma))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-rule-activation ac)
		   (rk-context-set-rule! (anthy-utf8-context-rkc ac)
					 ja-rk-rule)
		   (japanese-roma-set-yen-representation)
		   (anthy-utf8-context-set-input-rule! ac anthy-input-rule-roma)))

(register-action 'action_anthy_utf8_kana
;;		 (indication-alist-indicator 'action_anthy_utf8_kana
;;					     anthy-utf8-kana-input-method-indication-alist)
		 (lambda (ac)
		   '(ja_kana
		     "か"
		     "かな"
		     "かな入力モード"))
		 (lambda (ac)
		   (= (anthy-utf8-context-input-rule ac)
		      anthy-input-rule-kana))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-rule-activation ac)
		   (anthy-utf8-context-set-input-rule! ac anthy-input-rule-kana)
		   (anthy-utf8-context-change-kana-mode! ac (anthy-utf8-context-kana-mode ac))
		   (anthy-utf8-context-set-alnum! ac #f)
		   (japanese-roma-set-yen-representation)
		   ;;(define-key anthy-kana-toggle-key? "")
		   ;;(define-key anthy-on-key? generic-on-key?)
		   ;;(define-key anthy-fullwidth-alnum-key? "")
		   ))

(register-action 'action_anthy_utf8_azik
;;		 (indication-alist-indicator 'action_anthy_utf8_azik
;;					     anthy-utf8-kana-input-method-indication-alist)
		 (lambda (ac)
		   '(ja_azik
		     "Z"
		     "AZIK"
		     "AZIK拡張ローマ字入力モード"))
		 (lambda (ac)
		   (= (anthy-utf8-context-input-rule ac)
		      anthy-input-rule-azik))
		 (lambda (ac)
		   (anthy-utf8-prepare-input-rule-activation ac)
		   (rk-context-set-rule! (anthy-utf8-context-rkc ac)
					 ja-azik-rule)
		   (japanese-roma-set-yen-representation)
		   (anthy-utf8-context-set-input-rule! ac anthy-input-rule-azik)))

;; Update widget definitions based on action configurations. The
;; procedure is needed for on-the-fly reconfiguration involving the
;; custom API
(define anthy-utf8-configure-widgets
  (lambda ()
    (register-widget 'widget_anthy_utf8_input_mode
		     (activity-indicator-new anthy-utf8-input-mode-actions)
		     (actions-new anthy-utf8-input-mode-actions))

    (register-widget 'widget_anthy_utf8_kana_input_method
		     (activity-indicator-new anthy-utf8-kana-input-method-actions)
		     (actions-new anthy-utf8-kana-input-method-actions))
    (context-list-replace-widgets! 'anthy-utf8 anthy-utf8-widgets)))

(define anthy-utf8-context-rec-spec
  (append
   context-rec-spec
   (list
    (list 'on                 #f)
    (list 'converting         #f)
    (list 'transposing        #f)
    (list 'predicting         #f)
    (list 'ac-id              #f) ;; anthy-utf8-context-id
    (list 'preconv-ustr       #f) ;; preedit strings
    (list 'rkc                #f)
    (list 'segments           #f) ;; ustr of candidate indices
    (list 'candidate-window   #f)
    (list 'candidate-op-count 0)
    (list 'transposing-type   0)
    (list 'prediction-window  #f)
    (list 'prediction-index   #f)
    (list 'kana-mode          anthy-type-hiragana)
    (list 'alnum              #f)
    (list 'alnum-type         anthy-type-halfwidth-alnum)
    (list 'commit-raw         #t)
    (list 'input-rule         anthy-input-rule-roma)
    (list 'raw-ustr           #f))))
(define-record 'anthy-utf8-context anthy-utf8-context-rec-spec)
(define anthy-utf8-context-new-internal anthy-utf8-context-new)

(define anthy-utf8-context-new
 (lambda (id im)
   (let ((ac (anthy-utf8-context-new-internal id im))
	 (rkc (rk-context-new ja-rk-rule #t #f)))
     (if (symbol-bound? 'anthy-utf8-lib-init)
         (begin
	   (set! anthy-utf8-lib-initialized? (anthy-utf8-lib-init))
	   (set! anthy-version (anthy-utf8-version->major.minor
				(anthy-utf8-lib-get-anthy-version)))))
     (if anthy-utf8-lib-initialized?
	 (anthy-utf8-context-set-ac-id!
	  ac (anthy-utf8-lib-alloc-context anthy-utf8-encoding)))
     (anthy-utf8-context-set-widgets! ac anthy-utf8-widgets)
     (anthy-utf8-context-set-rkc! ac rkc)
     (anthy-utf8-context-set-preconv-ustr! ac (ustr-new '()))
     (anthy-utf8-context-set-raw-ustr! ac (ustr-new '()))
     (anthy-utf8-context-set-segments! ac (ustr-new '()))

     ;; 2004-08-26 Takuro Ashie <ashie@homa.ne.jp>
     ;;   * I think load-kana-table should be marked as depracated.
     ;;     Because it is a little violent (it overwrites ja-rk-rule table).
     ;;     We should prepare a custom entry like "uim-default-input-rule"
     ;;     instead of using-kana-table.
     (if using-kana-table?
	 (anthy-utf8-context-set-input-rule! ac anthy-input-rule-kana)
	 (anthy-utf8-context-set-input-rule! ac anthy-input-rule-roma))
     ac)))

(define anthy-utf8-commit-raw
  (lambda (ac)
    (im-commit-raw ac)
    (anthy-utf8-context-set-commit-raw! ac #t)))

(define anthy-utf8-context-kana-toggle
  (lambda (ac)
    (let* ((kana (anthy-utf8-context-kana-mode ac))
	   (opposite-kana (ja-opposite-kana kana)))
      (anthy-utf8-context-change-kana-mode! ac opposite-kana))))

(define anthy-utf8-context-alkana-toggle
  (lambda (ac)
    (let ((alnum-state (anthy-utf8-context-alnum ac)))
      (anthy-utf8-context-set-alnum! ac (not alnum-state)))))

(define anthy-utf8-context-change-kana-mode!
  (lambda (ac kana-mode)
    (if (= (anthy-utf8-context-input-rule ac)
           anthy-input-rule-kana)
        (rk-context-set-rule!
	 (anthy-utf8-context-rkc ac)
	 (cond
	  ((= kana-mode anthy-type-hiragana) ja-kana-hiragana-rule)
	  ((= kana-mode anthy-type-katakana) ja-kana-katakana-rule)
	  ((= kana-mode anthy-type-halfkana)  ja-kana-halfkana-rule))))
    (anthy-utf8-context-set-kana-mode! ac kana-mode)))

;; TODO: generarize as multi-segment procedure
;; side effect: none. rkc will not be altered
(define anthy-utf8-make-whole-string
  (lambda (ac convert-pending-into-kana? kana)
    (let* ((rkc (anthy-utf8-context-rkc ac))
	   (pending (rk-pending rkc))
	   (residual-kana (rk-peek-terminal-match rkc))
	   (rule (anthy-utf8-context-input-rule ac))
	   (preconv-str (anthy-utf8-context-preconv-ustr ac))
	   (extract-kana
	    (if (= rule anthy-input-rule-kana)
		(lambda (entry) (car entry))
		(lambda (entry) (list-ref entry kana)))))

      (if (= rule anthy-input-rule-kana)
	  (ja-make-kana-str
	   (ja-make-kana-str-list
	    (string-to-list
	     (string-append
	      (string-append-map-ustr-former extract-kana preconv-str)
	      (if convert-pending-into-kana?
		  (if residual-kana
		      (extract-kana residual-kana)
		      pending)
		  pending)
	      (string-append-map-ustr-latter extract-kana preconv-str))))
	   kana)
	  (string-append
	   (string-append-map-ustr-former extract-kana preconv-str)
	   (if convert-pending-into-kana?
	       (if residual-kana
		   (extract-kana residual-kana)
		   "")
	       pending)
	   (string-append-map-ustr-latter extract-kana preconv-str))))))

(define anthy-make-raw-string
  (lambda (raw-str-list wide? upper?)
    (if (not (null? raw-str-list))
	(if wide?
	    (string-append
	     (ja-string-list-to-wide-alphabet
	      (if upper?
		  (map
		   (lambda (x)
		     (if (ichar-alphabetic? (string->charcode x))
			 (charcode->string (ichar-upcase (string->charcode x)))
			 x))
		   (string-to-list (car raw-str-list)))
		  (string-to-list (car raw-str-list))))
	     (anthy-make-raw-string (cdr raw-str-list) wide? upper?))
	    (string-append
	     (if upper?
		 (string-list-concat
		  (map
		   (lambda (x)
		     (if (ichar-alphabetic? (string->charcode x))
			 (charcode->string (ichar-upcase (string->charcode x)))
			 x))
		   (string-to-list (car raw-str-list))))
		 (car raw-str-list))
	     (anthy-make-raw-string (cdr raw-str-list) wide? upper?)))
	"")))

(define anthy-utf8-make-whole-raw-string
  (lambda (ac wide? upper?)
    (anthy-make-raw-string (anthy-utf8-get-raw-str-seq ac) wide? upper?)))

(define anthy-utf8-init-handler
  (lambda (id im arg)
    (anthy-utf8-context-new id im)))

(define anthy-utf8-release-handler
  (lambda (ac)
    (let ((ac-id (anthy-utf8-context-ac-id ac)))
      (if ac-id
	  (anthy-utf8-lib-free-context ac-id)))))

(define anthy-utf8-flush
  (lambda (ac)
    (rk-flush (anthy-utf8-context-rkc ac))
    (ustr-clear! (anthy-utf8-context-preconv-ustr ac))
    (ustr-clear! (anthy-utf8-context-raw-ustr ac))
    (ustr-clear! (anthy-utf8-context-segments ac))
    (anthy-utf8-context-set-transposing! ac #f)
    (anthy-utf8-context-set-converting! ac #f)
    (anthy-utf8-context-set-predicting! ac #f)
    (if (or
         (anthy-utf8-context-candidate-window ac)
         (anthy-utf8-context-prediction-window ac))
	(im-deactivate-candidate-selector ac))
    (anthy-utf8-context-set-candidate-window! ac #f)
    (anthy-utf8-context-set-prediction-window! ac #f)
    (anthy-utf8-context-set-candidate-op-count! ac 0)))

(define anthy-utf8-begin-input
  (lambda (ac key key-state)
    (if (cond
	 ((anthy-on-key? key key-state)
	  #t)
	 ((and
	   anthy-use-mode-transition-keys-in-off-mode?
	   (cond
	    ((anthy-hiragana-key? key key-state)
	     (anthy-utf8-context-set-kana-mode! ac anthy-type-hiragana)
	     (anthy-utf8-context-set-alnum! ac #f)
	     #t)
	    ((anthy-katakana-key? key key-state)
	     (anthy-utf8-context-set-kana-mode! ac anthy-type-katakana)
	     (anthy-utf8-context-set-alnum! ac #f)
	     #t)
	    ((anthy-halfkana-key? key key-state)
	     (anthy-utf8-context-set-kana-mode! ac anthy-type-halfkana)
	     (anthy-utf8-context-set-alnum! ac #f)
	     #t)
	    ((anthy-halfwidth-alnum-key? key key-state)
	     (anthy-utf8-context-set-alnum-type! ac anthy-type-halfwidth-alnum)
	     (anthy-utf8-context-set-alnum! ac #t)
	     #t)
	    ((anthy-fullwidth-alnum-key? key key-state)
	     (anthy-utf8-context-set-alnum-type! ac anthy-type-fullwidth-alnum)
	     (anthy-utf8-context-set-alnum! ac #t)
	     #t)
	    ((anthy-kana-toggle-key? key key-state)
	     (anthy-utf8-context-kana-toggle ac)
	     (anthy-utf8-context-set-alnum! ac #f)
	     #t)
	    ((anthy-alkana-toggle-key? key key-state)
	     (anthy-utf8-context-alkana-toggle ac)
	     #t)
	    (else
	     #f))))
	 (else
	  #f))
	(begin
	  (anthy-utf8-context-set-on! ac #t)
	  (rk-flush (anthy-utf8-context-rkc ac))
	  (anthy-utf8-context-set-converting! ac #f)
	  #t)
	#f)))

(define anthy-utf8-update-preedit
  (lambda (ac)
    (if (not (anthy-utf8-context-commit-raw ac))
	(let ((segments (if (anthy-utf8-context-on ac)
			    (if (anthy-utf8-context-transposing ac)
				(anthy-utf8-context-transposing-state-preedit ac)
				(if (anthy-utf8-context-converting ac)
				    (anthy-utf8-converting-state-preedit ac)
				    (if (anthy-utf8-context-predicting ac)
				        (anthy-utf8-predicting-state-preedit ac)
				        (anthy-utf8-input-state-preedit ac))))
			    ())))
	  (context-update-preedit ac segments))
	(anthy-utf8-context-set-commit-raw! ac #f))))
  
(define anthy-utf8-proc-raw-state
  (lambda (ac key key-state)
    (if (not (anthy-utf8-begin-input ac key key-state))
	(anthy-utf8-commit-raw ac))))

(define anthy-utf8-begin-conv
  (lambda (ac)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (kana (anthy-utf8-context-kana-mode ac))
	   (preconv-str (anthy-utf8-make-whole-string ac #t anthy-type-hiragana)))
      (if (and ac-id
	       (> (string-length preconv-str)
		  0))
	  (begin
	    (anthy-utf8-lib-set-string ac-id (anthy-utf8-lib-eucjp-to-utf8 preconv-str))
	    (let ((nr-segments (anthy-utf8-lib-get-nr-segments ac-id)))
	      (ustr-set-latter-seq! (anthy-utf8-context-segments ac)
				    (make-list nr-segments 0))
	      (anthy-utf8-context-set-converting! ac #t)
	      ;; Don't perform rk-flush here. The rkc must be restored when
	      ;; anthy-utf8-cancel-conv invoked -- YamaKen 2004-10-25
	      ))))))

(define anthy-utf8-cancel-conv
  (lambda (ac)
    (anthy-utf8-reset-candidate-window ac)
    (anthy-utf8-context-set-converting! ac #f)
    (ustr-clear! (anthy-utf8-context-segments ac))))

(define kana-keys?
  (lambda (key)
    (if (not (symbol? key))
	#f
	(cond
	 ((eq? 'kana-lock key)
	  #f)
	 ((eq? 'kana-shift key)
	  #f)
	 (else
	   (let ((name (symbol->string key)))
	     (if (> (string-length name) 5)
		 (let ((keysym-head
			(string-list-concat
		       (list-head (reverse (string-to-list name)) 5))))
		   (if (string=? keysym-head "-anak") ;; reverse
		       #t
		       #f))
		 #f)))))))

(define anthy-non-composing-symbol?
  (lambda (ac key)
    (if (and
	 (symbol? key)
	 (not (kana-keys? key))
	 (not (eq? key 'yen)))
	#t
	#f)))

(define anthy-utf8-proc-input-state-no-preedit
  (lambda (ac key key-state)
    (let ((rkc (anthy-utf8-context-rkc ac))
	  (direct (ja-direct (charcode->string key)))
	  (rule (anthy-utf8-context-input-rule ac)))
      (cond
       ((and anthy-use-with-vi?
             (anthy-vi-escape-key? key key-state))
	(anthy-utf8-flush ac)
	(anthy-utf8-context-set-on! ac #f)
	(anthy-utf8-commit-raw ac))

       ((anthy-off-key? key key-state)
	(anthy-utf8-flush ac)
	(anthy-utf8-context-set-on! ac #f))

       ((anthy-backspace-key? key key-state)
	(anthy-utf8-commit-raw ac))

       ((anthy-delete-key? key key-state)
	(anthy-utf8-commit-raw ac))
       
       ((and
         (anthy-hiragana-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-kana-mode ac) anthy-type-hiragana)
	   (not (anthy-utf8-context-alnum ac)))))
	(anthy-utf8-context-change-kana-mode! ac anthy-type-hiragana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((and
         (anthy-katakana-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-kana-mode ac) anthy-type-katakana)
	   (not (anthy-utf8-context-alnum ac)))))
	(anthy-utf8-context-change-kana-mode! ac anthy-type-katakana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((and
         (anthy-halfkana-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-kana-mode ac) anthy-type-halfkana)
	   (not (anthy-utf8-context-alnum ac)))))
	(anthy-utf8-context-change-kana-mode! ac anthy-type-halfkana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((and
         (anthy-halfwidth-alnum-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-alnum-type ac) anthy-type-halfwidth-alnum)
	   (anthy-utf8-context-alnum ac))))
	(anthy-utf8-context-set-alnum-type! ac anthy-type-halfwidth-alnum)
	(anthy-utf8-context-set-alnum! ac #t))

       ((and
         (anthy-fullwidth-alnum-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-alnum-type ac) anthy-type-fullwidth-alnum)
	   (anthy-utf8-context-alnum ac))))
	(anthy-utf8-context-set-alnum-type! ac anthy-type-fullwidth-alnum)
	(anthy-utf8-context-set-alnum! ac #t))

       ((and
	 (not (anthy-utf8-context-alnum ac))
	 (anthy-kana-toggle-key? key key-state))
	(anthy-utf8-context-kana-toggle ac))

       ((anthy-alkana-toggle-key? key key-state)
	(anthy-utf8-context-alkana-toggle ac))

       ;; modifiers (except shift) => ignore
       ((and (modifier-key-mask key-state)
	     (not (shift-key-mask key-state)))
	(anthy-utf8-commit-raw ac))
       
       ;; direct key => commit
       (direct
	(im-commit ac (anthy-utf8-lib-eucjp-to-utf8 direct)))

       ;; space key => commit
       ((anthy-space-key? key key-state)
	(if (anthy-utf8-context-alnum ac)
	    (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (list-ref
			   ja-alnum-space
			   (- (anthy-utf8-context-alnum-type ac)
			      anthy-type-halfwidth-alnum))))
	    (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (list-ref ja-space (anthy-utf8-context-kana-mode ac))))))

       ((anthy-non-composing-symbol? ac key)
	(anthy-utf8-commit-raw ac))

       (else
	(if (anthy-utf8-context-alnum ac)
	    (let ((key-str (if (symbol? key)
			       (if (symbol-bound? key)
				   (symbol-value key)
				   "?") ;; shouldn't happen
			       (charcode->string key))))
	      (ustr-insert-elem! (anthy-utf8-context-preconv-ustr ac)
				 (if (= (anthy-utf8-context-alnum-type ac)
					anthy-type-halfwidth-alnum)
				     (list key-str key-str key-str)
				     (list (ja-wide key-str) (ja-wide key-str)
					   (ja-wide key-str))))
	      (ustr-insert-elem! (anthy-utf8-context-raw-ustr ac) key-str))
	    (let* ((key-str (if (= rule anthy-input-rule-kana)
	    			(if (symbol? key)
				    (symbol->string key)
				    (charcode->string key))
				(if (symbol? key)
				    (symbol->string key)
				    (charcode->string (ichar-downcase key)))))
		   (res (rk-push-key! rkc key-str)))
	      (if res
		  (begin
		    (ustr-insert-elem! (anthy-utf8-context-preconv-ustr ac) res)
		    (ustr-insert-elem! (anthy-utf8-context-raw-ustr ac)
				       (if (and (intern-key-symbol key-str)
						(symbol-bound?
						 (string->symbol key-str)))
					   (symbol-value
					    (string->symbol key-str))
					   key-str)))
		  (if (null? (rk-context-seq rkc))
		      (anthy-utf8-commit-raw ac))))))))))

(define anthy-utf8-has-preedit?
  (lambda (ac)
    (or (not (ustr-empty? (anthy-utf8-context-preconv-ustr ac)))
	(> (string-length (rk-pending (anthy-utf8-context-rkc ac))) 0))))

(define anthy-rotate-transposing-alnum-type
  (lambda (cur-type state)
    (cond
     ((and
       (= cur-type anthy-type-halfwidth-alnum)
       (= state anthy-type-halfwidth-alnum))
      anthy-candidate-type-upper-halfwidth-alnum)
     ((and
       (= cur-type anthy-type-fullwidth-alnum)
       (= state anthy-type-fullwidth-alnum))
      anthy-candidate-type-upper-fullwidth-alnum)
     (else
      state))))

(define anthy-utf8-proc-transposing-state
  (lambda (ac key key-state)
    (let ((rotate-list '())
	  (state #f))
      (if (anthy-transpose-as-fullwidth-alnum-key? key key-state)
	  (set! rotate-list (cons anthy-type-fullwidth-alnum rotate-list)))
      (if (anthy-transpose-as-halfwidth-alnum-key? key key-state)
	  (set! rotate-list (cons anthy-type-halfwidth-alnum rotate-list)))
      (if (anthy-transpose-as-halfkana-key? key key-state)
	  (set! rotate-list (cons anthy-type-halfkana rotate-list)))
      (if (anthy-transpose-as-katakana-key? key key-state)
	  (set! rotate-list (cons anthy-type-katakana rotate-list)))
      (if (anthy-transpose-as-hiragana-key? key key-state)
	  (set! rotate-list (cons anthy-type-hiragana rotate-list)))

      (if (anthy-utf8-context-transposing ac)
	  (let ((lst (member (anthy-utf8-context-transposing-type ac) rotate-list)))
	    (if (and lst
		     (not (null? (cdr lst))))
		(set! state (car (cdr lst)))
		(if (not (null? rotate-list))
		    (set! state (anthy-rotate-transposing-alnum-type
				 (anthy-utf8-context-transposing-type ac)
				 (car rotate-list))))))
	  (begin
	    (anthy-utf8-context-set-transposing! ac #t)
	    (set! state (car rotate-list))))

      (cond
       ((and state
	     (or
	      (= state anthy-type-hiragana)
	      (= state anthy-type-katakana)
	      (= state anthy-type-halfkana)))
	(anthy-utf8-context-set-transposing-type! ac state))
       ((and state
	     (or
	      (= state anthy-type-halfwidth-alnum)
	      (= state anthy-candidate-type-upper-halfwidth-alnum)
	      (= state anthy-type-fullwidth-alnum)
	      (= state anthy-candidate-type-upper-fullwidth-alnum)))
	(if (not (= (anthy-utf8-context-input-rule ac) anthy-input-rule-kana))
	    (anthy-utf8-context-set-transposing-type! ac state)))
       (else
	(and
	 ; commit
	 (if (anthy-commit-key? key key-state)
	     (begin
	       (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-transposing-text ac)))
	       (anthy-utf8-flush ac)
	       #f)
	     #t)
	 ; begin-conv
	 (if (anthy-begin-conv-key? key key-state)
	     (begin
	       (anthy-utf8-context-set-transposing! ac #f)
	       (anthy-utf8-begin-conv ac)
	       #f)
	     #t)
	 ; cancel
	 (if (or
	      (anthy-cancel-key? key key-state)
	      (anthy-backspace-key? key key-state))
	     (begin
	       (anthy-utf8-context-set-transposing! ac #f)
	       #f)
	     #t)
	 ; ignore
	 (if (or
	      (anthy-prev-page-key? key key-state)
	      (anthy-next-page-key? key key-state)
	      (anthy-extend-segment-key? key key-state)
	      (anthy-shrink-segment-key? key key-state)
	      (anthy-next-segment-key? key key-state)
	      (anthy-prev-segment-key? key key-state)
	      (anthy-beginning-of-preedit-key? key key-state)
	      (anthy-end-of-preedit-key? key key-state)
	      (anthy-next-candidate-key? key key-state)
	      (anthy-prev-candidate-key? key key-state)
	      (and (modifier-key-mask key-state)
		   (not (shift-key-mask key-state)))
	      (anthy-non-composing-symbol? ac key))
	     #f
	     #t)
	 ; implicit commit
	 (begin
	   (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-transposing-text ac)))
	   (anthy-utf8-flush ac)
	   (anthy-utf8-proc-input-state ac key key-state))))))))

(define anthy-utf8-move-prediction
  (lambda (ac offset)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (nr (anthy-utf8-lib-get-nr-predictions ac-id))
	   (idx (anthy-utf8-context-prediction-index ac))
	   (n (if (not idx)
		  0 
		  (+ idx offset)))
	   (compensated-n (cond
			   ((>= n nr)
			    0)
			   ((< n 0)
			    (- nr 1))
			   (else
			    n))))
      (im-select-candidate ac compensated-n)
      (anthy-utf8-context-set-prediction-index! ac compensated-n))))

(define anthy-utf8-move-prediction-in-page
  (lambda (ac numeralc)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (nr (anthy-utf8-lib-get-nr-predictions ac-id))
	   (p-idx (anthy-utf8-context-prediction-index ac))
	   (n (if (not p-idx)
		  0
		  p-idx))
	   (cur-page (if (= anthy-nr-candidate-max 0)
			 0
			 (quotient n anthy-nr-candidate-max)))
	   (pageidx (- (numeric-ichar->integer numeralc) 1))
	   (compensated-pageidx (cond
				 ((< pageidx 0) ; pressing key_0
				  (+ pageidx 10))
				 (else
				  pageidx)))
	   (idx (+ (* cur-page anthy-nr-candidate-max) compensated-pageidx))
	   (compensated-idx (cond
			     ((>= idx nr)
			      #f)
			     (else
			      idx)))
	   (selected-pageidx (if (not p-idx)
				 #f
				 (if (= anthy-nr-candidate-max 0)
				     p-idx
				     (remainder p-idx
						anthy-nr-candidate-max)))))
      (if (and
	   compensated-idx
	   (not (eqv? compensated-pageidx selected-pageidx)))
	  (begin
	    (anthy-utf8-context-set-prediction-index! ac compensated-idx)
	    (im-select-candidate ac compensated-idx)
	    #t)
	  #f))))
    
(define anthy-utf8-prediction-select-non-existing-index?
  (lambda (ac numeralc)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (nr (anthy-utf8-lib-get-nr-predictions ac-id))
	   (p-idx (anthy-utf8-context-prediction-index ac))
	   (cur-page (if (= anthy-nr-candidate-max 0)
			 0
			 (quotient p-idx anthy-nr-candidate-max)))
	   (pageidx (- (numeric-ichar->integer numeralc) 1))
	   (compensated-pageidx (cond
				 ((< pageidx 0) ; pressing key_0
				  (+ pageidx 10))
				 (else
				  pageidx)))
	   (idx (+ (* cur-page anthy-nr-candidate-max) compensated-pageidx)))
    (if (>= idx nr)
	#t
	#f))))

(define anthy-utf8-prediction-keys-handled?
  (lambda (ac key key-state)
    (cond
     ((anthy-next-prediction-key? key key-state)
      (anthy-utf8-move-prediction ac 1)
      #t)
     ((anthy-prev-prediction-key? key key-state)
      (anthy-utf8-move-prediction ac -1)
      #t)
     ((and
       anthy-select-prediction-by-numeral-key?
       (ichar-numeric? key))
      (anthy-utf8-move-prediction-in-page ac key))
     ((and
       (anthy-utf8-context-prediction-index ac)
       (anthy-prev-page-key? key key-state))
      (im-shift-page-candidate ac #f)
      #t)
     ((and
       (anthy-utf8-context-prediction-index ac)
       (anthy-next-page-key? key key-state))
      (im-shift-page-candidate ac #t)
      #t)
     (else
      #f))))

(define anthy-utf8-proc-prediction-state
  (lambda (ac key key-state)
    (cond
     ;; prediction index change
     ((anthy-utf8-prediction-keys-handled? ac key key-state))

     ;; cancel
     ((anthy-cancel-key? key key-state)
      (if (anthy-utf8-context-prediction-index ac)
	  (anthy-utf8-reset-prediction-window ac)
	  (begin
	    (anthy-utf8-reset-prediction-window ac)
	    (anthy-utf8-proc-input-state ac key key-state))))

     ;; commit
     ((and
       (anthy-utf8-context-prediction-index ac)
       (anthy-commit-key? key key-state))
      (anthy-utf8-do-commit-prediction ac))
     (else
      (if (and
	   anthy-use-implicit-commit-prediction?
	   (anthy-utf8-context-prediction-index ac))
	  (cond
	    ((or
	      ;; check keys used in anthy-utf8-proc-input-state-with-preedit
	      (anthy-begin-conv-key? key key-state)
	      (anthy-backspace-key? key key-state)
	      (anthy-delete-key? key key-state)
	      (anthy-kill-key? key key-state)
	      (anthy-kill-backward-key? key key-state)
	      (and
	       (not (anthy-utf8-context-alnum ac))
	       (anthy-commit-as-opposite-kana-key? key key-state))
	      (anthy-transpose-as-hiragana-key? key key-state)
	      (anthy-transpose-as-katakana-key? key key-state)
	      (anthy-transpose-as-halfkana-key? key key-state)
	      (and
	       (not (= (anthy-utf8-context-input-rule ac) anthy-input-rule-kana))
	       (or
		(anthy-transpose-as-halfwidth-alnum-key? key key-state)
		(anthy-transpose-as-fullwidth-alnum-key? key key-state)))
	      (anthy-hiragana-key? key key-state)
	      (anthy-katakana-key? key key-state)
	      (anthy-halfkana-key? key key-state)
	      (anthy-halfwidth-alnum-key? key key-state)
	      (anthy-fullwidth-alnum-key? key key-state)
	      (and
	       (not (anthy-utf8-context-alnum ac))
	       (anthy-kana-toggle-key? key key-state))
	      (anthy-alkana-toggle-key? key key-state)
	      (anthy-go-left-key? key key-state)
	      (anthy-go-right-key? key key-state)
	      (anthy-beginning-of-preedit-key? key key-state)
	      (anthy-end-of-preedit-key? key key-state)
	      (and
	       (modifier-key-mask key-state)
	       (not (shift-key-mask key-state))))
	     ;; go back to unselected prediction
	     (anthy-utf8-reset-prediction-window ac)
	     (anthy-utf8-check-prediction ac))
	    ((and
	      (ichar-numeric? key)
	      anthy-select-prediction-by-numeral-key?
	      (not (anthy-utf8-prediction-select-non-existing-index? ac key)))
	     (anthy-utf8-context-set-predicting! ac #f)
	     (anthy-utf8-context-set-prediction-index! ac #f)
	     (anthy-utf8-proc-input-state ac key key-state))
	    (else
	     ;; implicit commit
	     (anthy-utf8-do-commit-prediction ac)
	     (anthy-utf8-proc-input-state ac key key-state)))
	  (begin
	    (anthy-utf8-context-set-predicting! ac #f)
	    (anthy-utf8-context-set-prediction-index! ac #f)
	    (anthy-utf8-proc-input-state ac key key-state)))))))

(define anthy-utf8-proc-input-state-with-preedit
  (lambda (ac key key-state)
    (let ((preconv-str (anthy-utf8-context-preconv-ustr ac))
	  (raw-str (anthy-utf8-context-raw-ustr ac))
	  (rkc (anthy-utf8-context-rkc ac))
	  (kana (anthy-utf8-context-kana-mode ac))
	  (rule (anthy-utf8-context-input-rule ac)))
      (cond

       ;; begin conversion
       ((anthy-begin-conv-key? key key-state)
	(anthy-utf8-reset-prediction-window ac)
	(anthy-utf8-begin-conv ac))
       
       ;; backspace
       ((anthy-backspace-key? key key-state)
	(if (not (rk-backspace rkc))
            (begin
	      (ustr-cursor-delete-backside! preconv-str)
	      (ustr-cursor-delete-backside! raw-str)
	      ;; fix to valid roma
	      (if (and
		   (= (anthy-utf8-context-input-rule ac) anthy-input-rule-roma)
		   (not (null? (ustr-former-seq preconv-str)))
		   (not (ichar-printable?	;; check for kana
			 (string->ichar
			  (car (last (ustr-former-seq preconv-str)))))))
		  (ja-fix-deleted-raw-str-to-valid-roma! raw-str)))))

       ;; delete
       ((anthy-delete-key? key key-state)
	(if (not (rk-delete rkc))
            (begin
	      (ustr-cursor-delete-frontside! preconv-str)
	      (ustr-cursor-delete-frontside! raw-str))))

       ;; kill
       ((anthy-kill-key? key key-state)
	(ustr-clear-latter! preconv-str)
	(ustr-clear-latter! raw-str))
       
       ;; kill-backward
       ((anthy-kill-backward-key? key key-state)
	(rk-flush rkc)
	(ustr-clear-former! preconv-str)
	(ustr-clear-former! raw-str))

       ;; 現在とは逆のかなモードでかなを確定する
       ((and
         (not (anthy-utf8-context-alnum ac))
         (anthy-commit-as-opposite-kana-key? key key-state))
	(begin
	  (im-commit
	   ac
	   (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t (ja-opposite-kana kana))))
	  (anthy-utf8-flush ac)))

       ;; Transposing状態へ移行
       ((or (anthy-transpose-as-hiragana-key? key key-state)
	    (anthy-transpose-as-katakana-key? key key-state)
	    (anthy-transpose-as-halfkana-key? key key-state)
	    (and
	     (not (= (anthy-utf8-context-input-rule ac) anthy-input-rule-kana ))
	     (or
	      (anthy-transpose-as-halfwidth-alnum-key? key key-state)
	      (anthy-transpose-as-fullwidth-alnum-key? key key-state))))
	(anthy-utf8-reset-prediction-window ac)
	(anthy-utf8-proc-transposing-state ac key key-state))

       ((anthy-hiragana-key? key key-state)
        (if (not (= kana anthy-type-hiragana))
	  (begin
	    (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t kana)))
	    (anthy-utf8-flush ac)))
	(anthy-utf8-context-set-kana-mode! ac anthy-type-hiragana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((anthy-katakana-key? key key-state)
        (if (not (= kana anthy-type-katakana))
	  (begin
	    (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t kana)))
	    (anthy-utf8-flush ac)))
	(anthy-utf8-context-set-kana-mode! ac anthy-type-katakana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((anthy-halfkana-key? key key-state)
        (if (not (= kana anthy-type-halfkana))
	  (begin
	    (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t kana)))
	    (anthy-utf8-flush ac)))
	(anthy-utf8-context-set-kana-mode! ac anthy-type-halfkana)
	(anthy-utf8-context-set-alnum! ac #f))

       ((and
         (anthy-halfwidth-alnum-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-alnum-type ac) anthy-type-halfwidth-alnum)
	   (anthy-utf8-context-alnum ac))))
	(anthy-utf8-context-set-alnum-type! ac anthy-type-halfwidth-alnum)
	(anthy-utf8-context-set-alnum! ac #t))

       ((and
         (anthy-fullwidth-alnum-key? key key-state)
	 (not
	  (and
	   (= (anthy-utf8-context-alnum-type ac) anthy-type-fullwidth-alnum)
	   (anthy-utf8-context-alnum ac))))
	(anthy-utf8-context-set-alnum-type! ac anthy-type-fullwidth-alnum)
	(anthy-utf8-context-set-alnum! ac #t))

       ;; Commit current preedit string, then toggle hiragana/katakana mode.
       ((and
	 (not (anthy-utf8-context-alnum ac))
	 (anthy-kana-toggle-key? key key-state))
	(begin
	  (im-commit ac (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t kana)))
	  (anthy-utf8-flush ac)
	  (anthy-utf8-context-kana-toggle ac)))

       ((anthy-alkana-toggle-key? key key-state)
	(anthy-utf8-context-alkana-toggle ac))

       ;; cancel
       ((anthy-cancel-key? key key-state)
	(anthy-utf8-flush ac))

       ;; commit
       ((anthy-commit-key? key key-state)
	(begin
	  (im-commit
	   ac
	   (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-make-whole-string ac #t kana)))
	  (anthy-utf8-flush ac)))

       ;; left
       ;; 2004-08-27 Takuro Ashie <ashie@homa.ne.jp>
       ;;   * We should restore pending state of rk-context when the input-rule
       ;;     is kana mode.
       ((anthy-go-left-key? key key-state)
	(anthy-utf8-context-confirm-kana! ac)
	(ustr-cursor-move-backward! preconv-str)
	(ustr-cursor-move-backward! raw-str))

       ;; right
       ;; 2004-08-27 Takuro Ashie <ashie@homa.ne.jp>
       ;;   * We should restore pending state of rk-context when the input-rule
       ;;     is kana mode.
       ((anthy-go-right-key? key key-state)
	(anthy-utf8-context-confirm-kana! ac)
	(ustr-cursor-move-forward! preconv-str)
	(ustr-cursor-move-forward! raw-str))

       ;; beginning-of-preedit
       ;; 2004-08-27 Takuro Ashie <ashie@homa.ne.jp>
       ;;   * We should restore pending state of rk-context when the input-rule
       ;;     is kana mode.
       ((anthy-beginning-of-preedit-key? key key-state)
	(anthy-utf8-context-confirm-kana! ac)
	(ustr-cursor-move-beginning! preconv-str)
	(ustr-cursor-move-beginning! raw-str))

       ;; end-of-preedit
       ;; 2004-08-27 Takuro Ashie <ashie@homa.ne.jp>
       ;;   * We should restore pending state of rk-context when the input-rule
       ;;     is kana mode.
       ((anthy-end-of-preedit-key? key key-state)
	(anthy-utf8-context-confirm-kana! ac)
	(ustr-cursor-move-end! preconv-str)
	(ustr-cursor-move-end! raw-str))

       ;; modifiers (except shift) => ignore
       ((and (modifier-key-mask key-state)
	     (not (shift-key-mask key-state)))
	#f)

       ((anthy-non-composing-symbol? ac key)
	#f)

       (else	
	;; handle "n1" sequence as "ん1"
	(if (and (not (anthy-utf8-context-alnum ac))
		 (not (ichar-alphabetic? key))
		 (not (string-find
		       (rk-expect rkc)
		       (if (= rule anthy-input-rule-kana)
			   (if (symbol? key)
			       (symbol->string key)
			       (charcode->string key))
			   (if (symbol? key)
			       (symbol->string key)
			       (charcode->string (ichar-downcase key)))))))
	    (let ((pend (rk-pending rkc))
		  (residual-kana (rk-push-key-last! rkc)))
	      (if residual-kana
		  (begin
		    (ustr-insert-elem! preconv-str residual-kana)
		    (ustr-insert-elem! raw-str pend)))))

	(if (anthy-utf8-context-alnum ac)
	    (let ((key-str (if (symbol? key)
			       (if (symbol-bound? key)
				   (symbol-value key)
				   "?") ;; shouldn't happen
			       (charcode->string key)))
		  (pend (rk-pending rkc))
		  (residual-kana (rk-peek-terminal-match rkc)))
	      (rk-flush rkc) ;; OK to reset rkc here.
	      (if residual-kana
		  (begin
		    (ustr-insert-elem! preconv-str residual-kana)
		    (ustr-insert-elem! raw-str pend)))
	      (ustr-insert-elem! preconv-str 
				 (if (= (anthy-utf8-context-alnum-type ac)
					anthy-type-halfwidth-alnum)
				     (list key-str key-str key-str)
				     (list (ja-wide key-str) (ja-wide key-str)
					   (ja-wide key-str))))
	      (ustr-insert-elem! raw-str key-str))
	    (let* ((key-str (if (= rule anthy-input-rule-kana)
	    			(if (symbol? key)
				    (symbol->string key)
				    (charcode->string key))
				(if (symbol? key)
				    (symbol->string key)
				    (charcode->string (ichar-downcase key)))))
		   (pend (rk-pending rkc))
		   (res (rk-push-key! rkc key-str)))
	      (if (and res
		       (or (list? (car res))
			   (not (string=? (car res) ""))))
		  (let ((next-pend (rk-pending rkc)))
		    (if (list? (car res))
			(ustr-insert-seq!  preconv-str res)
			(ustr-insert-elem! preconv-str res))
		    (if (and next-pend
			     (not (string=? next-pend "")))
			(ustr-insert-elem! raw-str pend)
			(if (list? (car res))
			    (begin
			      (ustr-insert-elem! raw-str pend)
			      (ustr-insert-elem!
			       raw-str (if (and (intern-key-symbol key-str)
						(symbol-bound?
						 (string->symbol key-str)))
					   (symbol-value
					    (string->symbol key-str))
					   key-str)))
			    (ustr-insert-elem!
			     raw-str
			     (string-append
			      pend
			      (if (and
				   (intern-key-symbol key-str)
				   (symbol-bound? (string->symbol key-str)))
				  (symbol-value (string->symbol key-str))
				  key-str))))))))))))))

(define anthy-utf8-context-confirm-kana!
  (lambda (ac)
    (if (= (anthy-utf8-context-input-rule ac)
	   anthy-input-rule-kana)
	(let* ((preconv-str (anthy-utf8-context-preconv-ustr ac))
	       (rkc (anthy-utf8-context-rkc ac))
	       (residual-kana (rk-peek-terminal-match rkc)))
	    (if residual-kana
		(begin
		  (ustr-insert-elem! preconv-str residual-kana)
		  (rk-flush rkc)))))))

(define anthy-utf8-reset-prediction-window
  (lambda (ac)
    (if (anthy-utf8-context-prediction-window ac)
        (im-deactivate-candidate-selector ac))
    (anthy-utf8-context-set-predicting! ac #f)
    (anthy-utf8-context-set-prediction-window! ac #f)
    (anthy-utf8-context-set-prediction-index! ac #f)))

(define anthy-utf8-check-prediction
  (lambda (ac)
    (if (and
	 (not (anthy-utf8-context-converting ac))
	 (not (anthy-utf8-context-transposing ac))
	 (not (anthy-utf8-context-predicting ac)))
	(let ((preconv-str
	       (anthy-utf8-make-whole-string ac #t (anthy-utf8-context-kana-mode ac)))
	      (ac-id (anthy-utf8-context-ac-id ac)))
	  (if (not (string=? preconv-str ""))
	      (begin
		(anthy-utf8-lib-set-prediction-src-string ac-id (anthy-utf8-lib-eucjp-to-utf8 preconv-str))
		(let ((nr (anthy-utf8-lib-get-nr-predictions ac-id)))
		  (if (and
		       nr
		       (> nr 0))
		      (begin
			(im-activate-candidate-selector
			 ac nr anthy-nr-candidate-max)
			(anthy-utf8-context-set-prediction-window! ac #t)
			(anthy-utf8-context-set-predicting! ac #t))
		      (anthy-utf8-reset-prediction-window ac))))
	      (anthy-utf8-reset-prediction-window ac))))))

(define anthy-utf8-proc-input-state
  (lambda (ac key key-state)
    (if (anthy-utf8-has-preedit? ac)
	(anthy-utf8-proc-input-state-with-preedit ac key key-state)
	(anthy-utf8-proc-input-state-no-preedit ac key key-state))
    (if (and
         anthy-use-prediction?)
	 (anthy-utf8-check-prediction ac))))

(define anthy-separator
  (lambda (ac)
    (let ((attr (bitwise-ior preedit-separator
			     preedit-underline)))
      (if anthy-show-segment-separator?
	  (cons attr anthy-segment-separator)
	  #f))))

(define anthy-utf8-context-transposing-state-preedit
  (lambda (ac)
    (let ((transposing-text (anthy-utf8-transposing-text ac)))
      (list (cons preedit-reverse (anthy-utf8-lib-eucjp-to-utf8 transposing-text))
	    (cons preedit-cursor "")))))

(define anthy-utf8-transposing-text
  (lambda (ac)
    (let* ((transposing-type (anthy-utf8-context-transposing-type ac)))
      (cond
       ((or
	 (= transposing-type anthy-type-hiragana)
	 (= transposing-type anthy-type-katakana)
	 (= transposing-type anthy-type-halfkana))
	(anthy-utf8-make-whole-string ac #t transposing-type))
       ((= transposing-type anthy-type-halfwidth-alnum)
	(anthy-utf8-make-whole-raw-string ac #f #f))
       ((= transposing-type anthy-candidate-type-upper-halfwidth-alnum)
	(anthy-utf8-make-whole-raw-string ac #f #t))
       ((= transposing-type anthy-type-fullwidth-alnum)
	(anthy-utf8-make-whole-raw-string ac #t #f))
       ((= transposing-type anthy-candidate-type-upper-fullwidth-alnum)
	(anthy-utf8-make-whole-raw-string ac #t #t))))))

(define anthy-utf8-get-raw-str-seq
  (lambda (ac)
    (let* ((rkc (anthy-utf8-context-rkc ac))
	   (pending (rk-pending rkc))
	   (residual-kana (rk-peek-terminal-match rkc))
	   (raw-str (anthy-utf8-context-raw-ustr ac))
	   (right-str (ustr-latter-seq raw-str))
	   (left-str (ustr-former-seq raw-str)))
      (append left-str
	      (if residual-kana
		  (list pending)
		  '())
	      right-str))))

(define anthy-utf8-get-raw-candidate
  (lambda (ac ac-id seg-idx cand-idx)
    (let* ((preconv
	    (ja-join-vu (string-to-list
			 (anthy-utf8-make-whole-string ac #t anthy-type-hiragana))))
	   (unconv-candidate (anthy-utf8-lib-utf8-to-eucjp (anthy-utf8-lib-get-unconv-candidate ac-id seg-idx)))
	   (unconv (if unconv-candidate
		       (ja-join-vu (string-to-list unconv-candidate))
		       '()))
	   (raw-str (reverse (anthy-utf8-get-raw-str-seq ac))))
      (if (not (null? unconv))
	  (if (member (car unconv) preconv)
	      (let ((start (list-seq-contained? preconv unconv))
		    (len (length unconv)))
		(if start
		    (anthy-make-raw-string
		     (reverse (sublist-rel raw-str start len))
		     (if (or
			  (= cand-idx anthy-candidate-type-halfwidth-alnum)
			  (= cand-idx
			     anthy-candidate-type-upper-halfwidth-alnum))
			 #f
			 #t)
		     (if (or
			  (= cand-idx anthy-candidate-type-halfwidth-alnum)
			  (= cand-idx anthy-candidate-type-fullwidth-alnum))
			 #f
			 #t))
		    "??")) ;; FIXME
	      "???") ;; FIXME
	  "????")))) ;; shouldn't happen

(define anthy-utf8-predicting-state-preedit
  (lambda (ac)
    (if (or 
	 (not anthy-use-implicit-commit-prediction?)
	 (not (anthy-utf8-context-prediction-index ac)))
        (anthy-utf8-input-state-preedit ac)
	(let ((cand (anthy-utf8-get-prediction-string ac)))
	  (list (cons (bitwise-ior preedit-reverse preedit-cursor) cand))))))

(define anthy-utf8-converting-state-preedit
  (lambda (ac)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (segments (anthy-utf8-context-segments ac))
	   (cur-seg (ustr-cursor-pos segments))
	   (separator (anthy-separator ac)))
      (append-map
       (lambda (seg-idx cand-idx)
	 (let* ((attr (if (= seg-idx cur-seg)
			  (bitwise-ior preedit-reverse
				       preedit-cursor)
			  preedit-underline))
		(cand (if (> cand-idx anthy-candidate-type-halfwidth-alnum)
			  (anthy-utf8-lib-get-nth-candidate ac-id seg-idx cand-idx)
			  (anthy-utf8-lib-eucjp-to-utf8 (anthy-utf8-get-raw-candidate ac ac-id seg-idx cand-idx))))
		(seg (list (cons attr cand))))
	   (if (and separator
		    (< 0 seg-idx))
	       (cons separator seg)
	       seg)))
       (iota (ustr-length segments))
       (ustr-whole-seq segments)))))

(define anthy-utf8-input-state-preedit
  (lambda (ac)
    (let* ((preconv-str (anthy-utf8-context-preconv-ustr ac))
	   (rkc (anthy-utf8-context-rkc ac))
	   (pending (rk-pending rkc))
	   (kana (anthy-utf8-context-kana-mode ac))
	   (rule (anthy-utf8-context-input-rule ac))
	   (extract-kana
	    (if (= rule anthy-input-rule-kana)
		(lambda (entry) (car entry))
		(lambda (entry) (list-ref entry kana)))))
      (list
       (and (not (ustr-cursor-at-beginning? preconv-str))
	    (cons preedit-underline
		  (anthy-utf8-lib-eucjp-to-utf8 (string-append-map-ustr-former extract-kana preconv-str))))
       (and (> (string-length pending) 0)
	    (cons preedit-underline (anthy-utf8-lib-eucjp-to-utf8 pending)))
       (and (anthy-utf8-has-preedit? ac)
	    (cons preedit-cursor ""))
       (and (not (ustr-cursor-at-end? preconv-str))
	    (cons
	     preedit-underline
	     (anthy-utf8-lib-eucjp-to-utf8 (string-append-map-ustr-latter extract-kana preconv-str))))))))

(define anthy-utf8-get-commit-string
  (lambda (ac)
    (let ((ac-id (anthy-utf8-context-ac-id ac))
	  (segments (anthy-utf8-context-segments ac)))
      (string-append-map (lambda (seg-idx cand-idx)
			   (if (> cand-idx
				  anthy-candidate-type-halfwidth-alnum)
			       (anthy-utf8-lib-get-nth-candidate
				ac-id seg-idx cand-idx)
			       (anthy-utf8-get-raw-candidate
				ac ac-id seg-idx cand-idx)))
			 (iota (ustr-length segments))
			 (ustr-whole-seq segments)))))

(define anthy-utf8-commit-string
  (lambda (ac)
    (let ((ac-id (anthy-utf8-context-ac-id ac))
	  (segments (anthy-utf8-context-segments ac)))
      (for-each (lambda (seg-idx cand-idx)
		  (if (> cand-idx anthy-candidate-type-halfwidth-alnum)
		      (anthy-utf8-lib-commit-segment ac-id seg-idx cand-idx)))
		(iota (ustr-length segments))
		(ustr-whole-seq segments)))))

(define anthy-utf8-do-commit
  (lambda (ac)
    (im-commit ac (anthy-utf8-get-commit-string ac))
    (anthy-utf8-commit-string ac)
    (anthy-utf8-reset-candidate-window ac)
    (anthy-utf8-flush ac)))

(define anthy-utf8-get-prediction-string
  (lambda (ac)
    (let ((ac-id (anthy-utf8-context-ac-id ac)))
      (anthy-utf8-lib-get-nth-prediction
       ac-id (anthy-utf8-context-prediction-index ac)))))

(define anthy-utf8-learn-prediction-string
  (lambda (ac)
    (let ((ac-id (anthy-utf8-context-ac-id ac)))
      (anthy-utf8-lib-commit-nth-prediction
       ac-id (anthy-utf8-context-prediction-index ac)))))

(define anthy-utf8-do-commit-prediction
  (lambda (ac)
    (im-commit ac (anthy-utf8-get-prediction-string ac))
    (anthy-utf8-learn-prediction-string ac)
    (anthy-utf8-reset-prediction-window ac)
    (anthy-utf8-flush ac)))

(define anthy-correct-segment-cursor
  (lambda (segments)
    (if (ustr-cursor-at-end? segments)
	(ustr-cursor-move-backward! segments))))

(define anthy-utf8-move-segment
  (lambda (ac offset)
    (anthy-utf8-reset-candidate-window ac)
    (let ((segments (anthy-utf8-context-segments ac)))
      (ustr-cursor-move! segments offset)
      (anthy-correct-segment-cursor segments))))

(define anthy-utf8-resize-segment
  (lambda (ac cnt)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (segments (anthy-utf8-context-segments ac))
	   (cur-seg (ustr-cursor-pos segments)))
      (anthy-utf8-reset-candidate-window ac)
      (anthy-utf8-lib-resize-segment ac-id cur-seg cnt)
      (let* ((resized-nseg (anthy-utf8-lib-get-nr-segments ac-id))
	     (latter-nseg (- resized-nseg cur-seg)))
	(ustr-set-latter-seq! segments (make-list latter-nseg 0))))))

(define anthy-utf8-move-candidate
  (lambda (ac offset)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (segments (anthy-utf8-context-segments ac))
	   (cur-seg (ustr-cursor-pos segments))
	   (max (anthy-utf8-lib-get-nr-candidates ac-id cur-seg))
	   (n (if (< (ustr-cursor-frontside segments) 0) ;; segment-transposing
		  0
		  (+ (ustr-cursor-frontside segments) offset)))
	   (compensated-n (cond
			   ((>= n max)
			    0)
			   ((< n 0)
			    (- max 1))
			   (else
			    n)))
	   (new-op-count (+ 1 (anthy-utf8-context-candidate-op-count ac))))
      (ustr-cursor-set-frontside! segments compensated-n)
      (anthy-utf8-context-set-candidate-op-count! ac new-op-count)
      (if (and anthy-use-candidate-window?
	       (= (anthy-utf8-context-candidate-op-count ac)
		  anthy-candidate-op-count))
	  (begin
	    (anthy-utf8-context-set-candidate-window! ac #t)
	    (im-activate-candidate-selector ac max anthy-nr-candidate-max)))
      (if (anthy-utf8-context-candidate-window ac)
	  (im-select-candidate ac compensated-n)))))

(define anthy-utf8-move-candidate-in-page
  (lambda (ac numeralc)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (segments (anthy-utf8-context-segments ac))
	   (cur-seg (ustr-cursor-pos segments))
	   (max (anthy-utf8-lib-get-nr-candidates ac-id cur-seg))
	   (n (ustr-cursor-frontside segments))
	   (cur-page (if (= anthy-nr-candidate-max 0)
	   		 0
			 (quotient n anthy-nr-candidate-max)))
	   (pageidx (- (numeric-ichar->integer numeralc) 1))
	   (compensated-pageidx (cond
				 ((< pageidx 0) ; pressing key_0
				  (+ pageidx 10))
				 (else
				  pageidx)))
	   (idx (+ (* cur-page anthy-nr-candidate-max) compensated-pageidx))
	   (compensated-idx (cond
			     ((>= idx max)
			      (- max 1))
			     (else
			      idx)))
	   (new-op-count (+ 1 (anthy-utf8-context-candidate-op-count ac))))
      (ustr-cursor-set-frontside! segments compensated-idx)
      (anthy-utf8-context-set-candidate-op-count! ac new-op-count)
      (im-select-candidate ac compensated-idx))))

(define anthy-utf8-reset-candidate-window
  (lambda (ac)
    (if (anthy-utf8-context-candidate-window ac)
	(begin
	  (im-deactivate-candidate-selector ac)
	  (anthy-utf8-context-set-candidate-window! ac #f)))
    (anthy-utf8-context-set-candidate-op-count! ac 0)))

(define anthy-rotate-segment-transposing-alnum-type
  (lambda (idx state)
    (cond
     ((and
       (= idx anthy-candidate-type-halfwidth-alnum)
       (= state anthy-candidate-type-halfwidth-alnum))
      anthy-candidate-type-upper-halfwidth-alnum)
     ((and
       (= idx anthy-candidate-type-fullwidth-alnum)
       (= state anthy-candidate-type-fullwidth-alnum))
      anthy-candidate-type-upper-fullwidth-alnum)
     (else
      state))))

(define anthy-utf8-set-segment-transposing
  (lambda (ac key key-state)
    (let ((segments (anthy-utf8-context-segments ac)))
      (if (and
	   anthy-version
	   (>= (string->number (car anthy-version)) 7802))
	  ;; anthy-7802 and upward
	  (let ((rotate-list '())
		(state #f)
		(idx (ustr-cursor-frontside segments)))
	    (anthy-utf8-reset-candidate-window ac)
	    (anthy-utf8-context-set-candidate-op-count! ac 0)

	    (if (anthy-transpose-as-fullwidth-alnum-key? key key-state)
		(set! rotate-list (cons anthy-candidate-type-fullwidth-alnum
					rotate-list)))
	    (if (anthy-transpose-as-halfwidth-alnum-key? key key-state)
		(set! rotate-list (cons anthy-candidate-type-halfwidth-alnum
					rotate-list)))
	    (if (anthy-transpose-as-halfkana-key? key key-state)
		(set! rotate-list (cons anthy-candidate-type-halfkana
					rotate-list)))
	    (if (anthy-transpose-as-katakana-key? key key-state)
		(set! rotate-list (cons anthy-candidate-type-katakana
					rotate-list)))
	    (if (anthy-transpose-as-hiragana-key? key key-state)
		(set! rotate-list (cons anthy-candidate-type-hiragana
					rotate-list)))
	    (if (or
		 (= idx anthy-candidate-type-hiragana)
		 (= idx anthy-candidate-type-katakana)
		 (= idx anthy-candidate-type-halfkana)
		 (= idx anthy-candidate-type-halfwidth-alnum)
		 (= idx anthy-candidate-type-fullwidth-alnum)
		 (= idx anthy-candidate-type-upper-halfwidth-alnum)
		 (= idx anthy-candidate-type-upper-fullwidth-alnum))
		(let ((lst (member idx rotate-list)))
		  (if (and lst
			   (not (null? (cdr lst))))
		      (set! state (car (cdr lst)))
		      (set! state (anthy-rotate-segment-transposing-alnum-type
				   idx (car rotate-list)))))
		(set! state (car rotate-list)))
	     (ustr-cursor-set-frontside! segments state))
	  ;; below anthy-7802
	  (begin
	    ;; FIXME: don't cancel conversion
	    (anthy-utf8-cancel-conv ac)
	    (anthy-utf8-proc-transposing-state ac key key-state))))))

(define anthy-utf8-proc-converting-state
  (lambda (ac key key-state)
    (cond
     ((anthy-prev-page-key? key key-state)
      (if (anthy-utf8-context-candidate-window ac)
	  (im-shift-page-candidate ac #f)))

     ((anthy-next-page-key? key key-state)
      (if (anthy-utf8-context-candidate-window ac)
	  (im-shift-page-candidate ac #t)))

     ((anthy-commit-key? key key-state)
      (anthy-utf8-do-commit ac))
     
     ((anthy-extend-segment-key? key key-state)
      (anthy-utf8-resize-segment ac 1))
     
     ((anthy-shrink-segment-key? key key-state)
      (anthy-utf8-resize-segment ac -1))
     
     ((anthy-next-segment-key? key key-state)
      (anthy-utf8-move-segment ac 1))
     
     ((anthy-prev-segment-key? key key-state)
      (anthy-utf8-move-segment ac -1))

     ((anthy-beginning-of-preedit-key? key key-state)
      (begin
	(ustr-cursor-move-beginning! (anthy-utf8-context-segments ac))
	(anthy-utf8-reset-candidate-window ac)))

     ((anthy-end-of-preedit-key? key key-state)
      (begin
	(ustr-cursor-move-end! (anthy-utf8-context-segments ac))
	(anthy-correct-segment-cursor (anthy-utf8-context-segments ac))
	(anthy-utf8-reset-candidate-window ac)))

     ((anthy-backspace-key? key key-state)
      (anthy-utf8-cancel-conv ac))

     ((anthy-next-candidate-key? key key-state)
      (anthy-utf8-move-candidate ac 1))

     ((anthy-prev-candidate-key? key key-state)
      (anthy-utf8-move-candidate ac -1))

     ((or (anthy-transpose-as-hiragana-key? key key-state)
	  (anthy-transpose-as-katakana-key? key key-state)
	  (anthy-transpose-as-halfkana-key? key key-state)
	  (and
	   (not (= (anthy-utf8-context-input-rule ac) anthy-input-rule-kana))
	   (or
	    (anthy-transpose-as-halfwidth-alnum-key? key key-state)
	    (anthy-transpose-as-fullwidth-alnum-key? key key-state))))
	(anthy-utf8-set-segment-transposing ac key key-state))

     ((anthy-cancel-key? key key-state)
      (anthy-utf8-cancel-conv ac))

     ((and anthy-select-candidate-by-numeral-key?
	   (ichar-numeric? key)
	   (anthy-utf8-context-candidate-window ac))
      (anthy-utf8-move-candidate-in-page ac key))

     ;; don't discard shift-modified keys. Some of them ("?", "~",
     ;; etc) are used to implicit commit. Reported by [Anthy-dev 745]
     ;; -- YamaKen 2004-04-08
     ((and (modifier-key-mask key-state)
	   (not (shift-key-mask key-state)))
      #f)  ;; use #f rather than () to conform to R5RS

     ((anthy-non-composing-symbol? ac key)
      #f)

     (else
      (begin
	(anthy-utf8-do-commit ac)
	(anthy-utf8-proc-input-state ac key key-state))))))

(define anthy-utf8-press-key-handler
  (lambda (ac key key-state)
    (if (ichar-control? key)
	(im-commit-raw ac)
	(if (anthy-utf8-context-on ac)
	    (if (anthy-utf8-context-transposing ac)
		(anthy-utf8-proc-transposing-state ac key key-state)
		(if (anthy-utf8-context-converting ac)
		    (anthy-utf8-proc-converting-state ac key key-state)
		    (if (anthy-utf8-context-predicting ac)
		        (anthy-utf8-proc-prediction-state ac key key-state)
		        (anthy-utf8-proc-input-state ac key key-state))))
	    (anthy-utf8-proc-raw-state ac key key-state)))
    ;; preedit
    (anthy-utf8-update-preedit ac)))


(define anthy-utf8-release-key-handler
  (lambda (ac key key-state)
    (if (or (ichar-control? key)
	    (not (anthy-utf8-context-on ac)))
	;; don't discard key release event for apps
	(anthy-utf8-commit-raw ac))))

(define anthy-utf8-reset-handler
  (lambda (ac)
    (if (anthy-utf8-context-on ac)
	(anthy-utf8-flush ac))
    ;; code to commit pending string must not be added to here.
    ;; -- YamaKen 2004-10-21
    ))

(define anthy-utf8-get-candidate-handler
  (lambda (ac idx accel-enum-hint)
    (let* ((ac-id (anthy-utf8-context-ac-id ac))
	   (cur-seg (ustr-cursor-pos (anthy-utf8-context-segments ac)))
	   (cand (if (anthy-utf8-context-converting ac)
	             (anthy-utf8-lib-get-nth-candidate ac-id cur-seg idx)
	             (anthy-utf8-lib-get-nth-prediction ac-id idx))))
      (list cand (digit->string (+ idx 1)) ""))))

(define anthy-utf8-set-candidate-index-handler
  (lambda (ac idx)
    (cond
     ((anthy-utf8-context-converting ac)
       (ustr-cursor-set-frontside! (anthy-utf8-context-segments ac) idx)
       (anthy-utf8-update-preedit ac))
     ((anthy-utf8-context-predicting ac)
       (anthy-utf8-context-set-prediction-index! ac idx)
       (anthy-utf8-update-preedit ac)))))

(anthy-utf8-configure-widgets)

(register-im
 'anthy-utf8
 "ja"
 "UTF-8"
 anthy-utf8-im-name-label
 anthy-utf8-im-short-desc
 #f
 anthy-utf8-init-handler
 anthy-utf8-release-handler
 context-mode-handler
 anthy-utf8-press-key-handler
 anthy-utf8-release-key-handler
 anthy-utf8-reset-handler
 anthy-utf8-get-candidate-handler
 anthy-utf8-set-candidate-index-handler
 context-prop-activate-handler
 #f
 #f
 #f
 #f
 #f
)