summaryrefslogtreecommitdiffstats
path: root/src/storage/pinyin_custom2.h
blob: 320e846ae7f827420a96d28f7e68e8f031762259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* 
 *  libpinyin
 *  Library to deal with pinyin.
 *  
 *  Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
 *  
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef PINYIN_CUSTOM2_H
#define PINYIN_CUSTOM2_H

#include <glib.h>

G_BEGIN_DECLS

/**
 * PinyinTableFlag:
 */
typedef enum{
    IS_PINYIN = 1U << 1,
    IS_ZHUYIN = 1U << 2,
    PINYIN_INCOMPLETE = 1U << 3,
    ZHUYIN_INCOMPLETE = 1U << 4,
    USE_TONE = 1U << 5,
    FORCE_TONE = 1U << 6,
    USE_DIVIDED_TABLE = 1U << 7,
    USE_RESPLIT_TABLE = 1U << 8,
    DYNAMIC_ADJUST = 1U << 9
} PinyinTableFlag;

/**
 * PinyinAmbiguity2:
 *
 * The enums of pinyin ambiguities.
 *
 */
typedef enum{
    PINYIN_AMB_C_CH = 1U << 10,
    PINYIN_AMB_S_SH = 1U << 11,
    PINYIN_AMB_Z_ZH = 1U << 12,
    PINYIN_AMB_F_H = 1U << 13,
    PINYIN_AMB_G_K = 1U << 14,
    PINYIN_AMB_L_N = 1U << 15,
    PINYIN_AMB_L_R = 1U << 16,
    PINYIN_AMB_AN_ANG = 1U << 17,
    PINYIN_AMB_EN_ENG = 1U << 18,
    PINYIN_AMB_IN_ING = 1U << 19,
    PINYIN_AMB_ALL = 0x3FFU << 10
} PinyinAmbiguity2;

/**
 * PinyinCorrection2:
 *
 * The enums of pinyin corrections.
 *
 */

typedef enum{
    PINYIN_CORRECT_GN_NG = 1U << 21,
    PINYIN_CORRECT_MG_NG = 1U << 22,
    PINYIN_CORRECT_IOU_IU = 1U << 23,
    PINYIN_CORRECT_UEI_UI = 1U << 24,
    PINYIN_CORRECT_UEN_UN = 1U << 25,
    PINYIN_CORRECT_UE_VE = 1U << 26,
    PINYIN_CORRECT_V_U = 1U << 27,
    PINYIN_CORRECT_ON_ONG = 1U << 28,
    PINYIN_CORRECT_ALL = 0xFFU << 21
} PinyinCorrection2;

/**
 * ZhuyinCorrection2:
 *
 * The enums of zhuyin corrections.
 *
 */
typedef enum{
    ZHUYIN_CORRECT_HSU = 1U << 29,
    ZHUYIN_CORRECT_ETEN26 = 1U << 30,
    ZHUYIN_CORRECT_SHUFFLE = 1U << 31,
    ZHUYIN_CORRECT_ALL = 0x7U << 29
} ZhuyinCorrection2;

/**
 * @brief enums of Full Pinyin Schemes.
 */
typedef enum{
    FULL_PINYIN_HANYU = 1,
    FULL_PINYIN_LUOMA = 2,
    FULL_PINYIN_SECONDARY_ZHUYIN = 3,
    FULL_PINYIN_DEFAULT = FULL_PINYIN_HANYU
} FullPinyinScheme;

/**
 * @brief enums of Double Pinyin Schemes.
 */
typedef enum{
    DOUBLE_PINYIN_ZRM        = 1,
    DOUBLE_PINYIN_MS         = 2,
    DOUBLE_PINYIN_ZIGUANG    = 3,
    DOUBLE_PINYIN_ABC        = 4,
    DOUBLE_PINYIN_PYJJ       = 5,
    DOUBLE_PINYIN_XHE        = 6,
    DOUBLE_PINYIN_CUSTOMIZED = 30,        /* for user's keyboard */
    DOUBLE_PINYIN_DEFAULT    = DOUBLE_PINYIN_MS
} DoublePinyinScheme;

/**
 * @brief enums of Zhuyin Schemes.
 */
typedef enum{
    ZHUYIN_STANDARD = 1,
    ZHUYIN_HSU      = 2,
    ZHUYIN_IBM      = 3,
    ZHUYIN_GINYIEH  = 4,
    ZHUYIN_ETEN     = 5,
    ZHUYIN_ETEN26   = 6,
    ZHUYIN_STANDARD_DVORAK = 7,
    ZHUYIN_HSU_DVORAK = 8,
    ZHUYIN_DACHEN_CP26 = 9,
    ZHUYIN_DEFAULT  = ZHUYIN_STANDARD
} ZhuyinScheme;

G_END_DECLS

#endif