2018-07-27 07:04:05 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
2018-07-27 07:04:05 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2018-07-27 07:04:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property alias device: checker.device
|
|
|
|
readonly property alias available: checker.available
|
|
|
|
|
|
|
|
readonly property PluginChecker pluginChecker: PluginChecker {
|
|
|
|
id: checker
|
|
|
|
pluginName: "remotecommands"
|
|
|
|
}
|
|
|
|
|
|
|
|
property variant plugin: available ? RemoteCommandsDbusInterfaceFactory.create(device.id()) : null
|
|
|
|
}
|