2025-05-29 14:04:05 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
|
import QtQuick.Layouts 1.15
|
2025-09-15 09:46:04 +08:00
|
|
|
|
import HuskarUI.Basic 1.0
|
2025-05-29 14:04:05 +08:00
|
|
|
|
import "../MyGlobals" 1.0
|
|
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
anchors.leftMargin: 1
|
|
|
|
|
|
|
|
|
|
|
|
ShaderEffect {
|
|
|
|
|
|
id:about_shader
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
vertexShader: "qrc:/shaders/effect2.vert"
|
|
|
|
|
|
fragmentShader: "qrc:/shaders/effect2.frag"
|
|
|
|
|
|
opacity: 0.3
|
|
|
|
|
|
|
|
|
|
|
|
property vector3d iResolution: Qt.vector3d(width, height, 0)
|
|
|
|
|
|
property real iTime: 0
|
|
|
|
|
|
|
|
|
|
|
|
Timer {
|
|
|
|
|
|
id: timer
|
|
|
|
|
|
running: true
|
|
|
|
|
|
repeat: true
|
|
|
|
|
|
interval: 15
|
|
|
|
|
|
onTriggered: parent.iTime += 0.01;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
|
|
id:cl
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
// spacing: 20
|
|
|
|
|
|
// padding: 20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
|
visible: true
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
color: "transparent"
|
2025-09-15 09:46:04 +08:00
|
|
|
|
border.color: HusTheme.isDark ? HusTheme.HusCollapse.colorBorderDark : HusTheme.HusCollapse.colorBorder
|
2025-05-29 14:04:05 +08:00
|
|
|
|
border.width: 1
|
|
|
|
|
|
radius: 8
|
|
|
|
|
|
|
|
|
|
|
|
Column{
|
|
|
|
|
|
spacing: 10
|
|
|
|
|
|
topPadding: 10
|
|
|
|
|
|
leftPadding: 10
|
|
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
|
font.pixelSize: 32
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text:"DP-S客户端插件管理工具"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text:"作者: 倾泪寒"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text:"联系QQ:947330670"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text:"开发文档:"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text: "<a href='https://dps-doc.senzo.online/#/'>https://dps-doc.senzo.online</a>"
|
|
|
|
|
|
textFormat: Text.RichText
|
|
|
|
|
|
onLinkActivated: (url) => Qt.openUrlExternally(url)
|
|
|
|
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
|
|
acceptedButtons: Qt.NoButton // 传递点击事件给父控件
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text:"QQ交流群:"
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
text: "<a href='https://qm.qq.com/q/J0wVu0oAwK'>点击链接加入群聊【DP-S插件】</a>"
|
|
|
|
|
|
textFormat: Text.RichText
|
|
|
|
|
|
onLinkActivated: (url) => Qt.openUrlExternally(url)
|
|
|
|
|
|
MouseArea {
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
|
|
acceptedButtons: Qt.NoButton // 传递点击事件给父控件
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Row{
|
|
|
|
|
|
Text{
|
|
|
|
|
|
text:"捐赠:"
|
|
|
|
|
|
font.pixelSize: 20
|
2025-09-15 09:46:04 +08:00
|
|
|
|
font.family: HusTheme.Primary.fontPrimaryFamily
|
|
|
|
|
|
color:HusTheme.Primary.colorTextBase
|
2025-05-29 14:04:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Image{
|
|
|
|
|
|
width: 781*0.67
|
|
|
|
|
|
height: 646*0.67
|
|
|
|
|
|
source:"qrc:/image/code.png"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|