solitare/CardModel.qml

25 lines
812 B
QML

import Solitare
import QtQuick
Item {
id: cardModel
width: 100
height: width * 1.4 // Maintian the aspect ratio of a playing card
required property PlayingCard card;
property string backStyle: "red"
// Annoyingly, there is no easy way to make this type-safe, QML does have enums
// but they only act as ints, and since we need the string names for the img paths
// anyways, typing these as simple strings is the easiest way to do this.
Image {
id: cardImage
anchors.fill: parent
source: cardModel.card.isFaceDown
? "qrc:/img/playing_cards/backs/" + cardModel.backStyle + ".svg"
: "qrc:/img/playing_cards/fronts/" + cardModel.card.color + "_" + cardModel.card.value + ".svg"
fillMode: Image.PreserveAspectFit
}
}