aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h')
-rw-r--r--src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h b/src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h
new file mode 100644
index 00000000..757558b5
--- /dev/null
+++ b/src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h
@@ -0,0 +1,50 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#ifndef T9WRITEABSTRACTDICTIONARY_P_H
+#define T9WRITEABSTRACTDICTIONARY_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtGlobal>
+
+QT_BEGIN_NAMESPACE
+namespace QtVirtualKeyboard {
+
+class T9WriteAbstractDictionary
+{
+ Q_DISABLE_COPY(T9WriteAbstractDictionary)
+
+protected:
+ T9WriteAbstractDictionary() {}
+
+public:
+ virtual ~T9WriteAbstractDictionary() {}
+
+ virtual bool load() = 0;
+ virtual bool create(qint64 createSize) { Q_UNUSED(createSize) return false; }
+ virtual void close() {}
+ virtual bool convert() { return false; }
+ virtual QString name() const = 0;
+ virtual const void *data() const = 0;
+ virtual qint64 size() const = 0;
+ bool isCompleted() const { return state > 0; }
+
+private:
+ friend class T9WriteDictionaryTask;
+ QAtomicInt state;
+};
+
+} // namespace QtVirtualKeyboard
+QT_END_NAMESPACE
+
+#endif // T9WRITEABSTRACTDICTIONARY_P_H