83 lines
1.8 KiB
QML
83 lines
1.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
spacing: 0
|
|
|
|
// Component.onCompleted: {
|
|
// console.log("[ColorSchemes] Service initialized")
|
|
// ColorScheme.loadColorSchemes()
|
|
// }
|
|
|
|
|
|
// property var colorSchemes: [{
|
|
// "label": "Generated from Wallpaper (Matugen required)"
|
|
// }, {
|
|
// "label": "Catppuccin"
|
|
// }, {
|
|
// "label": "Dracula"
|
|
// }, {
|
|
// "label": "Gruvbox"
|
|
// }, {
|
|
// "label": "Nord"
|
|
// "file": "nord.json"
|
|
// }, , {
|
|
// "label": "Rosé Pine",
|
|
// "file": "rosepine.json"
|
|
// }]
|
|
ScrollView {
|
|
id: scrollView
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
padding: Style.marginMedium * scaling
|
|
clip: true
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
ScrollBar.vertical.policy: ScrollBar.AsNeeded
|
|
|
|
ColumnLayout {
|
|
width: scrollView.availableWidth
|
|
spacing: 0
|
|
|
|
Item {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 0
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: Style.marginLarge * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NText {
|
|
text: "TODO"
|
|
font.pointSize: Style.fontSizeXL * scaling
|
|
font.weight: Style.fontWeightBold
|
|
color: Colors.mOnSurface
|
|
}
|
|
|
|
ButtonGroup {
|
|
id: schemesGroup
|
|
}
|
|
|
|
Repeater {
|
|
model: ColorSchemes.schemes
|
|
delegate: NRadioButton {
|
|
ButtonGroup.group: schemesGroup
|
|
// checked: Audio.sink?.id === modelData.id
|
|
//onClicked: Audio.setAudioSink(modelData)
|
|
text: {
|
|
console.log(modelData.fileName)
|
|
return modelData.fileName
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|