mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
27 lines
959 B
C++
27 lines
959 B
C++
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "halcyonplugin.h"
|
|
#include "application.h"
|
|
#include "applicationfolder.h"
|
|
#include "applicationlistmodel.h"
|
|
#include "pinnedmodel.h"
|
|
#include "windowlistener.h"
|
|
|
|
void HalcyonPlugin::registerTypes(const char *uri)
|
|
{
|
|
Q_ASSERT(QLatin1String(uri) == QLatin1String("org.kde.private.mobile.homescreen.halcyon"));
|
|
|
|
WindowListener::instance(); // ensure it is created
|
|
|
|
qmlRegisterSingletonType<ApplicationListModel>(uri, 1, 0, "ApplicationListModel", [](QQmlEngine *, QJSEngine *) -> QObject * {
|
|
return ApplicationListModel::self();
|
|
});
|
|
|
|
qmlRegisterSingletonType<PinnedModel>(uri, 1, 0, "PinnedModel", [](QQmlEngine *, QJSEngine *) -> QObject * {
|
|
return PinnedModel::self();
|
|
});
|
|
|
|
qmlRegisterType<Application>(uri, 1, 0, "Application");
|
|
qmlRegisterType<ApplicationFolder>(uri, 1, 0, "ApplicationFolder");
|
|
}
|