update hkuadmin

This commit is contained in:
fasiondog 2021-05-19 00:57:40 +08:00
parent 6ba6155fc8
commit 3f68454d29
14 changed files with 1131 additions and 961 deletions

View File

@ -120,17 +120,19 @@ class MyMainWindow(QtWidgets.QMainWindow):
def initAction(self):
self.action_dict = dict(
action_new_file_session=QtWidgets.QAction(
QtGui.QIcon(":/icon/new_16.png"), _translate("MainWindow", "&New Session"), self
QtGui.QIcon(":/icon/new_32.png"), _translate("MainWindow", "&New Session"), self
),
action_edit_file_session=QtWidgets.QAction(
QtGui.QIcon(":/icon/edit_16.png"), _translate("MainWindow", "&Edit Session"), self
QtGui.QIcon(":/icon/edit_32.png"), _translate("MainWindow", "&Edit Session"), self
),
action_del_file_session=QtWidgets.QAction(
QtGui.QIcon(":/icon/cancel_16.png"), _translate("MainWindow", "&Remove Session"), self
QtGui.QIcon(":/icon/cancel_32.png"), _translate("MainWindow", "&Remove Session"), self
),
action_file_connect=QtWidgets.QAction(
QtGui.QIcon(":/icon/connect_32.png"), _translate('MainWindow', '&Connect Now')
),
action_file_connect=QtWidgets.QAction(_translate('MainWindow', '&Connect Now')),
action_file_quit=QtWidgets.QAction(
QtGui.QIcon(":/icon/quit_16.png"), _translate('MainWindow', '&Quit'), self
QtGui.QIcon(":/icon/quit_32.png"), _translate('MainWindow', '&Quit'), self
),
action_view_normal_style=QtWidgets.QAction(_translate('MainWindow', 'Normal style'), self),
action_view_dark_style=QtWidgets.QAction(_translate('MainWindow', 'Dark style'), self),

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 410 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -6,13 +6,14 @@
<file>logo/logo_64.png</file>
<file>logo/logo_128.png</file>
<file>logo/logo_256.png</file>
<file>icon/quit_16.png</file>
<file>icon/quit_32.png</file>
<file>icon/server_16.png</file>
<file>icon/server_32.png</file>
<file>icon/connect_32.png</file>
<file>icon/not_connect_16.png</file>
<file>icon/new_16.png</file>
<file>icon/edit_16.png</file>
<file>icon/cancel_16.png</file>
<file>icon/new_32.png</file>
<file>icon/edit_32.png</file>
<file>icon/cancel_32.png</file>
<file>icon/circular_green.png</file>
<file>icon/circular_yellow.png</file>
</qresource>

View File

@ -144,8 +144,6 @@ setup(
'requests',
'qdarkstyle',
'flatbuffers',
'pynng',
'requests',
'sqlalchemy'
'pynng'
],
)