f3fa818cbf
- Revert "plasmoid: Port to pragma ComponentBehavior: Bound" This reverts commit9ee0b23727
. - Revert "plasmoid: Flatten plugin controllers, menu and other non-graphical components" This reverts commitd2ee2bfdd8
. - Revert "plasmoid: Basic code cleanup" This reverts commit90946829bf
.
37 lines
789 B
QML
37 lines
789 B
QML
/**
|
|
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick
|
|
import org.kde.plasma.core as PlasmaCore
|
|
import org.kde.kdeconnect
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
property alias device: checker.device
|
|
readonly property alias available: checker.available
|
|
|
|
readonly property PluginChecker pluginChecker: PluginChecker {
|
|
id: checker
|
|
pluginName: "sftp"
|
|
}
|
|
|
|
property variant sftp: null
|
|
|
|
function browse() {
|
|
if (sftp)
|
|
sftp.startBrowsing();
|
|
}
|
|
|
|
onAvailableChanged: {
|
|
if (available) {
|
|
sftp = SftpDbusInterfaceFactory.create(device.id())
|
|
} else {
|
|
sftp = null
|
|
}
|
|
}
|
|
}
|