48 lines
1017 B
QML
48 lines
1017 B
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
anchors.fill: parent
|
|
property var extra_data: ({})
|
|
signal finish()
|
|
|
|
BigGlowText {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: childrenRect.height + 4
|
|
|
|
text: Backend.translate(extra_data.name)
|
|
}
|
|
|
|
GridView {
|
|
cellWidth: 93 + 4
|
|
cellHeight: 130 + 4
|
|
Layout.preferredWidth: root.width - root.width % 97
|
|
Layout.fillHeight: true
|
|
Layout.alignment: Qt.AlignHCenter
|
|
clip: true
|
|
|
|
model: extra_data.ids || extra_data.cardNames
|
|
|
|
delegate: CardItem {
|
|
id: cardItem
|
|
autoBack: false
|
|
Component.onCompleted: {
|
|
let data = {}
|
|
if (extra_data.ids) {
|
|
data = JSON.parse(Backend.callLuaFunction("GetCardData", [modelData]));
|
|
} else {
|
|
data.cid = 0;
|
|
data.name = modelData;
|
|
data.suit = '';
|
|
data.number = 0;
|
|
data.color = '';
|
|
}
|
|
setData(data);
|
|
}
|
|
}
|
|
}
|
|
}
|