remove PYBopomofo.h
authorPeng Wu <alexepico@gmail.com>
Fri, 1 Jun 2012 05:03:05 +0000 (13:03 +0800)
committerPeng Wu <alexepico@gmail.com>
Fri, 1 Jun 2012 05:03:05 +0000 (13:03 +0800)
src/Makefile.am
src/PYBopomofo.h [deleted file]

index 0728067..704a39c 100644 (file)
@@ -54,7 +54,6 @@ ibus_engine_libpinyin_c_sources = \
        PYSpecialPhraseTable.cc \
        $(NULL)
 ibus_engine_libpinyin_h_sources = \
-       PYBopomofo.h \
        PYBus.h \
        PYConfig.h \
        PYEditor.h \
diff --git a/src/PYBopomofo.h b/src/PYBopomofo.h
deleted file mode 100644 (file)
index abd9813..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-/* vim:set et ts=4 sts=4:
- *
- * ibus-pinyin - The Chinese PinYin engine for IBus
- *
- * Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
- * Copyright (c) 2010 BYVoid <byvoid1@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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-#ifndef __PY_BOPOMOFO_H_
-#define __PY_BOPOMOFO_H_
-
-#define MAX_BOPOMOFO_LEN (4)
-
-#define BOPOMOFO_ZERO       (0)
-#define BOPOMOFO_B          (1)
-#define BOPOMOFO_P          (2)
-#define BOPOMOFO_M          (3)
-#define BOPOMOFO_F          (4)
-#define BOPOMOFO_D          (5)
-#define BOPOMOFO_T          (6)
-#define BOPOMOFO_N          (7)
-#define BOPOMOFO_L          (8)
-#define BOPOMOFO_G          (9)
-#define BOPOMOFO_K          (10)
-#define BOPOMOFO_H          (11)
-#define BOPOMOFO_J          (12)
-#define BOPOMOFO_Q          (13)
-#define BOPOMOFO_X          (14)
-#define BOPOMOFO_ZH         (15)
-#define BOPOMOFO_CH         (16)
-#define BOPOMOFO_SH         (17)
-#define BOPOMOFO_R          (18)
-#define BOPOMOFO_Z          (19)
-#define BOPOMOFO_C          (20)
-#define BOPOMOFO_S          (21)
-#define BOPOMOFO_I          (22)
-#define BOPOMOFO_U          (23)
-#define BOPOMOFO_V          (24)
-#define BOPOMOFO_A          (25)
-#define BOPOMOFO_O          (26)
-#define BOPOMOFO_E          (27)
-#define BOPOMOFO_E2         (28)
-#define BOPOMOFO_AI         (29)
-#define BOPOMOFO_EI         (30)
-#define BOPOMOFO_AO         (31)
-#define BOPOMOFO_OU         (32)
-#define BOPOMOFO_AN         (33)
-#define BOPOMOFO_EN         (34)
-#define BOPOMOFO_ANG        (35)
-#define BOPOMOFO_ENG        (36)
-#define BOPOMOFO_ER         (37)
-#define BOPOMOFO_TONE_2     (38)
-#define BOPOMOFO_TONE_3     (39)
-#define BOPOMOFO_TONE_4     (40)
-#define BOPOMOFO_TONE_5     (41)
-
-const static wchar_t bopomofo_char[] = {
-    L'\0', L'ㄅ', L'ㄆ', L'ㄇ', L'ㄈ', L'ㄉ', L'ㄊ', L'ㄋ', L'ㄌ', L'ㄍ', L'ㄎ',
-    L'ㄏ', L'ㄐ', L'ㄑ', L'ㄒ', L'ㄓ', L'ㄔ', L'ㄕ', L'ㄖ', L'ㄗ', L'ㄘ', L'ㄙ',
-
-    L'ㄧ', L'ㄨ', L'ㄩ', L'ㄚ', L'ㄛ', L'ㄜ', L'ㄝ', L'ㄞ', L'ㄟ', L'ㄠ', L'ㄡ',
-    L'ㄢ', L'ㄣ', L'ㄤ', L'ㄥ', L'ㄦ',
-
-    L'ˊ', L'ˇ', L'ˋ', L'˙',
-};
-
-#endif /* __PY_BOPOMOFO_H_ */