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
|
/* libhangul
* Copyright (C) 2004 - 2016 Choe Hwanjin
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
#include <strings.h>
#else
#define strcasecmp _stricmp
#endif
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#include "hangul-gettext.h"
#include "hangul.h"
#include "hangulinternals.h"
/**
* @defgroup hangulic 한글 입력 기능 구현
*
* @section hangulicusage Hangul Input Context의 사용법
* 이 섹션에서는 한글 입력 기능을 구현하는 핵심 기능에 대해 설명한다.
*
* 먼저 preedit string과 commit string 이 두 용어에 대해서 설명하겠다.
* 이 두가지 용어는 Unix 계열의 입력기 framework에서 널리 쓰이는 표현이다.
*
* preedit string은 아직 조합중으로 어플리케이션에 완전히 입력되지 않은
* 스트링을 가리킨다. 일반적으로 한글 입력기에서는 역상으로 보이고
* 일본 중국어 입력기에서는 underline이 붙어 나타난다. 아직 완성이 되지
* 않은 스트링이므로 어플리케이션에 전달이 되지 않고 사라질 수도 있다.
*
* commit string은 조합이 완료되어 어플리케이션에 전달되는 스트링이다.
* 이 스트링은 실제 어플리케이션의 텍스트로 인식이 되므로 이 이후에는
* 더이상 입력기가 관리할 수 있는 데이터가 아니다.
*
* 한글 입력과정은 다음과 같은 과정을 거치게 된다.
* 입력된 영문 키를 그에 해당하는 한글 자모로 변환한후 한글 자모를 모아
* 하나의 음절을 만든다. 여기까지 이루어지는 과정을 preedit string 형태로
* 사용자에게 계속 보이게 하는 것이 필요하다.
* 그리고는 한글 음절이 완성되고나면 그 글자를 어플리케이션에 commit
* string 형태로 보내여 입력을 완료하는 것이다. 다음 키를 받게 되면
* 이 과정을 반복해서 수행한다.
*
* libhangul에서 한글 조합 기능은 @ref HangulInputContext 를 이용해서 구현하게
* 되는데 기본 적인 방법은 @ref HangulInputContext 에 사용자로부터의 입력을
* 순서대로 전달하면서 그 상태가 바뀜에 따라서 preedit 나 commit 스트링을
* 상황에 맞게 변화시키는 것이다.
*
* 입력 코드들은 GUI 코드와 밀접하게 붙어 있어서 키 이벤트를 받아서
* 처리하도록 구현하는 것이 보통이다. 그런데 유닉스에는 많은 입력 프레임웍들이
* 난립하고 있는 상황이어서 매 입력 프레임웍마다 한글 조합 루틴을 작성해서
* 넣는 것은 비효율적이다. 간단한 API를 구현하여 여러 프레임웍에서 바로
* 사용할 수 있도록 구현하는 편이 사용성이 높아지게 된다.
*
* 그래서 libhangul에서는 키 이벤트를 따로 재정의하지 않고 ASCII 코드를
* 직접 사용하는 방향으로 재정의된 데이터가 많지 않도록 하였다.
* 실제 사용 방법은 말로 설명하는 것보다 샘플 코드를 사용하는 편이
* 이해가 빠를 것이다. 그래서 대략적인 진행 과정을 샘플 코드로
* 작성하였다.
*
* 아래 예제는 실제로는 존재하지 않는 GUI 라이브러리 코드를 사용하였다.
* 실제 GUI 코드를 사용하면 코드가 너무 길어져서 설명이 어렵고 코드가
* 길어지면 핵심을 놓치기 쉽기 때문에 가공의 함수를 사용하였다.
* 또한 텍스트의 encoding conversion 관련된 부분도 생략하였다.
* 여기서 사용한 가공의 GUI 코드는 TWin으로 시작하게 하였다.
*
* @code
HangulInputContext* hic = hangul_ic_new("2");
...
// 아래는 키 입력만 처리하는 이벤트 루프이다.
// 실제 GUI코드는 이렇게 단순하진 않지만
// 편의상 키 입력만 처리하는 코드로 작성하였다.
TWinKeyEvent event = TWinGetKeyEvent(); // 키이벤트를 받는 이런 함수가
// 있다고 치자
while (ascii != 0) {
bool res;
if (event.isBackspace()) {
// backspace를 ascii로 변환하기가 좀 꺼림직해서
// libhangul에서는 backspace 처리를 위한
// 함수를 따로 만들었다.
res = hangul_ic_backspace(hic);
} else {
// 키 입력을 해당하는 ascii 코드로 변환한다.
// libhangul에서는 이 ascii 코드가 키 이벤트
// 코드와 마찬가지다.
int ascii = event.getAscii();
// 키 입력을 받았으면 이것을 hic에 먼저 보낸다.
// 그래야 hic가 이 키를 사용할 것인지 아닌지를 판단할 수 있다.
// 함수가 true를 리턴하면 이 키를 사용했다는 의미이므로
// GUI 코드가 이 키 입력을 프로세싱하지 않도록 해야 한다.
// 그렇지 않으면 한 키입력이 두번 프로세싱된다.
res = hangul_ic_process(hic, ascii);
}
// hic는 한번 키입력을 받고 나면 내부 상태 변화가 일어나고
// 완성된 글자를 어플리케이션에 보내야 하는 상황이 있을 수 있다.
// 이것을 HangulInputContext에서는 commit 스트링이 있는지로
// 판단한다. commit 스트링을 받아봐서 스트링이 있다면
// 그 스트링으로 입력이 완료된 걸로 본다.
const ucschar commit;
commit = hangul_ic_get_commit_string(hic);
if (commit[0] != 0) { // 스트링의 길이를 재서 commit 스트링이 있는지
// 판단한다.
TWinInputUnicodeChars(commit);
}
// 키입력 후에는 preedit string도 역시 변화하게 되는데
// 입력기 프레임웍에서는 이 스트링을 화면에 보여주어야
// 조합중인 글자가 화면에 표시가 되는 것이다.
const ucschar preedit;
preedit = hangul_ic_get_preedit_string(hic);
// 이 경우에는 스트링의 길이에 관계없이 항상 업데이트를
// 해야 한다. 왜냐하면 이전에 조합중이던 글자가 있다가
// 조합이 완료되면서 조합중인 상태의 글자가 없어질 수도 있기 때문에
// 스트링의 길이에 관계없이 현재 상태의 스트링을 preedit
// 스트링으로 보여주면 되는 것이다.
TWinUpdatePreeditString(preedit);
// 위 두작업이 끝난후에는 키 이벤트를 계속 프로세싱해야 하는지
// 아닌지를 처리해야 한다.
// hic가 키 이벤트를 사용하지 않았다면 기본 GUI 코드에 계속해서
// 키 이벤트 프로세싱을 진행하도록 해야 한다.
if (!res)
TWinForwardKeyEventToUI(ascii);
ascii = GetKeyEvent();
}
hangul_ic_delete(hic);
* @endcode
*/
/**
* @file hangulinputcontext.c
*/
/**
* @ingroup hangulic
* @typedef HangulInputContext
* @brief 한글 입력 상태를 관리하기 위한 오브젝트
*
* libhangul에서 제공하는 한글 조합 루틴에서 상태 정보를 저장하는 opaque
* 데이타 오브젝트이다. 이 오브젝트에 키입력 정보를 순차적으로 보내주면서
* preedit 스트링이나, commit 스트링을 받아서 처리하면 한글 입력 기능을
* 손쉽게 구현할 수 있다.
* 내부의 데이터 멤버는 공개되어 있지 않다. 각각의 멤버는 accessor 함수로만
* 참조하여야 한다.
*/
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef void (*HangulOnTranslate) (HangulInputContext*,
int,
ucschar*,
void*);
typedef bool (*HangulOnTransition) (HangulInputContext*,
ucschar,
const ucschar*,
void*);
struct _HangulBuffer {
ucschar choseong;
ucschar jungseong;
ucschar jongseong;
ucschar stack[12];
int index;
};
struct _HangulInputContext {
int type;
const HangulKeyboard* keyboard;
int tableid;
HangulBuffer buffer;
int output_mode;
ucschar preedit_string[64];
ucschar commit_string[64];
ucschar flushed_string[64];
HangulOnTranslate on_translate;
void* on_translate_data;
HangulOnTransition on_transition;
void* on_transition_data;
unsigned int use_jamo_mode_only : 1;
unsigned int option_auto_reorder : 1;
unsigned int option_combi_on_double_stroke : 1;
unsigned int option_non_choseong_combi : 1;
};
static void hangul_buffer_push(HangulBuffer *buffer, ucschar ch);
static ucschar hangul_buffer_pop (HangulBuffer *buffer);
static ucschar hangul_buffer_peek(HangulBuffer *buffer);
static void hangul_buffer_clear(HangulBuffer *buffer);
static int hangul_buffer_get_string(HangulBuffer *buffer, ucschar*buf, int buflen);
static int hangul_buffer_get_jamo_string(HangulBuffer *buffer, ucschar *buf, int buflen);
static void hangul_ic_flush_internal(HangulInputContext *hic);
static bool
hangul_buffer_is_empty(HangulBuffer *buffer)
{
return buffer->choseong == 0 && buffer->jungseong == 0 &&
buffer->jongseong == 0;
}
static bool
hangul_buffer_has_choseong(HangulBuffer *buffer)
{
return buffer->choseong != 0;
}
static bool
hangul_buffer_has_jungseong(HangulBuffer *buffer)
{
return buffer->jungseong != 0;
}
static bool
hangul_buffer_has_jongseong(HangulBuffer *buffer)
{
return buffer->jongseong != 0;
}
static void
hangul_buffer_push(HangulBuffer *buffer, ucschar ch)
{
if (hangul_is_choseong(ch)) {
buffer->choseong = ch;
} else if (hangul_is_jungseong(ch)) {
buffer->jungseong = ch;
} else if (hangul_is_jongseong(ch)) {
buffer->jongseong = ch;
} else {
}
buffer->stack[++buffer->index] = ch;
}
static ucschar
hangul_buffer_pop(HangulBuffer *buffer)
{
return buffer->stack[buffer->index--];
}
static ucschar
hangul_buffer_peek(HangulBuffer *buffer)
{
if (buffer->index < 0)
return 0;
return buffer->stack[buffer->index];
}
static void
hangul_buffer_clear(HangulBuffer *buffer)
{
buffer->choseong = 0;
buffer->jungseong = 0;
buffer->jongseong = 0;
buffer->index = -1;
buffer->stack[0] = 0;
buffer->stack[1] = 0;
buffer->stack[2] = 0;
buffer->stack[3] = 0;
buffer->stack[4] = 0;
buffer->stack[5] = 0;
buffer->stack[6] = 0;
buffer->stack[7] = 0;
buffer->stack[8] = 0;
buffer->stack[9] = 0;
buffer->stack[10] = 0;
buffer->stack[11] = 0;
}
static int
hangul_buffer_get_jamo_string(HangulBuffer *buffer, ucschar *buf, int buflen)
{
int n = 0;
if (buffer->choseong || buffer->jungseong || buffer->jongseong) {
if (buffer->choseong) {
buf[n++] = buffer->choseong;
} else {
buf[n++] = HANGUL_CHOSEONG_FILLER;
}
if (buffer->jungseong) {
buf[n++] = buffer->jungseong;
} else {
buf[n++] = HANGUL_JUNGSEONG_FILLER;
}
if (buffer->jongseong) {
buf[n++] = buffer->jongseong;
}
}
buf[n] = 0;
return n;
}
static int
hangul_jaso_to_string(ucschar cho, ucschar jung, ucschar jong,
ucschar *buf, int len)
{
ucschar ch = 0;
int n = 0;
if (cho) {
if (jung) {
/* have cho, jung, jong or no jong */
ch = hangul_jamo_to_syllable(cho, jung, jong);
if (ch != 0) {
buf[n++] = ch;
} else {
/* 한글 음절로 표현 불가능한 경우 */
buf[n++] = cho;
buf[n++] = jung;
if (jong != 0)
buf[n++] = jong;
}
} else {
if (jong) {
/* have cho, jong */
buf[n++] = cho;
buf[n++] = HANGUL_JUNGSEONG_FILLER;
buf[n++] = jong;
} else {
/* have cho */
ch = hangul_jamo_to_cjamo(cho);
if (hangul_is_cjamo(ch)) {
buf[n++] = ch;
} else {
buf[n++] = cho;
buf[n++] = HANGUL_JUNGSEONG_FILLER;
}
}
}
} else {
if (jung) {
if (jong) {
/* have jung, jong */
buf[n++] = HANGUL_CHOSEONG_FILLER;
buf[n++] = jung;
buf[n++] = jong;
} else {
/* have jung */
ch = hangul_jamo_to_cjamo(jung);
if (hangul_is_cjamo(ch)) {
buf[n++] = ch;
} else {
buf[n++] = HANGUL_CHOSEONG_FILLER;
buf[n++] = jung;
}
}
} else {
if (jong) {
/* have jong */
ch = hangul_jamo_to_cjamo(jong);
if (hangul_is_cjamo(ch)) {
buf[n++] = ch;
} else {
buf[n++] = HANGUL_CHOSEONG_FILLER;
buf[n++] = HANGUL_JUNGSEONG_FILLER;
buf[n++] = jong;
}
} else {
/* have nothing */
buf[n] = 0;
}
}
}
buf[n] = 0;
return n;
}
static int
hangul_buffer_get_string(HangulBuffer *buffer, ucschar *buf, int buflen)
{
return hangul_jaso_to_string(buffer->choseong,
buffer->jungseong,
buffer->jongseong,
buf, buflen);
}
static bool
hangul_buffer_backspace(HangulBuffer *buffer)
{
if (buffer->index >= 0) {
ucschar ch = hangul_buffer_pop(buffer);
if (ch == 0)
return false;
if (buffer->index >= 0) {
if (hangul_is_choseong(ch)) {
ch = hangul_buffer_peek(buffer);
buffer->choseong = hangul_is_choseong(ch) ? ch : 0;
return true;
} else if (hangul_is_jungseong(ch)) {
ch = hangul_buffer_peek(buffer);
buffer->jungseong = hangul_is_jungseong(ch) ? ch : 0;
return true;
} else if (hangul_is_jongseong(ch)) {
ch = hangul_buffer_peek(buffer);
buffer->jongseong = hangul_is_jongseong(ch) ? ch : 0;
return true;
}
} else {
buffer->choseong = 0;
buffer->jungseong = 0;
buffer->jongseong = 0;
return true;
}
}
return false;
}
static inline bool
hangul_ic_push(HangulInputContext *hic, ucschar c)
{
ucschar buf[64] = { 0, };
if (hic->on_transition != NULL) {
ucschar cho, jung, jong;
if (hangul_is_choseong(c)) {
cho = c;
jung = hic->buffer.jungseong;
jong = hic->buffer.jongseong;
} else if (hangul_is_jungseong(c)) {
cho = hic->buffer.choseong;
jung = c;
jong = hic->buffer.jongseong;
} else if (hangul_is_jongseong(c)) {
cho = hic->buffer.choseong;
jung = hic->buffer.jungseong;
jong = c;
} else {
hangul_ic_flush_internal(hic);
return false;
}
hangul_jaso_to_string(cho, jung, jong, buf, N_ELEMENTS(buf));
if (!hic->on_transition(hic, c, buf, hic->on_transition_data)) {
hangul_ic_flush_internal(hic);
return false;
}
} else {
if (!hangul_is_jamo(c)) {
hangul_ic_flush_internal(hic);
return false;
}
}
hangul_buffer_push(&hic->buffer, c);
return true;
}
static inline ucschar
hangul_ic_pop(HangulInputContext *hic)
{
return hangul_buffer_pop(&hic->buffer);
}
static inline ucschar
hangul_ic_peek(HangulInputContext *hic)
{
return hangul_buffer_peek(&hic->buffer);
}
static inline void
hangul_ic_save_preedit_string(HangulInputContext *hic)
{
if (hic->output_mode == HANGUL_OUTPUT_JAMO) {
hangul_buffer_get_jamo_string(&hic->buffer,
hic->preedit_string,
N_ELEMENTS(hic->preedit_string));
} else {
hangul_buffer_get_string(&hic->buffer,
hic->preedit_string,
N_ELEMENTS(hic->preedit_string));
}
}
static inline void
hangul_ic_append_commit_string(HangulInputContext *hic, ucschar ch)
{
int i;
for (i = 0; i < N_ELEMENTS(hic->commit_string); i++) {
if (hic->commit_string[i] == 0)
break;
}
if (i + 1 < N_ELEMENTS(hic->commit_string)) {
hic->commit_string[i++] = ch;
hic->commit_string[i] = 0;
}
}
static inline void
hangul_ic_save_commit_string(HangulInputContext *hic)
{
ucschar *string = hic->commit_string;
int len = N_ELEMENTS(hic->commit_string);
while (len > 0) {
if (*string == 0)
break;
len--;
string++;
}
if (hic->output_mode == HANGUL_OUTPUT_JAMO) {
hangul_buffer_get_jamo_string(&hic->buffer, string, len);
} else {
hangul_buffer_get_string(&hic->buffer, string, len);
}
hangul_buffer_clear(&hic->buffer);
}
static ucschar
hangul_ic_choseong_to_jongseong(HangulInputContext* hic, ucschar cho)
{
ucschar jong = hangul_choseong_to_jongseong(cho);
if (hangul_is_jongseong_conjoinable(jong)) {
return jong;
} else {
/* 옛글 조합 규칙을 사용하는 자판의 경우에는 종성이 conjoinable
* 하지 않아도 상관없다 */
int type = hangul_keyboard_get_type(hic->keyboard);
switch (type) {
case HANGUL_KEYBOARD_TYPE_JAMO_YET:
case HANGUL_KEYBOARD_TYPE_JASO_YET:
return jong;
}
}
return 0;
}
static ucschar
hangul_ic_combine(HangulInputContext* hic, ucschar first, ucschar second)
{
if (!hic->option_combi_on_double_stroke) {
if (hangul_keyboard_get_type(hic->keyboard) == HANGUL_KEYBOARD_TYPE_JAMO) {
/* 옛한글은 아래 규칙을 적용하지 않아야 입력가능한 글자가 있으므로
* 적용하지 않는다. */
if (first == second &&
hangul_is_jamo_conjoinable(first)) {
return 0;
}
}
}
ucschar combined = 0;
combined = hangul_keyboard_combine(hic->keyboard, 0, first, second);
if (!hic->option_non_choseong_combi) {
if (hangul_is_choseong(first) && hangul_is_choseong(second) &&
hangul_is_jongseong(combined)) {
return 0;
}
}
return combined;
}
static bool
hangul_ic_process_jamo(HangulInputContext *hic, ucschar ch)
{
ucschar jong;
ucschar combined;
if (!hangul_is_jamo(ch) && ch > 0) {
hangul_ic_save_commit_string(hic);
hangul_ic_append_commit_string(hic, ch);
return true;
}
if (hic->buffer.jongseong) {
if (hangul_is_choseong(ch)) {
jong = hangul_ic_choseong_to_jongseong(hic, ch);
combined = hangul_ic_combine(hic, hic->buffer.jongseong, jong);
if (hangul_is_jongseong(combined)) {
if (!hangul_ic_push(hic, combined)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else if (hangul_is_jungseong(ch)) {
ucschar pop, peek;
pop = hangul_ic_pop(hic);
peek = hangul_ic_peek(hic);
if (hangul_is_jongseong(peek)) {
ucschar choseong = hangul_jongseong_get_diff(peek,
hic->buffer.jongseong);
if (choseong == 0) {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
hic->buffer.jongseong = peek;
hangul_ic_save_commit_string(hic);
hangul_ic_push(hic, choseong);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hic->buffer.jongseong = 0;
hangul_ic_save_commit_string(hic);
hangul_ic_push(hic, hangul_jongseong_to_choseong(pop));
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
goto flush;
}
} else if (hic->buffer.jungseong) {
if (hangul_is_choseong(ch)) {
if (hic->buffer.choseong) {
jong = hangul_ic_choseong_to_jongseong(hic, ch);
if (hangul_is_jongseong(jong)) {
if (!hangul_ic_push(hic, jong)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
if (hic->option_auto_reorder) {
/* kr 처럼 자모가 역순인 경우 처리 */
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else if (hangul_is_jungseong(ch)) {
combined = hangul_ic_combine(hic, hic->buffer.jungseong, ch);
if (hangul_is_jungseong(combined)) {
if (!hangul_ic_push(hic, combined)) {
return false;
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
goto flush;
}
} else if (hic->buffer.choseong) {
if (hangul_is_choseong(ch)) {
combined = hangul_ic_combine(hic, hic->buffer.choseong, ch);
/* 초성을 입력한 combine 함수에서 종성이 나오게 된다면
* 이전 초성도 종성으로 바꿔 주는 편이 나머지 처리에 편리하다.
* 이 기능은 MS IME 호환기능으로 ㄳ을 입력하는데 사용한다. */
if (hangul_is_jongseong(combined)) {
hic->buffer.choseong = 0;
ucschar pop = hangul_ic_pop(hic);
ucschar jong = hangul_choseong_to_jongseong(pop);
hangul_ic_push(hic, jong);
}
if (!hangul_ic_push(hic, combined)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
hangul_ic_save_preedit_string(hic);
return true;
flush:
hangul_ic_flush_internal(hic);
return false;
}
static bool
hangul_ic_process_jaso(HangulInputContext *hic, ucschar ch)
{
if (hangul_is_choseong(ch)) {
if (hic->buffer.choseong == 0) {
if (hic->option_auto_reorder) {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
if (hangul_ic_has_jungseong(hic) || hangul_ic_has_jongseong(hic)) {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
}
} else {
ucschar choseong = 0;
if (hangul_is_choseong(hangul_ic_peek(hic))) {
choseong = hangul_ic_combine(hic, hic->buffer.choseong, ch);
}
if (choseong) {
if (!hangul_ic_push(hic, choseong)) {
if (!hangul_ic_push(hic, choseong)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else if (hangul_is_jungseong(ch)) {
if (hic->buffer.jungseong == 0) {
if (hic->option_auto_reorder) {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
if (hangul_ic_has_jongseong(hic)) {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
}
} else {
ucschar jungseong = 0;
if (hangul_is_jungseong(hangul_ic_peek(hic))) {
jungseong = hangul_ic_combine(hic, hic->buffer.jungseong, ch);
}
if (jungseong) {
if (!hangul_ic_push(hic, jungseong)) {
if (!hangul_ic_push(hic, jungseong)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
}
} else if (hangul_is_jongseong(ch)) {
if (hic->buffer.jongseong == 0) {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
ucschar jongseong = 0;
if (hangul_is_jongseong(hangul_ic_peek(hic))) {
jongseong = hangul_ic_combine(hic, hic->buffer.jongseong, ch);
}
if (jongseong) {
if (!hangul_ic_push(hic, jongseong)) {
if (!hangul_ic_push(hic, jongseong)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
}
} else if (ch > 0) {
hangul_ic_save_commit_string(hic);
hangul_ic_append_commit_string(hic, ch);
} else {
hangul_ic_save_commit_string(hic);
return false;
}
hangul_ic_save_preedit_string(hic);
return true;
}
static bool
hangul_ic_process_romaja(HangulInputContext *hic, int ascii, ucschar ch)
{
ucschar jong;
ucschar combined;
if (!hangul_is_jamo(ch) && ch > 0) {
hangul_ic_save_commit_string(hic);
hangul_ic_append_commit_string(hic, ch);
return true;
}
if (isupper(ascii)) {
hangul_ic_save_commit_string(hic);
}
if (hic->buffer.jongseong) {
if (ascii == 'x' || ascii == 'X') {
ch = 0x110c;
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else if (hangul_is_choseong(ch) || hangul_is_jongseong(ch)) {
if (hangul_is_jongseong(ch))
jong = ch;
else
jong = hangul_ic_choseong_to_jongseong(hic, ch);
combined = hangul_ic_combine(hic, hic->buffer.jongseong, jong);
if (hangul_is_jongseong(combined)) {
if (!hangul_ic_push(hic, combined)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else if (hangul_is_jungseong(ch)) {
if (hic->buffer.jongseong == 0x11bc) {
hangul_ic_save_commit_string(hic);
hic->buffer.choseong = 0x110b;
hangul_ic_push(hic, ch);
} else {
ucschar pop, peek;
pop = hangul_ic_pop(hic);
peek = hangul_ic_peek(hic);
if (hangul_is_jungseong(peek)) {
if (pop == 0x11aa) {
hic->buffer.jongseong = 0x11a8;
pop = 0x11ba;
} else {
hic->buffer.jongseong = 0;
}
hangul_ic_save_commit_string(hic);
hangul_ic_push(hic, hangul_jongseong_to_choseong(pop));
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
ucschar choseong = 0, jongseong = 0;
hangul_jongseong_decompose(hic->buffer.jongseong,
&jongseong, &choseong);
hic->buffer.jongseong = jongseong;
hangul_ic_save_commit_string(hic);
hangul_ic_push(hic, choseong);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else {
goto flush;
}
} else if (hic->buffer.jungseong) {
if (hangul_is_choseong(ch)) {
if (hic->buffer.choseong) {
jong = hangul_ic_choseong_to_jongseong(hic, ch);
if (hangul_is_jongseong(jong)) {
if (!hangul_ic_push(hic, jong)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
hangul_ic_save_commit_string(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else if (hangul_is_jungseong(ch)) {
combined = hangul_ic_combine(hic, hic->buffer.jungseong, ch);
if (hangul_is_jungseong(combined)) {
if (!hangul_ic_push(hic, combined)) {
return false;
}
} else {
hangul_ic_save_commit_string(hic);
hic->buffer.choseong = 0x110b;
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else if (hangul_is_jongseong(ch)) {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
} else {
goto flush;
}
} else if (hic->buffer.choseong) {
if (hangul_is_choseong(ch)) {
combined = hangul_ic_combine(hic, hic->buffer.choseong, ch);
if (combined == 0) {
hic->buffer.jungseong = 0x1173;
hangul_ic_flush_internal(hic);
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
if (!hangul_ic_push(hic, combined)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else if (hangul_is_jongseong(ch)) {
hic->buffer.jungseong = 0x1173;
hangul_ic_save_commit_string(hic);
if (ascii == 'x' || ascii == 'X')
ch = 0x110c;
if (!hangul_ic_push(hic, ch)) {
return false;
}
} else {
if (!hangul_ic_push(hic, ch)) {
if (!hangul_ic_push(hic, ch)) {
return false;
}
}
}
} else {
if (ascii == 'x' || ascii == 'X') {
ch = 0x110c;
}
if (!hangul_ic_push(hic, ch)) {
return false;
} else {
if (hic->buffer.choseong == 0 && hic->buffer.jungseong != 0)
hic->buffer.choseong = 0x110b;
}
}
hangul_ic_save_preedit_string(hic);
return true;
flush:
hangul_ic_flush_internal(hic);
return false;
}
/**
* @ingroup hangulic
* @brief 키 입력을 처리하여 실제로 한글 조합을 하는 함수
* @param hic @ref HangulInputContext 오브젝트
* @param ascii 키 이벤트
* @return @ref HangulInputContext 가 이 키를 사용했으면 true,
* 사용하지 않았으면 false
*
* ascii 값으로 주어진 키 이벤트를 받아서 내부의 한글 조합 상태를
* 변화시키고, preedit, commit 스트링을 저장한다.
*
* libhangul의 키 이벤트 프로세스는 ASCII 코드 값을 기준으로 처리한다.
* 이 키 값은 US Qwerty 자판 배열에서의 키 값에 해당한다.
* 따라서 유럽어 자판을 사용하는 경우에는 해당 키의 ASCII 코드를 직접
* 전달하면 안되고, 그 키가 US Qwerty 자판이었을 경우에 발생할 수 있는
* ASCII 코드 값을 주어야 한다.
* 또한 ASCII 코드 이므로 Shift 상태는 대문자로 전달이 된다.
* Capslock이 눌린 경우에는 대소문자를 뒤바꾸어 보내주지 않으면
* 마치 Shift가 눌린 것 처럼 동작할 수 있으므로 주의한다.
* preedit, commit 스트링은 hangul_ic_get_preedit_string(),
* hangul_ic_get_commit_string() 함수를 이용하여 구할 수 있다.
*
* 이 함수의 사용법에 대한 설명은 @ref hangulicusage 부분을 참조한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시킨다.
*/
bool
hangul_ic_process(HangulInputContext *hic, int ascii)
{
ucschar c;
if (hic == NULL)
return false;
hic->preedit_string[0] = 0;
hic->commit_string[0] = 0;
c = hangul_keyboard_map_to_char(hic->keyboard, hic->tableid, ascii);
if (hic->on_translate != NULL)
hic->on_translate(hic, ascii, &c, hic->on_translate_data);
if (ascii == '\b') {
return hangul_ic_backspace(hic);
}
int type = hangul_keyboard_get_type(hic->keyboard);
switch (type) {
case HANGUL_KEYBOARD_TYPE_JASO:
case HANGUL_KEYBOARD_TYPE_JASO_YET:
return hangul_ic_process_jaso(hic, c);
case HANGUL_KEYBOARD_TYPE_ROMAJA:
return hangul_ic_process_romaja(hic, ascii, c);
default:
return hangul_ic_process_jamo(hic, c);
}
}
/**
* @ingroup hangulic
* @brief 현재 상태의 preedit string을 구하는 함수
* @param hic preedit string을 구하고자하는 입력 상태 object
* @return UCS4 preedit 스트링, 이 스트링은 @a hic 내부의 데이터이므로
* 수정하거나 free해서는 안된다.
*
* 이 함수는 @a hic 내부의 현재 상태의 preedit string을 리턴한다.
* 따라서 hic가 다른 키 이벤트를 처리하고 나면 그 내용이 바뀔 수 있다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
const ucschar*
hangul_ic_get_preedit_string(HangulInputContext *hic)
{
if (hic == NULL)
return NULL;
return hic->preedit_string;
}
/**
* @ingroup hangulic
* @brief 현재 상태의 commit string을 구하는 함수
* @param hic commit string을 구하고자하는 입력 상태 object
* @return UCS4 commit 스트링, 이 스트링은 @a hic 내부의 데이터이므로
* 수정하거나 free해서는 안된다.
*
* 이 함수는 @a hic 내부의 현재 상태의 commit string을 리턴한다.
* 따라서 hic가 다른 키 이벤트를 처리하고 나면 그 내용이 바뀔 수 있다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
const ucschar*
hangul_ic_get_commit_string(HangulInputContext *hic)
{
if (hic == NULL)
return NULL;
return hic->commit_string;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 를 초기상태로 되돌리는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
*
* 이 함수는 @a hic가 가리키는 @ref HangulInputContext 의 상태를
* 처음 상태로 되돌린다. preedit 스트링, commit 스트링, flush 스트링이
* 없어지고, 입력되었던 키에 대한 기록이 없어진다.
* 영어 상태로 바뀌는 것이 아니다.
*
* 비교: hangul_ic_flush()
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시킨다.
*/
void
hangul_ic_reset(HangulInputContext *hic)
{
if (hic == NULL)
return;
hic->preedit_string[0] = 0;
hic->commit_string[0] = 0;
hic->flushed_string[0] = 0;
hangul_buffer_clear(&hic->buffer);
}
/* append current preedit to the commit buffer.
* this function does not clear previously made commit string. */
static void
hangul_ic_flush_internal(HangulInputContext *hic)
{
hic->preedit_string[0] = 0;
hangul_ic_save_commit_string(hic);
hangul_buffer_clear(&hic->buffer);
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 의 입력 상태를 완료하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
* @return 조합 완료된 스트링, 스트링의 길이가 0이면 조합 완료된 스트링이
* 없는 것
*
* 이 함수는 @a hic가 가리키는 @ref HangulInputContext 의 입력 상태를 완료한다.
* 조합중이던 스트링을 완성하여 리턴한다. 그리고 입력 상태가 초기 상태로
* 되돌아 간다. 조합중이던 글자를 강제로 commit하고 싶을때 사용하는 함수다.
* 보통의 경우 입력 framework에서 focus가 나갈때 이 함수를 불러서 마지막
* 상태를 완료해야 조합중이던 글자를 잃어버리지 않게 된다.
*
* 비교: hangul_ic_reset()
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시킨다.
*/
const ucschar*
hangul_ic_flush(HangulInputContext *hic)
{
if (hic == NULL)
return NULL;
// get the remaining string and clear the buffer
hic->preedit_string[0] = 0;
hic->commit_string[0] = 0;
hic->flushed_string[0] = 0;
if (hic->output_mode == HANGUL_OUTPUT_JAMO) {
hangul_buffer_get_jamo_string(&hic->buffer, hic->flushed_string,
N_ELEMENTS(hic->flushed_string));
} else {
hangul_buffer_get_string(&hic->buffer, hic->flushed_string,
N_ELEMENTS(hic->flushed_string));
}
hangul_buffer_clear(&hic->buffer);
return hic->flushed_string;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 가 backspace 키를 처리하도록 하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
* @return @a hic가 키를 사용했으면 true, 사용하지 않았으면 false
*
* 이 함수는 @a hic가 가리키는 @ref HangulInputContext 의 조합중이던 글자를
* 뒤에서부터 하나 지우는 기능을 한다. backspace 키를 눌렀을 때 발생하는
* 동작을 한다. 따라서 이 함수를 부르고 나면 preedit string이 바뀌므로
* 반드시 업데이트를 해야 한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시킨다.
*/
bool
hangul_ic_backspace(HangulInputContext *hic)
{
int ret;
if (hic == NULL)
return false;
hic->preedit_string[0] = 0;
hic->commit_string[0] = 0;
ret = hangul_buffer_backspace(&hic->buffer);
if (ret)
hangul_ic_save_preedit_string(hic);
return ret;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 가 조합중인 글자를 가지고 있는지 확인하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
*
* @ref HangulInputContext 가 조합중인 글자가 있으면 true를 리턴한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
bool
hangul_ic_is_empty(HangulInputContext *hic)
{
return hangul_buffer_is_empty(&hic->buffer);
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 가 조합중인 초성을 가지고 있는지 확인하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
*
* @ref HangulInputContext 가 조합중인 글자가 초성이 있으면 true를 리턴한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
bool
hangul_ic_has_choseong(HangulInputContext *hic)
{
return hangul_buffer_has_choseong(&hic->buffer);
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 가 조합중인 중성을 가지고 있는지 확인하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
*
* @ref HangulInputContext 가 조합중인 글자가 중성이 있으면 true를 리턴한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
bool
hangul_ic_has_jungseong(HangulInputContext *hic)
{
return hangul_buffer_has_jungseong(&hic->buffer);
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 가 조합중인 종성을 가지고 있는지 확인하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
*
* @ref HangulInputContext 가 조합중인 글자가 종성이 있으면 true를 리턴한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 상태를 변화 시키지 않는다.
*/
bool
hangul_ic_has_jongseong(HangulInputContext *hic)
{
return hangul_buffer_has_jongseong(&hic->buffer);
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 의 조합 옵션을 확인하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
* @param option @ref HangulInputContext 의 조합 처리 옵션.
* @ref hangul_ic_set_option 에서 사용 가능한 옵션을 확인하라.
*
* @return @ref HangulInputContext 에 설정된 옵션값을 리턴한다.
*/
bool
hangul_ic_get_option(HangulInputContext* hic, int option)
{
switch (option) {
case HANGUL_IC_OPTION_AUTO_REORDER:
return hic->option_auto_reorder;
case HANGUL_IC_OPTION_COMBI_ON_DOUBLE_STROKE:
return hic->option_combi_on_double_stroke;
case HANGUL_IC_OPTION_NON_CHOSEONG_COMBI:
return hic->option_non_choseong_combi;
}
return false;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 의 조합 옵션을 설정하는 함수
* @param hic @ref HangulInputContext 를 가리키는 포인터
* @param option @ref HangulInputContext 의 조합 처리 옵션.
* 아래와 같은 옵션이 선택 가능하다.
* - HANGUL_IC_OPTION_AUTO_REORDER
* - 자동 순서 교정 옵션. 모아치기를 위해서는 켜야 한다.
* 예) true면 ㅏ+ㄱ -> 가 로 완성시켜 줌.
* - HANGUL_IC_OPTION_COMBI_ON_DOUBLE_STROKE
* - 두벌식 자판에서 자음 연타로 된소리로 조합하는 옵션.
* 원래 자판이 자음 연타로 동작하는 세벌식이나 옛한글
* 자판에서는 옵션이 동작하지 않는다.
* MS IME와 호환을 위해서 사용.
* 예) true면 ㄱ+ㄱ -> ㄲ 으로 조합시켜 줌.
* - HANGUL_IC_OPTION_NON_CHOSEONG_COMBI
* - 두벌식 자판에서 초성에 없는 겹자음을 조합허용하는 옵션.
* 두벌식 자판 이외에는 옵션이 동작하지 않는다.
* MS IME와 호환을 위해서 사용.
* 예) true면 ㄱ+ㅅ -> ㄳ 으로 조합시켜 줌.
* @param value 설정하고자 하는 값, true 또는 false
*/
void
hangul_ic_set_option(HangulInputContext* hic, int option, bool value)
{
switch (option) {
case HANGUL_IC_OPTION_AUTO_REORDER:
hic->option_auto_reorder = value;
break;
case HANGUL_IC_OPTION_COMBI_ON_DOUBLE_STROKE:
hic->option_combi_on_double_stroke = value;
break;
case HANGUL_IC_OPTION_NON_CHOSEONG_COMBI:
hic->option_non_choseong_combi = value;
break;
}
}
void
hangul_ic_set_output_mode(HangulInputContext *hic, int mode)
{
if (hic == NULL)
return;
if (!hic->use_jamo_mode_only)
hic->output_mode = mode;
}
void
hangul_ic_connect_translate (HangulInputContext* hic,
HangulOnTranslate callback,
void* user_data)
{
if (hic != NULL) {
hic->on_translate = callback;
hic->on_translate_data = user_data;
}
}
void
hangul_ic_connect_transition(HangulInputContext* hic,
HangulOnTransition callback,
void* user_data)
{
if (hic != NULL) {
hic->on_transition = callback;
hic->on_transition_data = user_data;
}
}
void hangul_ic_connect_callback(HangulInputContext* hic, const char* event,
void* callback, void* user_data)
{
if (hic == NULL || event == NULL)
return;
if (strcasecmp(event, "translate") == 0) {
*(void**)(&hic->on_translate) = callback;
hic->on_translate_data = user_data;
} else if (strcasecmp(event, "transition") == 0) {
*(void**)(&hic->on_transition) = callback;
hic->on_transition_data = user_data;
}
}
void
hangul_ic_set_keyboard(HangulInputContext *hic, const HangulKeyboard* keyboard)
{
if (hic == NULL)
return;
hic->keyboard = keyboard;
hic->tableid = 0;
}
void
hangul_ic_switch_keyboard_table(HangulInputContext *hic, int tableid)
{
if (hic == NULL)
return;
hic->tableid = tableid;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 의 자판 배열을 바꾸는 함수
* @param hic @ref HangulInputContext 오브젝트
* @param id 선택하고자 하는 자판, 아래와 같은 값을 선택할 수 있다.
* @li "2" @ref layout_2 자판
* @li "2y" @ref layout_2y 자판
* @li "3f" @ref layout_3f 자판
* @li "39" @ref layout_390 자판
* @li "3s" @ref layout_3s 자판
* @li "3y" @ref layout_3y 자판
* @li "32" @ref layout_32 자판
* @li "ro" @ref layout_ro 자판
*
* libhangul이 지원하는 자판에 대한 정보는 @ref hangulkeyboards 페이지를
* 참조하라.
* @return 없음
*
* 이 함수는 @ref HangulInputContext 의 자판을 @a id로 지정된 것으로 변경한다.
*
* @remarks 이 함수는 @ref HangulInputContext 의 내부 조합 상태에는 영향을
* 미치지 않는다. 따라서 입력 중간에 자판을 변경하더라도 조합 상태는 유지된다.
*/
void
hangul_ic_select_keyboard(HangulInputContext *hic, const char* id)
{
const HangulKeyboard* keyboard;
if (hic == NULL)
return;
if (id == NULL)
id = "2";
keyboard = hangul_keyboard_list_get_keyboard(id);
hangul_ic_set_keyboard(hic, keyboard);
}
void
hangul_ic_set_combination(HangulInputContext *hic,
const HangulCombination* combination)
{
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 오브젝트를 생성한다.
* @param keyboard 사용하고자 하는 키보드, 사용 가능한 값에 대해서는
* hangul_ic_select_keyboard() 함수 설명을 참조한다.
* @return 새로 생성된 @ref HangulInputContext 에 대한 포인터
*
* 이 함수는 한글 조합 기능을 제공하는 @ref HangulInputContext 오브젝트를
* 생성한다. 생성할때 지정한 자판은 나중에 hangul_ic_select_keyboard() 함수로
* 다른 자판으로 변경이 가능하다.
* 더이상 사용하지 않을 때에는 hangul_ic_delete() 함수로 삭제해야 한다.
*/
HangulInputContext*
hangul_ic_new(const char* keyboard)
{
HangulInputContext *hic;
hic = malloc(sizeof(HangulInputContext));
if (hic == NULL)
return NULL;
hic->keyboard = NULL;
hic->tableid = 0;
hic->preedit_string[0] = 0;
hic->commit_string[0] = 0;
hic->flushed_string[0] = 0;
hic->on_translate = NULL;
hic->on_translate_data = NULL;
hic->on_transition = NULL;
hic->on_transition_data = NULL;
hic->use_jamo_mode_only = FALSE;
hic->option_auto_reorder = false;
hic->option_combi_on_double_stroke = false;
hic->option_non_choseong_combi = true;
hangul_ic_set_output_mode(hic, HANGUL_OUTPUT_SYLLABLE);
hangul_ic_select_keyboard(hic, keyboard);
hangul_buffer_clear(&hic->buffer);
return hic;
}
/**
* @ingroup hangulic
* @brief @ref HangulInputContext 를 삭제하는 함수
* @param hic @ref HangulInputContext 오브젝트
*
* @a hic가 가리키는 @ref HangulInputContext 오브젝트의 메모리를 해제한다.
* hangul_ic_new() 함수로 생성된 모든 @ref HangulInputContext 오브젝트는
* 이 함수로 메모리해제를 해야 한다.
* 메모리 해제 과정에서 상태 변화는 일어나지 않으므로 마지막 입력된
* 조합중이던 내용은 사라지게 된다.
*/
void
hangul_ic_delete(HangulInputContext *hic)
{
if (hic == NULL)
return;
free(hic);
}
/** @deprecated 이 함수 대신 @ref hangul_keyboard_list_get_count 를 사용하라 */
unsigned int
hangul_ic_get_n_keyboards()
{
return hangul_keyboard_list_get_count();
}
/** @deprecated 이 함수 대신 @ref hangul_keyboard_list_get_keyboard_id 를 사용하라 */
const char*
hangul_ic_get_keyboard_id(unsigned index_)
{
return hangul_keyboard_list_get_keyboard_id(index_);
}
/** @deprecated 이 함수 대신 @ref hangul_keyboard_list_get_keyboard_name 을 사용하라 */
const char*
hangul_ic_get_keyboard_name(unsigned index_)
{
return hangul_keyboard_list_get_keyboard_name(index_);
}
/**
* @ingroup hangulic
* @brief 주어진 hic가 transliteration method인지 판별
* @param hic 상태를 알고자 하는 HangulInputContext 포인터
* @return hic가 transliteration method인 경우 true를 리턴, 아니면 false
*
* 이 함수는 @a hic 가 transliteration method인지 판별하는 함수다.
* 이 함수가 false를 리턴할 경우에는 process 함수에 keycode를 넘기기 전에
* 키보드 자판 배열에 독립적인 값으로 변환한 후 넘겨야 한다.
* 그렇지 않으면 유럽어 자판과 한국어 자판을 같이 쓸때 한글 입력이 제대로
* 되지 않는다.
*/
bool
hangul_ic_is_transliteration(HangulInputContext *hic)
{
int type;
if (hic == NULL)
return false;
type = hangul_keyboard_get_type(hic->keyboard);
if (type == HANGUL_KEYBOARD_TYPE_ROMAJA)
return true;
return false;
}
/**
* @ingroup hangulic
* @brief libhangul을 초기화 하는 함수.
* @param user_defined_keyboard_path 한글 키보드 파일을 읽을 디렉토리 패스.
* PATH 환경 변수와 같이 :으로 구분하여 여러개를 지정할 수 있다.
* NULL을 주면 내장 기본값을 사용한다.
*
* libhangul의 함수를 사용하기 전에 호출해야 한다.
*/
int
hangul_init(const char* user_defined_keyboard_path)
{
int res;
res = hangul_keyboard_list_init(user_defined_keyboard_path);
return res;
}
/**
* @ingroup hangulic
* @brief libhangul에서 사용한 리소스를 해제하는 함수.
*
* libhangul의 함수의 사용이 끝나면 호출해야 한다.
*/
int
hangul_fini()
{
int res;
res = hangul_keyboard_list_fini();
return res;
}
|