b2e83f506c
- Fix call to removed get() method - Add PlaceHolderMessage in runcommand plugin - Simplify qml code when possible - Use latest qml import - Fix missing i18n call Signed-off-by: Carl Schwan <carl@carlschwan.eu>
39 lines
979 B
QML
39 lines
979 B
QML
/**
|
|
* SPDX-FileCopyrightText: 2022 Yuchen Shi <bolshaya_schists@mail.gravitide.co>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15 as QQC2
|
|
import QtQuick.Layouts 1.15
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
Kirigami.FormLayout {
|
|
|
|
property string device
|
|
|
|
KdeConnectPluginConfig {
|
|
id: config
|
|
deviceId: device
|
|
pluginName: "kdeconnect_clipboard"
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
unknown.checked = config.getBool("sendUnknown", true)
|
|
password.checked = config.getBool("sendPassword", true)
|
|
}
|
|
|
|
QQC2.CheckBox {
|
|
id: password
|
|
text: i18n("Passwords (as marked by password managers)")
|
|
onClicked: config.set("sendPassword", checked)
|
|
}
|
|
|
|
QQC2.CheckBox {
|
|
id: unknown
|
|
text: i18n("Anything else")
|
|
onClicked: config.set("sendUnknown", checked)
|
|
}
|
|
}
|