Allow libpinyin to build in cross compile mode.
[platform/upstream/libpinyin.git] / src / storage / pinyin_custom2.h
1 /* 
2  *  libpinyin
3  *  Library to deal with pinyin.
4  *  
5  *  Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
6  *  
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *  
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20  */
21
22 #ifndef PINYIN_CUSTOM2_H
23 #define PINYIN_CUSTOM2_H
24
25 #include <glib.h>
26
27 G_BEGIN_DECLS
28
29 /**
30  * PinyinTableFlag:
31  */
32 enum PinyinTableFlag{
33     IS_CHEWING = 1U << 1,
34     IS_PINYIN = 1U << 2,
35     PINYIN_INCOMPLETE = 1U << 3,
36     CHEWING_INCOMPLETE = 1U << 4,
37     USE_TONE = 1U << 5,
38     USE_DIVIDED_TABLE = 1U << 6,
39     USE_RESPLIT_TABLE = 1U << 7,
40     DYNAMIC_ADJUST = 1U << 8
41 };
42
43 /**
44  * PinyinAmbiguity2:
45  *
46  * The enums of pinyin ambiguities.
47  *
48  */
49 enum PinyinAmbiguity2{
50     PINYIN_AMB_C_CH = 1U << 9,
51     PINYIN_AMB_S_SH = 1U << 10,
52     PINYIN_AMB_Z_ZH = 1U << 11,
53     PINYIN_AMB_F_H = 1U << 12,
54     PINYIN_AMB_G_K = 1U << 13,
55     PINYIN_AMB_L_N = 1U << 14,
56     PINYIN_AMB_L_R = 1U << 15,
57     PINYIN_AMB_AN_ANG = 1U << 16,
58     PINYIN_AMB_EN_ENG = 1U << 17,
59     PINYIN_AMB_IN_ING = 1U << 18,
60     PINYIN_AMB_ALL = 0x3FFU << 9
61 };
62
63 /**
64  * PinyinCorrection2:
65  *
66  * The enums of pinyin corrections.
67  *
68  */
69
70 enum PinyinCorrection2{
71     PINYIN_CORRECT_GN_NG = 1U << 21,
72     PINYIN_CORRECT_MG_NG = 1U << 22,
73     PINYIN_CORRECT_IOU_IU = 1U << 23,
74     PINYIN_CORRECT_UEI_UI = 1U << 24,
75     PINYIN_CORRECT_UEN_UN = 1U << 25,
76     PINYIN_CORRECT_UE_VE = 1U << 26,
77     PINYIN_CORRECT_V_U = 1U << 27,
78     PINYIN_CORRECT_ON_ONG = 1U << 28,
79     PINYIN_CORRECT_ALL = 0xFFU << 21
80 };
81
82 /**
83  * @brief enums of Double Pinyin Schemes.
84  */
85 enum DoublePinyinScheme
86 {
87     DOUBLE_PINYIN_ZRM        = 1,
88     DOUBLE_PINYIN_MS         = 2,
89     DOUBLE_PINYIN_ZIGUANG    = 3,
90     DOUBLE_PINYIN_ABC        = 4,
91     DOUBLE_PINYIN_PYJJ       = 6,
92     DOUBLE_PINYIN_XHE        = 7,
93     DOUBLE_PINYIN_CUSTOMIZED = 30,        /* for user's keyboard */
94     DOUBLE_PINYIN_DEFAULT    = DOUBLE_PINYIN_MS
95 };
96
97 /**
98  * @brief enums of Chewing Schemes.
99  */
100 enum ChewingScheme
101 {
102     CHEWING_STANDARD = 1,
103     CHEWING_IBM      = 2,
104     CHEWING_GINYIEH  = 3,
105     CHEWING_ETEN     = 4,
106     CHEWING_DEFAULT  = CHEWING_STANDARD
107 };
108
109 G_END_DECLS
110
111 #endif