2021-02-27 19:04:47 +00:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
|
|
|
|
2022-12-13 20:45:50 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15 as QQC2
|
|
|
|
import QtQuick.Layouts 1.15
|
2024-10-05 19:59:09 +01:00
|
|
|
import QtQuick.Dialogs
|
2022-12-13 20:45:50 +00:00
|
|
|
import org.kde.kirigami 2.20 as Kirigami
|
2019-10-27 17:08:51 +00:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
Kirigami.ScrollablePage {
|
|
|
|
id: root
|
2019-10-27 17:08:51 +00:00
|
|
|
|
|
|
|
property string device
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
actions: Kirigami.Action {
|
2019-10-27 17:08:51 +00:00
|
|
|
icon.name: "dialog-ok"
|
|
|
|
text: i18n("Apply")
|
|
|
|
onTriggered: config.set("incoming_path", path.text)
|
|
|
|
}
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
Kirigami.FormLayout {
|
|
|
|
FolderDialog {
|
|
|
|
id: folderDialog
|
|
|
|
currentFolder: path.text
|
2019-10-27 17:08:51 +00:00
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
onAccepted: {
|
2024-10-05 19:59:09 +01:00
|
|
|
path.text = selectedFolder.toString().replace("file://", "")
|
2024-10-05 21:53:32 +01:00
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
KdeConnectPluginConfig {
|
|
|
|
id: config
|
|
|
|
deviceId: device
|
|
|
|
pluginName: "kdeconnect_share"
|
2019-10-27 17:08:51 +00:00
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
onConfigChanged: {
|
|
|
|
path.text = getString("incoming_path", StandardPaths.writableLocation(StandardPaths.DownloadsLocation).toString().replace("file://", ""))
|
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
RowLayout {
|
|
|
|
Kirigami.FormData.label: i18n("Save files in:")
|
2019-10-27 17:08:51 +00:00
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
QQC2.TextField {
|
|
|
|
id: path
|
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
QQC2.Button {
|
|
|
|
icon.name: "document-open"
|
|
|
|
onClicked: folderDialog.open()
|
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:53:32 +01:00
|
|
|
QQC2.Label {
|
|
|
|
text: i18n("%1 in the path will be replaced with the specific device name", "%1")
|
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
}
|
|
|
|
}
|