summaryrefslogtreecommitdiffstats
path: root/src/PYPLibPinyinCandidates.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2018-05-25 16:27:01 +0800
committerPeng Wu <alexepico@gmail.com>2018-05-25 17:59:24 +0800
commit21afd8f83a2223b213c64bff15e9d7e65614e5bd (patch)
tree43a1622d595fec84dcb2615a006c2fd6fb9e73fa /src/PYPLibPinyinCandidates.h
parentd45f68868b4a4be003364761e456cbc372a758f3 (diff)
downloadibus-libpinyin-21afd8f83a2223b213c64bff15e9d7e65614e5bd.tar.gz
ibus-libpinyin-21afd8f83a2223b213c64bff15e9d7e65614e5bd.tar.xz
ibus-libpinyin-21afd8f83a2223b213c64bff15e9d7e65614e5bd.zip
begin to write class LibPinyinCandidates
Diffstat (limited to 'src/PYPLibPinyinCandidates.h')
-rw-r--r--src/PYPLibPinyinCandidates.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/PYPLibPinyinCandidates.h b/src/PYPLibPinyinCandidates.h
new file mode 100644
index 0000000..6d6569e
--- /dev/null
+++ b/src/PYPLibPinyinCandidates.h
@@ -0,0 +1,70 @@
+/* vim:set et ts=4 sts=4:
+ *
+ * ibus-libpinyin - Intelligent Pinyin engine based on libpinyin for IBus
+ *
+ * Copyright (c) 2018 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __PY_LIB_PINYIN_LIB_PINYIN_CANDIDATES_H_
+#define __PY_LIB_PINYIN_LIB_PINYIN_CANDIDATES_H_
+
+#include "PYPEnhancedCandidates.h"
+
+namespace PY {
+
+class LibPinyinCandidates : public EnhancedCandidate {
+public:
+ LibPinyinCandidates (PhoneticEditor *editor) {
+ m_editor = editor;
+ }
+
+public:
+ gboolean processCandidates (std::vector<EnhancedCandidate> & candidates) {
+ pinyin_instance_t *instance = m_editor->m_instance;
+
+ guint len = 0;
+ pinyin_get_n_candidate (m_instance, &len);
+
+ for (guint i = 0; i < len; i++) {
+ lookup_candidate_t * candidate = NULL;
+ pinyin_get_candidate (m_instance, i, &candidate);
+
+ const gchar * phrase_string = NULL;
+ pinyin_get_candidate_string (m_instance, candidate, &phrase_string);
+
+ EnhancedCandidate candidate;
+ candidate.m_candidate_type = CANDIDATE_LIBPINYIN;
+ candidate.m_candidate_id = i;
+ candidate.m_display_string = phrase_string;
+
+ candidates.push_back (candidate);
+ }
+
+ return TRUE;
+ }
+
+ SelectCandidateAction selectCandidate (EnhancedCandidate & candidate) {
+ assert (CANDIDATE_LIBPINYIN == candidate.m_candidate_type);
+
+ assert (FALSE);
+ }
+
+};
+
+};
+
+#endif