Skip to content

Commit 118d9f1

Browse files
committed
Feat: 来自[DelegateUI]的更新.
1 parent 52e5d0d commit 118d9f1

File tree

19 files changed

+1421
-167
lines changed

19 files changed

+1421
-167
lines changed

.github/workflows/windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ jobs:
143143
# 拷贝vcRedist dll
144144
$redistDll="{0}{1}\*.CRT\*.dll" -f $env:vcToolsRedistDir.Trim(),$env:msvcArch
145145
Copy-Item $redistDll dist\
146+
# 拷贝 DelegateUI.dll
147+
Copy-Item ${{ env.Qt6_DIR }}\qml\DelegateUI.dll dist\
146148
# 拷贝WinSDK dll
147149
$sdkDll="{0}Redist\{1}ucrt\DLLs\{2}\*.dll" -f $env:winSdkDir.Trim(),$env:winSdkVer.Trim(),$env:msvcArch
148150
Copy-Item $sdkDll dist\

DelegateUI_Qt5/gallery/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.16)
22

3-
set(DELEGATEUI_VERSION 0.2.9.0)
3+
set(DELEGATEUI_VERSION 0.3.0.0)
44

55
project(Gallery VERSION ${DELEGATEUI_VERSION} LANGUAGES CXX)
66

DelegateUI_Qt5/gallery/UpdateLists.json

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
[
2+
{
3+
"isNew": true,
4+
"name": "DelBadge",
5+
"desc": "徽标数,图标右上角的圆形徽标数字。"
6+
},
7+
{
8+
"isNew": true,
9+
"name": "DelButtonBlock",
10+
"desc": "DelIconButton 的变体,用于将多个按钮组织成块,类似 DelRadioBlock。"
11+
},
12+
{
13+
"isNew": false,
14+
"name": "DelRadioBlock",
15+
"desc": "新增支持图标。"
16+
},
217
{
318
"isNew": true,
419
"name": "DelProgress",
@@ -99,12 +114,6 @@
99114
"name": "DelCheckBox",
100115
"desc": "收集用户的多项选择。"
101116
},
102-
103-
{
104-
"isNew": true,
105-
"name": "DelRadioBlock",
106-
"desc": "DelRadio 的变体,用于在多个备选项中选中单个状态。"
107-
},
108117
{
109118
"isNew": true,
110119
"name": "DelRadio",

DelegateUI_Qt5/gallery/qml.qrc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<file>qml/Examples/DataDisplay/ExpToolTip.qml</file>
1515
<file>qml/Examples/DataDisplay/ExpTourFocus.qml</file>
1616
<file>qml/Examples/DataDisplay/ExpTourStep.qml</file>
17+
<file>qml/Examples/DataDisplay/ExpBadge.qml</file>
1718
<file>qml/Examples/DataEntry/ExpAutoComplete.qml</file>
1819
<file>qml/Examples/DataEntry/ExpCheckBox.qml</file>
1920
<file>qml/Examples/DataEntry/ExpInput.qml</file>
@@ -25,6 +26,7 @@
2526
<file>qml/Examples/DataEntry/ExpSlider.qml</file>
2627
<file>qml/Examples/DataEntry/ExpSwitch.qml</file>
2728
<file>qml/Examples/DataEntry/ExpTimePicker.qml</file>
29+
<file>qml/Examples/DataEntry/ExpDatePicker.qml</file>
2830
<file>qml/Examples/Effect/ExpAcrylic.qml</file>
2931
<file>qml/Examples/Feedback/ExpDrawer.qml</file>
3032
<file>qml/Examples/Feedback/ExpMessage.qml</file>
@@ -38,6 +40,8 @@
3840
<file>qml/Examples/General/ExpPopup.qml</file>
3941
<file>qml/Examples/General/ExpRectangle.qml</file>
4042
<file>qml/Examples/General/ExpWindow.qml</file>
43+
<file>qml/Examples/General/ExpButtonBlock.qml</file>
44+
<file>qml/Examples/General/ExpText.qml</file>
4145
<file>qml/Examples/Layout/ExpDivider.qml</file>
4246
<file>qml/Examples/Navigation/ExpMenu.qml</file>
4347
<file>qml/Examples/Navigation/ExpPagination.qml</file>
@@ -48,7 +52,5 @@
4852
<file>qml/Controls/CodeRunner.qml</file>
4953
<file>qml/Controls/Description.qml</file>
5054
<file>qml/Controls/MySlider.qml</file>
51-
<file>qml/Examples/General/ExpText.qml</file>
52-
<file>qml/Examples/DataEntry/ExpDatePicker.qml</file>
5355
</qresource>
5456
</RCC>

0 commit comments

Comments
 (0)