From a360dbe761107cd98530c24f2c115dd5c7613dca Mon Sep 17 00:00:00 2001 From: BYVoid Date: Thu, 13 May 2010 11:18:30 +0800 Subject: add Bopomofo Support --- src/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 3cd72e6..c86b82e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -34,6 +34,7 @@ libexec_PROGRAMS = ibus-engine-pinyin ibus_engine_c_sources = \ + BopomofoEditor.cc \ Config.cc \ Database.cc \ DoublePinyinEditor.cc \ @@ -55,10 +56,12 @@ ibus_engine_c_sources = \ SpecialPhraseTable.cc \ $(NULL) ibus_engine_built_h_sources = \ + Bopomofo.h \ PinyinParserTable.h \ SimpTradConverterTable.h \ $(NULL) ibus_engine_h_sources = \ + BopomofoEditor.h \ Bus.h \ Config.h \ Database.h \ -- cgit From 35e5f6a5e90dde1b3683774247a4d9bb304bcc3c Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Fri, 14 May 2010 10:44:01 +0800 Subject: Create BopomofoEngine --- src/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index c86b82e..5ccd36f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -35,6 +35,7 @@ libexec_PROGRAMS = ibus-engine-pinyin ibus_engine_c_sources = \ BopomofoEditor.cc \ + BopomofoEngine.cc \ Config.cc \ Database.cc \ DoublePinyinEditor.cc \ @@ -56,12 +57,13 @@ ibus_engine_c_sources = \ SpecialPhraseTable.cc \ $(NULL) ibus_engine_built_h_sources = \ - Bopomofo.h \ PinyinParserTable.h \ SimpTradConverterTable.h \ $(NULL) ibus_engine_h_sources = \ + Bopomofo.h \ BopomofoEditor.h \ + BopomofoEngine.h \ Bus.h \ Config.h \ Database.h \ -- cgit From bb8f130fb94108cb1fa6863d14e1b2cd165a1594 Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Sun, 16 May 2010 09:33:59 +0800 Subject: Add MODE_PUNCT in BopomofoEngine --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 5ccd36f..6c914c8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -51,6 +51,7 @@ ibus_engine_c_sources = \ PinyinEngine.cc \ PinyinParser.cc \ PinyinProperties.cc \ + PunctEditor.cc \ SimpTradConverter.cc \ DynamicSpecialPhrase.cc \ SpecialPhrase.cc \ @@ -88,6 +89,7 @@ ibus_engine_h_sources = \ PinyinProperties.h \ Pointer.h \ Property.h \ + PunctEditor.h \ RawEditor.h \ Regex.h \ Signal.h \ -- cgit From b3ac1d2c04008c989c215b2ff3e9f84585bc76ce Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Sun, 16 May 2010 12:57:00 +0800 Subject: Add PunctTable in Makefile.am --- src/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 6c914c8..705f5b3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -59,6 +59,7 @@ ibus_engine_c_sources = \ $(NULL) ibus_engine_built_h_sources = \ PinyinParserTable.h \ + PunctTable.h \ SimpTradConverterTable.h \ $(NULL) ibus_engine_h_sources = \ @@ -164,8 +165,12 @@ CLEANFILES = \ PinyinParserTable.h: $(PYTHON) $(top_srcdir)/scripts/genpytable.py > $@ +PunctTable.h: + $(PYTHON) $(top_srcdir)/scripts/genpuncttable.py > $@ + SimpTradConverterTable.h: $(PYTHON) $(srcdir)/update-simptrad-table.py > $@ + update-simptrad-table: $(RM) ZhConversion.php ZhConversion.py SimpTradConverterTable.h $(MAKE) ZhConversion.php -- cgit From b46bb4bd7443dcdef7fb790fde5138b9f9f36007 Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Mon, 17 May 2010 09:47:52 +0800 Subject: Include PunctTable.h in tarball --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 705f5b3..29a1d01 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -91,6 +91,7 @@ ibus_engine_h_sources = \ Pointer.h \ Property.h \ PunctEditor.h \ + PunctTable.h \ RawEditor.h \ Regex.h \ Signal.h \ -- cgit