aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h')
-rw-r--r--src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h88
1 files changed, 28 insertions, 60 deletions
diff --git a/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h b/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h
index 802f21ecce..f28911ccb4 100644
--- a/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h
+++ b/src/plugins/qmltooling/qmldbg_preview/qqmldebugtranslationservice.h
@@ -1,44 +1,7 @@
-/****************************************************************************
-**
-** Copyright (C) 2020 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the QtQml module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QDEBUGMESSAGESERVICE_H
-#define QDEBUGMESSAGESERVICE_H
+// 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
@@ -50,39 +13,44 @@
//
// We mean it.
//
+#include <QtCore/qglobal.h>
#include <private/qqmldebugserviceinterfaces_p.h>
-#include <QtCore/qlogging.h>
-#include <QtCore/qmutex.h>
-#include <QtCore/qelapsedtimer.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:
- //needs to be in sync with QQmlDebugTranslationClient in qqmldebugtranslationclient_p.h
- enum Command {
- ChangeLanguage,
- ChangeWarningColor,
- ChangeElidedTextWarningString,
- SetDebugTranslationServiceLogFile,
- EnableElidedTextWarning,
- DisableElidedTextWarning,
- TestAllLanguages
- };
- QQmlDebugTranslationServiceImpl(QObject *parent = 0);
+ QQmlDebugTranslationServiceImpl(QObject *parent = nullptr);
+ ~QQmlDebugTranslationServiceImpl();
+
+ void foundTranslationBinding(const TranslationBindingInformation &translationBindingInformation) override;
- QString foundElidedText(QObject *textObject, const QString &layoutText, const QString &elideText) override;
- void foundTranslationBinding(QQmlTranslationBinding *binding, QObject *scopeObject,
- const QQmlRefPointer<QQmlContextData> &contextData) 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 // QDEBUGMESSAGESERVICE_H
+#endif // QQMLDEBUGTRANSLATIONSERVICE_H