kdeconnect-app: Remove PluginInfoPage wrapper
Base the config page on Kirigami.Page and create them directly.
This commit is contained in:
parent
239e53a469
commit
e04072c83e
9 changed files with 278 additions and 306 deletions
|
@ -40,7 +40,6 @@ ecm_target_qml_sources(kdeconnect-app SOURCES
|
||||||
qml/volume.qml
|
qml/volume.qml
|
||||||
qml/MprisSlider.qml
|
qml/MprisSlider.qml
|
||||||
qml/PluginSettings.qml
|
qml/PluginSettings.qml
|
||||||
qml/PluginInfoPage.qml
|
|
||||||
qml/Settings.qml
|
qml/Settings.qml
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
/*
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick
|
|
||||||
import org.kde.kirigami as Kirigami
|
|
||||||
|
|
||||||
Kirigami.Page {
|
|
||||||
id: root
|
|
||||||
property string configFile
|
|
||||||
property string device
|
|
||||||
|
|
||||||
actions: loader.item && loader.item.action ? [loader.item.action] : []
|
|
||||||
|
|
||||||
onConfigFileChanged: loader.setSource(configFile, {
|
|
||||||
device: root.device
|
|
||||||
})
|
|
||||||
|
|
||||||
Loader {
|
|
||||||
anchors.fill: parent
|
|
||||||
id: loader
|
|
||||||
Component.onCompleted: setSource(configFile, {
|
|
||||||
device: root.device
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -63,19 +63,12 @@ Kirigami.ScrollablePage {
|
||||||
// https://bugreports.qt.io/browse/QTBUG-123123
|
// https://bugreports.qt.io/browse/QTBUG-123123
|
||||||
Accessible.name: i18nd("kdeconnect-app", "Configure plugin")
|
Accessible.name: i18nd("kdeconnect-app", "Configure plugin")
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
if (pageStack.lastItem.toString().startsWith("PluginInfoPage")) {
|
pageStack.push(configSource, {
|
||||||
pageStack.lastItem.configFile = configSource;
|
|
||||||
pageStack.lastItem.title = name;
|
|
||||||
pageStack.goForward();
|
|
||||||
} else {
|
|
||||||
pageStack.push(Qt.resolvedUrl("PluginInfoPage.qml"), {
|
|
||||||
title: name,
|
title: name,
|
||||||
configFile: configSource,
|
|
||||||
device: root.device,
|
device: root.device,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,21 +10,23 @@ import QtQuick.Layouts 1.15
|
||||||
import org.kde.kirigami 2.20 as Kirigami
|
import org.kde.kirigami 2.20 as Kirigami
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.ScrollablePage {
|
||||||
|
id: root
|
||||||
|
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
KdeConnectPluginConfig {
|
|
||||||
id: config
|
|
||||||
deviceId: device
|
|
||||||
pluginName: "kdeconnect_clipboard"
|
|
||||||
}
|
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
autoShare.checked = config.getBool("autoShare", config.getBool("sendUnknown", true))
|
autoShare.checked = config.getBool("autoShare", config.getBool("sendUnknown", true))
|
||||||
password.checked = config.getBool("sendPassword", true)
|
password.checked = config.getBool("sendPassword", true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Kirigami.FormLayout {
|
||||||
|
KdeConnectPluginConfig {
|
||||||
|
id: config
|
||||||
|
deviceId: device
|
||||||
|
pluginName: "kdeconnect_clipboard"
|
||||||
|
}
|
||||||
|
|
||||||
QQC2.CheckBox {
|
QQC2.CheckBox {
|
||||||
id: autoShare
|
id: autoShare
|
||||||
text: i18n("Automatically share the clipboard from this device")
|
text: i18n("Automatically share the clipboard from this device")
|
||||||
|
@ -36,5 +38,5 @@ Kirigami.FormLayout {
|
||||||
text: i18n("Including passwords (as marked by password managers)")
|
text: i18n("Including passwords (as marked by password managers)")
|
||||||
onClicked: config.set("sendPassword", checked)
|
onClicked: config.set("sendPassword", checked)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,16 +11,18 @@ import org.kde.kirigami 2.20 as Kirigami
|
||||||
import Qt.labs.platform 1.1
|
import Qt.labs.platform 1.1
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.ScrollablePage {
|
||||||
|
id: root
|
||||||
|
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
property var action: Kirigami.Action {
|
actions: Kirigami.Action {
|
||||||
icon.name: "dialog-ok"
|
icon.name: "dialog-ok"
|
||||||
text: i18n("Apply")
|
text: i18n("Apply")
|
||||||
onTriggered: config.set("ringtone", path.text)
|
onTriggered: config.set("ringtone", path.text)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Kirigami.FormLayout {
|
||||||
FileDialog {
|
FileDialog {
|
||||||
id: fileDialog
|
id: fileDialog
|
||||||
currentFile: path.text
|
currentFile: path.text
|
||||||
|
@ -53,4 +55,4 @@ Kirigami.FormLayout {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -10,9 +10,11 @@ import QtQuick.Layouts 1.15
|
||||||
import org.kde.kirigami 2.20 as Kirigami
|
import org.kde.kirigami 2.20 as Kirigami
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.ScrollablePage {
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
|
Kirigami.FormLayout {
|
||||||
|
|
||||||
KdeConnectPluginConfig {
|
KdeConnectPluginConfig {
|
||||||
id: config
|
id: config
|
||||||
deviceId: device
|
deviceId: device
|
||||||
|
@ -55,3 +57,4 @@ Kirigami.FormLayout {
|
||||||
onClicked: config.set("actionResume", checked)
|
onClicked: config.set("actionResume", checked)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -10,23 +10,21 @@ import QtQuick.Controls 2.15 as QQC2
|
||||||
import org.kde.kirigami 2.20 as Kirigami
|
import org.kde.kirigami 2.20 as Kirigami
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
ListView {
|
Kirigami.ScrollablePage {
|
||||||
id: view
|
id: root
|
||||||
Component.onCompleted: {
|
|
||||||
root.leftPadding = 0
|
|
||||||
root.rightPadding = 0
|
|
||||||
root.topPadding = 0
|
|
||||||
root.bottomPadding = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
property var action: Kirigami.Action {
|
actions: Kirigami.Action {
|
||||||
|
id: addCommandDialogAction
|
||||||
icon.name: "list-add"
|
icon.name: "list-add"
|
||||||
text: i18n("Add Command…")
|
text: i18n("Add Command…")
|
||||||
onTriggered: addDialog.open()
|
onTriggered: addDialog.open()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: view
|
||||||
|
|
||||||
model: CommandsModel {
|
model: CommandsModel {
|
||||||
id: commandModel
|
id: commandModel
|
||||||
deviceId: device
|
deviceId: device
|
||||||
|
@ -64,7 +62,7 @@ ListView {
|
||||||
width: parent.width - Kirigami.Units.gridUnit * 4
|
width: parent.width - Kirigami.Units.gridUnit * 4
|
||||||
text: i18nc("@info", "No commands configured")
|
text: i18nc("@info", "No commands configured")
|
||||||
explanation: i18n("@info", "Add commands to run them remotely from other devices")
|
explanation: i18n("@info", "Add commands to run them remotely from other devices")
|
||||||
helpfulAction: view.action
|
helpfulAction: addCommandDialogAction
|
||||||
}
|
}
|
||||||
|
|
||||||
Kirigami.Dialog {
|
Kirigami.Dialog {
|
||||||
|
@ -145,3 +143,4 @@ ListView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -10,13 +10,15 @@ import QtQuick.Layouts 1.1
|
||||||
import org.kde.kirigami 2.5 as Kirigami
|
import org.kde.kirigami 2.5 as Kirigami
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.ScrollablePage {
|
||||||
|
id: root
|
||||||
|
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
|
Kirigami.FormLayout {
|
||||||
KdeConnectPluginConfig {
|
KdeConnectPluginConfig {
|
||||||
id: config
|
id: config
|
||||||
deviceId: device
|
deviceId: root.device
|
||||||
pluginName: "kdeconnect_sendnotifications"
|
pluginName: "kdeconnect_sendnotifications"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,5 +54,5 @@ Kirigami.FormLayout {
|
||||||
to: 2
|
to: 2
|
||||||
onValueModified: config.set("generalUrgency", value)
|
onValueModified: config.set("generalUrgency", value)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,16 +11,18 @@ import org.kde.kirigami 2.20 as Kirigami
|
||||||
import Qt.labs.platform 1.1
|
import Qt.labs.platform 1.1
|
||||||
import org.kde.kdeconnect 1.0
|
import org.kde.kdeconnect 1.0
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.ScrollablePage {
|
||||||
|
id: root
|
||||||
|
|
||||||
property string device
|
property string device
|
||||||
|
|
||||||
property var action: Kirigami.Action {
|
actions: Kirigami.Action {
|
||||||
icon.name: "dialog-ok"
|
icon.name: "dialog-ok"
|
||||||
text: i18n("Apply")
|
text: i18n("Apply")
|
||||||
onTriggered: config.set("incoming_path", path.text)
|
onTriggered: config.set("incoming_path", path.text)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Kirigami.FormLayout {
|
||||||
FolderDialog {
|
FolderDialog {
|
||||||
id: folderDialog
|
id: folderDialog
|
||||||
currentFolder: path.text
|
currentFolder: path.text
|
||||||
|
@ -57,3 +59,4 @@ Kirigami.FormLayout {
|
||||||
text: i18n("%1 in the path will be replaced with the specific device name", "%1")
|
text: i18n("%1 in the path will be replaced with the specific device name", "%1")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue