aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h')
-rw-r--r--src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h b/src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h
new file mode 100644
index 00000000..c9469b72
--- /dev/null
+++ b/src/virtualkeyboard/3rdparty/tcime/zhuyindictionary.h
@@ -0,0 +1,42 @@
+/*
+ * Qt implementation of TCIME library
+ * This file is part of the Qt Virtual Keyboard module.
+ * Contact: http://www.qt.io/licensing/
+ *
+ * Copyright (C) 2015 The Qt Company
+ * Copyright 2010 Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef ZHUYINDICTIONARY_H
+#define ZHUYINDICTIONARY_H
+
+#include "worddictionary.h"
+
+namespace tcime {
+
+/**
+ * Extends WordDictionary to provide zhuyin word-suggestions.
+ */
+class ZhuyinDictionary : public WordDictionary
+{
+public:
+ ZhuyinDictionary();
+
+ QStringList getWords(const QString &input) const;
+};
+
+}
+
+#endif // ZHUYINDICTIONARY_H