summaryrefslogtreecommitdiffstats
path: root/src/storage/zhuyin_custom2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/zhuyin_custom2.h')
-rw-r--r--src/storage/zhuyin_custom2.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/storage/zhuyin_custom2.h b/src/storage/zhuyin_custom2.h
new file mode 100644
index 0000000..aa6dfb7
--- /dev/null
+++ b/src/storage/zhuyin_custom2.h
@@ -0,0 +1,95 @@
+/*
+ * libzhuyin
+ * Library to deal with zhuyin.
+ *
+ * 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 2 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef ZHUYIN_CUSTOM2_H
+#define ZHUYIN_CUSTOM2_H
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+/**
+ * PinyinTableFlag:
+ */
+enum PinyinTableFlag{
+ IS_BOPOMOFO = 1U << 1,
+ IS_PINYIN = 1U << 2,
+ PINYIN_INCOMPLETE = 1U << 3,
+ CHEWING_INCOMPLETE = 1U << 4,
+ USE_TONE = 1U << 5,
+ HSU_CORRECT = 1U << 6,
+ ETEN26_CORRECT = 1U << 7,
+ DYNAMIC_ADJUST = 1U << 8,
+ CHEWING_CORRECT_ALL = HSU_CORRECT|ETEN26_CORRECT
+};
+
+/**
+ * PinyinAmbiguity2:
+ *
+ * The enums of pinyin ambiguities.
+ *
+ */
+enum PinyinAmbiguity2{
+ PINYIN_AMB_C_CH = 1U << 9,
+ PINYIN_AMB_S_SH = 1U << 10,
+ PINYIN_AMB_Z_ZH = 1U << 11,
+ PINYIN_AMB_F_H = 1U << 12,
+ PINYIN_AMB_G_K = 1U << 13,
+ PINYIN_AMB_L_N = 1U << 14,
+ PINYIN_AMB_L_R = 1U << 15,
+ PINYIN_AMB_AN_ANG = 1U << 16,
+ PINYIN_AMB_EN_ENG = 1U << 17,
+ PINYIN_AMB_IN_ING = 1U << 18,
+ PINYIN_AMB_ALL = 0x3FFU << 9
+};
+
+/**
+ * @brief enums of Pinyin Schemes.
+ */
+
+enum FullPinyinScheme
+{
+ FULL_PINYIN_HANYU = 1,
+ FULL_PINYIN_LUOMA = 2,
+ FULL_PINYIN_SECONDARY_BOPOMOFO = 3,
+ FULL_PINYIN_DEFAULT = FULL_PINYIN_HANYU
+};
+
+/**
+ * @brief enums of Chewing Schemes.
+ */
+enum ChewingScheme
+{
+ CHEWING_STANDARD = 1,
+ CHEWING_HSU = 2,
+ CHEWING_IBM = 3,
+ CHEWING_GINYIEH = 4,
+ CHEWING_ETEN = 5,
+ CHEWING_ETEN26 = 6,
+ CHEWING_STANDARD_DVORAK = 7,
+ CHEWING_HSU_DVORAK = 8,
+ CHEWING_DACHEN_CP26 = 9,
+ CHEWING_DEFAULT = CHEWING_STANDARD
+};
+
+G_END_DECLS
+
+#endif