cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
60 lines
1.7 KiB
QML
60 lines
1.7 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
Item {
|
|
width: 600
|
|
height: 600
|
|
|
|
Kirigami.Card {
|
|
width: 300
|
|
anchors.centerIn: parent
|
|
|
|
banner.title: "Card"
|
|
banner.titleIcon: "document-new"
|
|
banner.titleAlignment: alignCombo.currentValue
|
|
banner.source: "/usr/share/wallpapers/Next/contents/screenshot.png"
|
|
|
|
contentItem: Label {
|
|
text: "Card Contents"
|
|
}
|
|
|
|
actions: [
|
|
Kirigami.Action {
|
|
icon.name: "document-new"
|
|
text: "Action 1"
|
|
},
|
|
Kirigami.Action {
|
|
icon.name: "document-new"
|
|
text: "Action 2"
|
|
}
|
|
]
|
|
}
|
|
|
|
RowLayout {
|
|
anchors.bottom: parent.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
ComboBox {
|
|
id: alignCombo
|
|
|
|
model: [
|
|
{ text: "Top Left", align: Qt.AlignLeft | Qt.AlignTop },
|
|
{ text: "Top Center", align: Qt.AlignHCenter | Qt.AlignTop },
|
|
{ text: "Top Right", align: Qt.AlignRight | Qt.AlignTop },
|
|
{ text: "Center Left", align: Qt.AlignLeft | Qt.AlignVCenter },
|
|
{ text: "Center", align: Qt.AlignHCenter | Qt.AlignVCenter },
|
|
{ text: "Center Right", align: Qt.AlignRight | Qt.AlignVCenter },
|
|
{ text: "Bottom Left", align: Qt.AlignLeft | Qt.AlignBottom },
|
|
{ text: "Bottom Center", align: Qt.AlignHCenter | Qt.AlignBottom },
|
|
{ text: "Bottom Right", align: Qt.AlignRight | Qt.AlignBottom }
|
|
]
|
|
|
|
textRole: "text"
|
|
valueRole: "align"
|
|
}
|
|
}
|
|
}
|