begin to add double pinyin editor
authorPeng Wu <alexepico@gmail.com>
Wed, 21 Sep 2011 06:02:14 +0000 (14:02 +0800)
committerPeng Wu <alexepico@gmail.com>
Thu, 22 Dec 2011 04:23:12 +0000 (12:23 +0800)
src/Makefile.am
src/PYPDoublePinyinEditor.cc [new file with mode: 0644]

index aeaaf89..a15a0ef 100644 (file)
@@ -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 (file)
index 0000000..5eb2067
--- /dev/null
@@ -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);
+}