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. 武将技能按顺序添加
90 lines
1.9 KiB
QML
90 lines
1.9 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
|
|
Item {
|
|
property bool enabled: true
|
|
property alias text: title.text
|
|
property alias textColor: title.color
|
|
property alias textFont: title.font
|
|
property alias backgroundColor: bg.color
|
|
property alias border: bg.border
|
|
property alias iconSource: icon.source
|
|
property int padding: 5
|
|
|
|
signal clicked
|
|
signal rightClicked
|
|
|
|
id: button
|
|
width: icon.width + title.implicitWidth + padding * 2
|
|
height: Math.max(icon.height, title.implicitHeight) + padding * 2
|
|
|
|
Rectangle {
|
|
id: bg
|
|
anchors.fill: parent
|
|
color: "black"
|
|
border.width: 2
|
|
border.color: "white"
|
|
opacity: 0.8
|
|
}
|
|
|
|
states: [
|
|
State {
|
|
name: "hovered"; when: hover.hovered
|
|
PropertyChanges { target: bg; color: "white" }
|
|
PropertyChanges { target: title; color: "black" }
|
|
},
|
|
State {
|
|
name: "disabled"; when: !enabled
|
|
PropertyChanges { target: button; opacity: 0.2 }
|
|
}
|
|
]
|
|
|
|
TapHandler {
|
|
id: mouse
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton | Qt.NoButton
|
|
gesturePolicy: TapHandler.WithinBounds
|
|
|
|
onTapped: (p, btn) => {
|
|
if (parent.enabled) {
|
|
if (btn === Qt.LeftButton || btn === Qt.NoButton) {
|
|
parent.clicked();
|
|
} else if (btn === Qt.RightButton) {
|
|
parent.rightClicked();
|
|
}
|
|
}
|
|
}
|
|
|
|
onLongPressed: {
|
|
parent.rightClicked();
|
|
}
|
|
}
|
|
|
|
HoverHandler {
|
|
id: hover
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|
|
|
|
Row {
|
|
x: padding
|
|
y: padding
|
|
anchors.centerIn: parent
|
|
spacing: 5
|
|
|
|
Image {
|
|
id: icon
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
fillMode: Image.PreserveAspectFit
|
|
}
|
|
|
|
Text {
|
|
id: title
|
|
font.pixelSize: 18
|
|
// font.family: "WenQuanYi Micro Hei"
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: ""
|
|
color: "white"
|
|
}
|
|
}
|
|
}
|