summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-09-21 14:02:14 +0800
committerPeng Wu <alexepico@gmail.com>2011-12-22 12:23:12 +0800
commit05035a2ca103c6dc795bcd810df7fba86f22f8a7 (patch)
tree64dbfb130b81a22eca56d1452df9e76ab5d09e80
parent1bf1279f74ca5eb26e1250d862d5c6d722cc10f6 (diff)
downloadibus-libpinyin-05035a2ca103c6dc795bcd810df7fba86f22f8a7.tar.gz
ibus-libpinyin-05035a2ca103c6dc795bcd810df7fba86f22f8a7.tar.xz
ibus-libpinyin-05035a2ca103c6dc795bcd810df7fba86f22f8a7.zip
begin to add double pinyin editor
-rw-r--r--src/Makefile.am1
-rw-r--r--src/PYPDoublePinyinEditor.cc40
2 files changed, 41 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index aeaaf89..a15a0ef 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -68,6 +68,7 @@ ibus_engine_pinyin_c_sources = \
PYPPhoneticEditor.cc \
PYPPinyinEditor.cc \
PYPFullPinyinEditor.cc \
+ PYPDoublePinyinEditor.cc \
PYPBopomofoEditor.cc \
$(NULL)
ibus_engine_pinyin_h_sources = \
diff --git a/src/PYPDoublePinyinEditor.cc b/src/PYPDoublePinyinEditor.cc
new file mode 100644
index 0000000..5eb2067
--- /dev/null
+++ b/src/PYPDoublePinyinEditor.cc
@@ -0,0 +1,40 @@
+/* vim:set et ts=4 sts=4:
+ *
+ * ibus-pinyin - The Chinese PinYin engine for IBus
+ *
+ * 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, 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.
+ */
+
+#include "PYPDoublePinyinEditor.h"
+
+using namespace PY;
+
+
+gboolean
+LibPinyinDoublePinyinEditor::processKeyEvent (guint keyval, guint keycode,
+ guint modifiers)
+{
+ /* handle ';' key */
+ if (G_UNLIKELY (keyval == IBUS_semicolon)) {
+ if (cmshm_filter (modifiers) == 0) {
+ if (insert (keyval))
+ return TRUE;
+ }
+ }
+
+ return LibPinyinPinyinEditor::processKeyEvent (keyval, keycode, modifiers);
+}