kdeconnect-kde/declarativeplugin/qml/PluginChecker.qml
Albert Vaca Cintora f3fa818cbf
Revert changes to QML incompatible with Qt 6.6 and older
- Revert "plasmoid: Port to pragma ComponentBehavior: Bound"
  This reverts commit 9ee0b23727.

- Revert "plasmoid: Flatten plugin controllers, menu and other non-graphical components"
  This reverts commit d2ee2bfdd8.

- Revert "plasmoid: Basic code cleanup"
  This reverts commit 90946829bf.
2024-09-04 00:37:36 +02:00

47 lines
1.3 KiB
QML

/**
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
* SPDX-FileCopyrightText: 2016 David Kahles <david.kahles96@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
import QtQml 2.2
import org.kde.kdeconnect 1.0
QtObject {
id: root
property alias device: conn.target
property string pluginName: ""
property bool available: false
property string iconName: ""
readonly property Connections connection: Connections {
id: conn
function onPluginsChanged() {
root.pluginsChanged();
}
}
Component.onCompleted: pluginsChanged()
readonly property var v: DBusAsyncResponse {
id: availableResponse
autoDelete: false
onSuccess: (result) => { root.available = result; }
onError: () => { root.available = false }
}
function pluginsChanged() {
availableResponse.setPendingCall(device.hasPlugin("kdeconnect_" + pluginName))
iconResponse.setPendingCall(device.pluginIconName("kdeconnect_" + pluginName))
}
readonly property var vv: DBusAsyncResponse {
id: iconResponse
autoDelete: false
onSuccess: (result) => { root.iconName = result; }
onError: () => { root.iconName = "" }
}
}