a08449a9a2
Summary: Also consistently use LGPL-2.1-or-later as default license Reviewers: #plasma, cordlandwehr Reviewed By: cordlandwehr Subscribers: kde-frameworks-devel Tags: #frameworks Differential Revision: https://phabricator.kde.org/D27640
31 lines
730 B
C++
31 lines
730 B
C++
/*
|
|
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#include "%{APPNAMELC}plugin.h"
|
|
|
|
// KF
|
|
#include <KLocalizedString>
|
|
// Qt
|
|
#include <QJSEngine>
|
|
#include <QQmlEngine>
|
|
#include <QQmlContext>
|
|
|
|
static QJSValue singletonTypeExampleProvider(QQmlEngine* engine, QJSEngine* scriptEngine)
|
|
{
|
|
Q_UNUSED(engine)
|
|
|
|
QJSValue helloWorld = scriptEngine->newObject();
|
|
helloWorld.setProperty("text", i18n("Hello world!"));
|
|
return helloWorld;
|
|
}
|
|
|
|
|
|
void %{APPNAME}Plugin::registerTypes(const char* uri)
|
|
{
|
|
Q_ASSERT(uri == QLatin1String("org.kde.plasma.private.%{APPNAMELC}"));
|
|
|
|
qmlRegisterSingletonType(uri, 1, 0, "HelloWorld", singletonTypeExampleProvider);
|
|
}
|