summaryrefslogtreecommitdiffstats
path: root/src/PYPBopomofoEditor.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2011-09-05 16:59:49 +0800
committerPeng Wu <alexepico@gmail.com>2011-12-22 12:23:11 +0800
commit3799224a7f951a40b47f202e428d1d390b53fd25 (patch)
treeae6ee8a9faa6240aa24dc167160854eac87feed0 /src/PYPBopomofoEditor.h
parent9d7be99bc520bd98cf52fa88f947f3787e411fde (diff)
downloadibus-libpinyin-3799224a7f951a40b47f202e428d1d390b53fd25.tar.gz
ibus-libpinyin-3799224a7f951a40b47f202e428d1d390b53fd25.tar.xz
ibus-libpinyin-3799224a7f951a40b47f202e428d1d390b53fd25.zip
begin to write bopomofo editor
Diffstat (limited to 'src/PYPBopomofoEditor.h')
-rw-r--r--src/PYPBopomofoEditor.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/PYPBopomofoEditor.h b/src/PYPBopomofoEditor.h
new file mode 100644
index 0000000..bcbf85d
--- /dev/null
+++ b/src/PYPBopomofoEditor.h
@@ -0,0 +1,77 @@
+/* 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.
+ */
+#ifndef __PY_LIB_PINYIN_BOPOMOFO_EDITOR_H_
+#define __PY_LIB_PINYIN_BOPOMOFO_EDITOR_H_
+
+#include "PYPPhoneticEditor.h"
+
+namespace PY {
+
+class Config;
+
+#define MAX_PINYIN_LEN 64
+
+class LibPinyinBopomofoEditor : public LibPinyinPhoneticEditor {
+
+public:
+ LibPinyinBopomofoEditor (PinyinProperties & props, Config & config);
+ ~LibPinyinBopomofoEditor (void);
+
+protected:
+ String bopomofo;
+ gboolean m_select_mode;
+
+ gboolean processGuideKey (guint keyval, guint keycode, guint modifiers);
+ gboolean processAuxiliarySelectKey (guint keyval, guint keycode,
+ guint modifiers);
+ gboolean processSelectKey (guint keyval, guint keycode, guint modifiers);
+ gboolean processBopomofo (guint keyval, guint keycode, guint modifiers);
+ gboolean processKeyEvent (guint keyval, guint keycode, guint modifiers);
+
+ void updateAuxiliaryText ();
+ void updateLookupTable ();
+ void updatePreeditText ();
+
+ void update ();
+ void commit ();
+ void reset ();
+
+ gboolean insert (gint ch);
+ gint keyvalToBopomofo (gint ch);
+
+ gboolean removeCharBefore (void);
+ gboolean removeCharAfter (void);
+ gboolean removeWordBefore (void);
+ gboolean removeWordAfter (void);
+
+ gboolean moveCursorLeft (void);
+ gboolean moveCursorRight (void);
+ gboolean moveCursorLeftByWord (void);
+ gboolean moveCursorRightByWord (void);
+ gboolean moveCursorToBegin (void);
+ gboolean moveCursorToEnd (void);
+
+};
+
+};
+
+
+#endif