mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 03:32:34 +08:00
adafcfbae1
1. 为选项框增加all_choices,可以看到无法选择的选项 2. 体力上限减到0以下不会再死两次 3. 预判超量回复 4. 可以在摸牌前事件打断摸牌 5. 修复卡牌可以使用判断 6. 添加移动场上牌的返回值(卡牌和玩家id) 7. 修复谋徐盛的属性伤害 8. 修改选择多张牌的翻译 9. 修复变更武将的hp设置 --------- Signed-off-by: Mechanel <nyutanislavsky@qq.com>
70 lines
1.5 KiB
QML
70 lines
1.5 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Fk.Pages
|
|
|
|
GraphicsBox {
|
|
property var options: []
|
|
property var all_options: []
|
|
property string skill_name: ""
|
|
property int result
|
|
|
|
id: root
|
|
title.text: Backend.translate("$Choice").arg(Backend.translate(skill_name))
|
|
width: Math.max(140, body.width + 20)
|
|
height: body.height + title.height + 20
|
|
|
|
ListView {
|
|
id: body
|
|
x: 10
|
|
y: title.height + 5
|
|
width: Math.min(700, 220 * model.length)
|
|
height: 300
|
|
orientation: ListView.Horizontal
|
|
clip: true
|
|
spacing: 20
|
|
|
|
model: all_options
|
|
|
|
delegate: Item {
|
|
width: 200
|
|
height: 290
|
|
|
|
MetroButton {
|
|
id: choicetitle
|
|
width: parent.width
|
|
text: Backend.translate(modelData)
|
|
enabled: options.indexOf(modelData) !== -1
|
|
textFont.pixelSize: 24
|
|
anchors.top: choiceDetail.bottom
|
|
anchors.topMargin: 8
|
|
|
|
onClicked: {
|
|
result = index;
|
|
root.close();
|
|
}
|
|
}
|
|
|
|
Flickable {
|
|
id: choiceDetail
|
|
x: 4
|
|
height: parent.height - choicetitle.height
|
|
contentHeight: detail.height
|
|
width: parent.width
|
|
clip: true
|
|
Text {
|
|
id: detail
|
|
width: parent.width
|
|
text: Backend.translate(":" + modelData)
|
|
color: "white"
|
|
wrapMode: Text.WordWrap
|
|
font.pixelSize: 16
|
|
textFormat: TextEdit.RichText
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|