Skip to content

Commit 6937144

Browse files
committed
add lang and modify search button
1 parent 45519c6 commit 6937144

22 files changed

+463
-24
lines changed

.settings/org.eclipse.core.resources.prefs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ encoding//Test/TestSkinDialog.py=utf-8
2020
encoding//Test/TestToolTip.py=utf-8
2121
encoding//Test/TestTreeView.py=utf-8
2222
encoding//Test/TestWaterWidget.py=utf-8
23-
encoding//Test/Ui2Py.py=utf-8
24-
encoding//Test/buildexetest/PyQtClient.py=utf-8
25-
encoding//Test/buildexetest/setup_win.py=utf-8
26-
encoding//Test/buildzip.py=utf-8
27-
encoding//Test/compilepy.py=utf-8
23+
encoding//Tools/Ui2Py.py=utf-8
24+
encoding//Tools/buildexetest/PyQtClient.py=utf-8
25+
encoding//Tools/buildexetest/setup_win.py=utf-8
26+
encoding//Tools/buildzip.py=utf-8
27+
encoding//Tools/compilepy.py=utf-8
28+
encoding//Tools/makelang.py=utf-8
2829
encoding//UiFiles/Ui_ErrorDialog.py=utf-8
2930
encoding//UiFiles/Ui_LoginDialog.py=utf-8
3031
encoding//UiFiles/Ui_MainWindow.py=utf-8

PyQtClient.pro

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
SOURCES = UiFiles/Ui_DonateDialog.py\
2+
UiFiles/Ui_ErrorDialog.py\
3+
UiFiles/Ui_IssuesDialog.py\
4+
UiFiles/Ui_LoginDialog.py\
5+
UiFiles/Ui_MainWindow.py\
6+
UiFiles/Ui_PreviewWidget.py\
7+
UiFiles/Ui_ScrollArea.py\
8+
UiFiles/Ui_SkinDialog.py\
9+
UiFiles/Ui_UpdateDialog.py\
10+
Utils/Application.py\
11+
Utils/ColorThief.py\
12+
Utils/CommonUtil.py\
13+
Utils/Constants.py\
14+
Utils/GitThread.py\
15+
Utils/GradientUtils.py\
16+
Utils/NetworkAccessManager.py\
17+
Utils/SortFilterModel.py\
18+
Utils/TestColourfulWidget.py\
19+
Utils/ThemeManager.py\
20+
Utils/ThemeThread.py\
21+
Utils/Version.py\
22+
Widgets/FramelessWindow.py\
23+
Widgets/MainWindow.py\
24+
Widgets/MainWindowBase.py\
25+
Widgets/ToolTip.py\
26+
Widgets/TreeView.py\
27+
Widgets/WaterWidget.py\
28+
29+
FORMS = UiFiles/DonateDialog.ui\
30+
UiFiles/ErrorDialog.ui\
31+
UiFiles/IssuesDialog.ui\
32+
UiFiles/LoginDialog.ui\
33+
UiFiles/MainWindow.ui\
34+
UiFiles/PreviewWidget.ui\
35+
UiFiles/ScrollArea.ui\
36+
UiFiles/SkinDialog.ui\
37+
UiFiles/UpdateDialog.ui\
38+
39+
TRANSLATIONS = pyqtclient_zh_CN.ts
40+
CODECFORTR = UTF-8
41+
CODECFORSRC = UTF-8

Resources/Themes/Dark/style.qss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ QLineEdit {
114114
border-bottom-left-radius: 15px;
115115
}
116116
/*搜索框中的按钮*/
117-
#buttonSearch {
117+
#buttonClear {
118118
min-width: 26px;
119119
max-width: 26px;
120120
min-height: 26px;
@@ -124,7 +124,7 @@ QLineEdit {
124124
qproperty-bgColor: rgba(38, 38, 38, 255);
125125
outline: none;
126126
font-family: "pyqtclient";
127-
qproperty-text: "\5100";
127+
qproperty-text: "\2103";
128128
}
129129

130130
/*目录树*/

Resources/Themes/Default/style.qss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ QLineEdit {
114114
border-bottom-left-radius: 15px;
115115
}
116116
/*搜索框中的按钮*/
117-
#buttonSearch {
117+
#buttonClear {
118118
min-width: 26px;
119119
max-width: 26px;
120120
min-height: 26px;
@@ -124,7 +124,7 @@ QLineEdit {
124124
qproperty-bgColor: rgba(39, 174, 97, 255);
125125
outline: none;
126126
font-family: "pyqtclient";
127-
qproperty-text: "\5100";
127+
qproperty-text: "\2103";
128128
}
129129

130130
/*目录树*/

Resources/Themes/春节/style.qss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ QLineEdit {
115115
border-bottom-left-radius: 15px;
116116
}
117117
/*搜索框中的按钮*/
118-
#buttonSearch {
118+
#buttonClear {
119119
min-width: 26px;
120120
max-width: 26px;
121121
min-height: 26px;
@@ -125,7 +125,7 @@ QLineEdit {
125125
qproperty-bgColor: rgba(200, 47, 10, 255);
126126
outline: none;
127127
font-family: "pyqtclient";
128-
qproperty-text: "\5100";
128+
qproperty-text: "\2103";
129129
}
130130

131131
/*目录树*/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)