kdeconnect-kde/plasmoid/package/contents/ui/Sftp.qml

38 lines
789 B
QML
Raw Permalink Normal View History

2014-02-05 19:26:54 +00:00
/**
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
2014-02-05 19:26:54 +00:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2014-02-05 19:26:54 +00:00
*/
import QtQuick
import org.kde.plasma.core as PlasmaCore
import org.kde.kdeconnect
2014-02-14 16:11:41 +00:00
2024-06-30 23:03:57 +01:00
QtObject {
2014-02-14 16:11:41 +00:00
id: root
2024-06-30 23:03:57 +01:00
property alias device: checker.device
readonly property alias available: checker.available
readonly property PluginChecker pluginChecker: PluginChecker {
id: checker
pluginName: "sftp"
}
2014-02-05 19:26:54 +00:00
property variant sftp: null
function browse() {
if (sftp)
sftp.startBrowsing();
2014-02-05 19:26:54 +00:00
}
onAvailableChanged: {
if (available) {
sftp = SftpDbusInterfaceFactory.create(device.id())
} else {
sftp = null
}
}
2014-02-05 19:26:54 +00:00
}