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

39 lines
858 B
QML
Raw 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
*/
2014-06-18 01:35:48 +01:00
import QtQuick 2.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
2014-02-05 19:26:54 +00:00
import org.kde.kdeconnect 1.0
QtObject {
2014-02-14 16:11:41 +00:00
2014-02-05 19:26:54 +00:00
id: root
2014-02-14 16:11:41 +00: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
2014-02-05 19:26:54 +00:00
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
}