mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
e8aacf1888
1. 新增隐藏礼物选项
2. 无效技能ui显示🔒
3. 过期房间字符串显示删除线
5. 按钮键长按查看技能详情
6. 筛选房间功能
7. “禁用lua扩展”禁用
8. 调整服务器“从收藏移除”的ui,改为三点展开
9. 调整红温缩进
10. 房间内限制玩家名称长度(自己除外)
11. 玩家详情显示判定区
12. 房间内一览
13. 武将一览语音键增加按钮复制代码与文本(长按复制代码),悬停显示
14. 手牌排序多选:(默认)类型、点数、花色
15. 技能次数提示,指定为正数或0显示
16. 修复ArrangeCardsBox的报错
17. 手牌拖拽排序
18. 武将技能按顺序添加
34 lines
856 B
QML
34 lines
856 B
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
Item {
|
|
property alias text: textItem.text
|
|
property alias color: textItem.color
|
|
property alias font: textItem.font
|
|
property alias fontSizeMode: textItem.fontSizeMode
|
|
property alias horizontalAlignment: textItem.horizontalAlignment
|
|
property alias verticalAlignment: textItem.verticalAlignment
|
|
property alias style: textItem.style
|
|
property alias styleColor: textItem.styleColor
|
|
property alias wrapMode: textItem.wrapMode
|
|
property alias elide: textItem.elide
|
|
property alias lineHeight: textItem.lineHeight
|
|
property alias glow: glowItem
|
|
|
|
width: textItem.implicitWidth
|
|
height: textItem.implicitHeight
|
|
|
|
Text {
|
|
id: textItem
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Glow {
|
|
id: glowItem
|
|
source: textItem
|
|
anchors.fill: textItem
|
|
}
|
|
}
|