aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cerence/hwr/plugin/t9writeabstractdictionary_p.h
blob: 757558b5e25a59459b1778043db8b4fdc94cf3e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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