72 lines
1.7 KiB
QML
72 lines
1.7 KiB
QML
|
import QtQuick 2.0
|
||
|
import QtQuick.Controls 2.5
|
||
|
import QtQuick.Dialogs 1.0
|
||
|
import QtQuick.Layouts 1.15
|
||
|
import org.kde.kirigami 2.20 as Kirigami
|
||
|
import org.kde.kquickcontrols 2.0 as KQControls
|
||
|
|
||
|
Kirigami.FormLayout {
|
||
|
id: page
|
||
|
|
||
|
property alias cfg_cfgMpdHost: cfgMpdHost.text
|
||
|
property alias cfg_cfgCacheRoot: cfgCacheRoot.cleanPath
|
||
|
property alias cfg_cfgCacheForDays: cfgCacheForDays.value
|
||
|
property int cfg_foo: 1
|
||
|
|
||
|
Item {
|
||
|
Kirigami.FormData.label: i18n("MPD Connection")
|
||
|
Kirigami.FormData.isSection: true
|
||
|
}
|
||
|
|
||
|
TextField {
|
||
|
id: cfgMpdHost
|
||
|
|
||
|
Kirigami.FormData.label: i18n("MPD Server Address:")
|
||
|
placeholderText: i18n("192.168.y.x")
|
||
|
Layout.preferredWidth: 200
|
||
|
}
|
||
|
|
||
|
Item {
|
||
|
Kirigami.FormData.label: i18n("Local Covers")
|
||
|
Kirigami.FormData.isSection: true
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
Kirigami.FormData.label: i18n("Path to Cover Folder:")
|
||
|
|
||
|
TextField {
|
||
|
id: cfgCacheRootText
|
||
|
|
||
|
text: cfgCacheRoot.cleanPath
|
||
|
placeholderText: i18n("No file selected.")
|
||
|
Layout.preferredWidth: 200
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
text: i18n("Select Folder")
|
||
|
onClicked: cfgCacheRoot.open()
|
||
|
}
|
||
|
|
||
|
FileDialog {
|
||
|
id: cfgCacheRoot
|
||
|
|
||
|
property string cleanPath
|
||
|
|
||
|
selectFolder: true
|
||
|
title: i18n("Please Choose a Folder")
|
||
|
folder: shortcuts.home
|
||
|
onAccepted: {
|
||
|
cleanPath = decodeURIComponent(cfgCacheRoot.fileUrl.toString(
|
||
|
).replace(/^file:\/\//, ""))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
SpinBox {
|
||
|
id: cfgCacheForDays
|
||
|
|
||
|
Kirigami.FormData.label: i18n("Cache Covers for Days:")
|
||
|
}
|
||
|
|
||
|
}
|