solitare/qml/FoundationPiles.qml

51 lines
1.2 KiB
QML
Raw Normal View History

2024-12-04 18:26:16 +00:00
import QtQuick
2024-12-05 00:22:18 +00:00
import Solitare
2024-12-04 18:26:16 +00:00
Row {
spacing: 15
Repeater {
model: 4 // Each of the 4 suits
2024-12-05 02:24:09 +00:00
Item {
id: foundationPile
width: foundationCard.width
height: foundationCard.height
2024-12-05 00:22:18 +00:00
required property int index // passed from repeater
2024-12-05 02:24:09 +00:00
CardModel {
id: foundationCard
anchors.fill: parent
visible: GameState.foundation[parent.index].length > 0
card: GameState.foundation[parent.index].length > 0 ? GameState.foundation[parent.index][0] : null
isFaceDown: false
}
Rectangle {
id: emptyPileRect
anchors.fill: parent
visible: GameState.foundation[parent.index].length === 0
color: "gray"
border.color: "white"
border.width: 3
opacity: 0.4
radius: 10
Text {
text: "A"
color: "white"
font.pixelSize: 40
font.bold: true
anchors.centerIn: parent
}
}
2024-12-04 18:26:16 +00:00
}
}
}