aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h
blob: f28911ccb40cf835f17c0912da53ddd0495debbc (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
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQMLDEBUGTRANSLATIONSERVICE_H
#define QQMLDEBUGTRANSLATIONSERVICE_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 <QtCore/qglobal.h>

#include <private/qqmldebugserviceinterfaces_p.h>

#include <QtCore/qbytearray.h>
#include <QtCore/qstring.h>
#include <QtCore/qurl.h>
#include <QtGui/qcolor.h>

QT_BEGIN_NAMESPACE

class QQmlDebugTranslationServicePrivate;
class QQmlDebugTranslationServiceImpl : public QQmlDebugTranslationService
{
    Q_OBJECT
public:
    QQmlDebugTranslationServiceImpl(QObject *parent = nullptr);
    ~QQmlDebugTranslationServiceImpl();

    void foundTranslationBinding(const TranslationBindingInformation &translationBindingInformation) override;

    void messageReceived(const QByteArray &message) override;
    void engineAboutToBeAdded(QJSEngine *engine) override;
    void engineAboutToBeRemoved(QJSEngine *engine) override;

Q_SIGNALS:
    void language(const QUrl &context, const QLocale &locale);
    void state(const QString &stateName);
    void stateList();
    void watchTextElides(bool);
    void translationIssues();
    void elidedTranslations();
    void sendTranslatableTextOccurrences();

private:
    QQmlDebugTranslationServicePrivate *d;
};

QT_END_NAMESPACE

#endif // QQMLDEBUGTRANSLATIONSERVICE_H