summaryrefslogtreecommitdiffstats
path: root/src/tts/qvoice_p.h
blob: 9ba398c9296ae54680af4d58debf2bcd4612efe7 (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
51
52
53
54
55
56
57
58
59
60
61
62
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only



#ifndef QVOICE_P_H
#define QVOICE_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists for the convenience
// of other Qt classes.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

#include <qvoice.h>

#include <QString>
#include <QLocale>
#include <QVariant>
#include <private/qglobal_p.h>

QT_BEGIN_NAMESPACE

class QVoicePrivate : public QSharedData
{
public:
    QVoicePrivate() = default;
    QVoicePrivate(const QVoicePrivate &other);
    QVoicePrivate(const QString &n, const QLocale &l, QVoice::Gender g,
                  QVoice::Age a, const QVariant &d);
    ~QVoicePrivate() = default;

    QString name;
    QLocale locale;
    QVoice::Gender gender = QVoice::Unknown;
    QVoice::Age age = QVoice::Other;
    // Various data depending on the platform:
    // On OS X the VoiceIdentifier is stored.
    // On unix the synthesizer (output module) is stored.
    QVariant data;
};

QVoicePrivate::QVoicePrivate(const QVoicePrivate &other)
    : QSharedData(other), name(other.name), locale(other.locale)
    , gender(other.gender), age(other.age), data(other.data)
{
}

QVoicePrivate::QVoicePrivate(const QString &n, const QLocale &l, QVoice::Gender g,
                             QVoice::Age a, const QVariant &d)
    :name(n), locale(l), gender(g), age(a), data(d)
{
}

QT_END_NAMESPACE

#endif