/** * SPDX-FileCopyrightText: 2013 Albert Vaca * * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #include "kdeconnectdeclarativeplugin.h" #include #include #include #include #include #include #include "objectfactory.h" #include "responsewaiter.h" #include "core/kdeconnectpluginconfig.h" #include "interfaces/commandsmodel.h" #include "interfaces/devicesmodel.h" #include "interfaces/devicessortproxymodel.h" #include "interfaces/notificationsmodel.h" #include "openconfig.h" #include "pointerlocker.h" #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) #include "pointerlockerwayland.h" #endif #include #include #include QObject *createDBusResponse() { return new DBusAsyncResponse(); } template void registerFactory(const char *uri, const char *name) { qmlRegisterSingletonType(uri, 1, 0, name, [](QQmlEngine *engine, QJSEngine *) -> QObject * { return new ObjectFactory(engine, [](const QVariant &deviceId) -> QObject * { return new T(deviceId.toString()); }); }); } void KdeConnectDeclarativePlugin::registerTypes(const char *uri) { qmlRegisterType(uri, 1, 0, "DevicesModel"); qmlRegisterType(uri, 1, 0, "NotificationsModel"); qmlRegisterType(uri, 1, 0, "RemoteCommandsModel"); qmlRegisterType(uri, 1, 0, "DBusAsyncResponse"); qmlRegisterType(uri, 1, 0, "DevicesSortProxyModel"); qmlRegisterType(uri, 1, 0, "DevicesPluginFilterProxyModel"); qmlRegisterType(uri, 1, 0, "RemoteSinksModel"); qmlRegisterType(uri, 1, 0, "PluginModel"); qmlRegisterType(uri, 1, 0, "KdeConnectPluginConfig"); qmlRegisterType(uri, 1, 0, "CommandsModel"); qmlRegisterUncreatableType(uri, 1, 0, "MprisDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "LockDeviceDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "FindMyPhoneDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "ClipboardDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "RemoteKeyboardDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "DeviceDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "RemoteCommandsDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "RemoteSystemVolumeInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "ShareDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "PhotoDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterUncreatableType(uri, 1, 0, "BigscreenDbusInterface", QStringLiteral("You're not supposed to instantiate interfaces")); qmlRegisterSingletonType(uri, 1, 0, "DaemonDbusInterface", [](QQmlEngine *, QJSEngine *) -> QObject * { return new DaemonDbusInterface; }); qmlRegisterSingletonType("org.kde.kdeconnect", 1, 0, "PointerLocker", [](QQmlEngine *, QJSEngine *) -> QObject * { AbstractPointerLocker *ret; #if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD) if (qGuiApp->platformName() == QLatin1String("wayland")) ret = new PointerLockerWayland; else #endif ret = new PointerLockerQt; return ret; }); qmlRegisterSingletonType(uri, 1, 0, "OpenConfig", [](QQmlEngine *, QJSEngine *) -> QObject * { return new OpenConfig; }); qmlRegisterAnonymousType(uri, 1); registerFactory(uri, "DeviceDbusInterfaceFactory"); registerFactory(uri, "DeviceBatteryDbusInterfaceFactory"); registerFactory(uri, "DeviceConnectivityReportDbusInterfaceFactory"); registerFactory(uri, "FindMyPhoneDbusInterfaceFactory"); registerFactory(uri, "SftpDbusInterfaceFactory"); registerFactory(uri, "RemoteKeyboardDbusInterfaceFactory"); registerFactory(uri, "ClipboardDbusInterfaceFactory"); registerFactory(uri, "MprisDbusInterfaceFactory"); registerFactory(uri, "RemoteControlDbusInterfaceFactory"); registerFactory(uri, "LockDeviceDbusInterfaceFactory"); registerFactory(uri, "SmsDbusInterfaceFactory"); registerFactory(uri, "RemoteCommandsDbusInterfaceFactory"); registerFactory(uri, "ShareDbusInterfaceFactory"); registerFactory(uri, "PhotoDbusInterfaceFactory"); registerFactory(uri, "RemoteSystemVolumeDbusInterfaceFactory"); registerFactory(uri, "BigscreenDbusInterfaceFactory"); registerFactory(uri, "VirtualmonitorDbusInterfaceFactory"); } void KdeConnectDeclarativePlugin::initializeEngine(QQmlEngine *engine, const char *uri) { QQmlExtensionPlugin::initializeEngine(engine, uri); engine->rootContext()->setContextProperty(QStringLiteral("DBusResponseFactory"), new ObjectFactory(engine, createDBusResponse)); engine->rootContext()->setContextProperty(QStringLiteral("DBusResponseWaiter"), DBusResponseWaiter::instance()); }