update hkuadmin
@ -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),
|
||||
|
Before Width: | Height: | Size: 669 B |
BIN
hikyuu/admin/resource/icon/cancel_32.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
hikyuu/admin/resource/icon/connect.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
hikyuu/admin/resource/icon/connect_32.png
Normal file
After Width: | Height: | Size: 763 B |
Before Width: | Height: | Size: 410 B |
BIN
hikyuu/admin/resource/icon/edit_32.png
Normal file
After Width: | Height: | Size: 686 B |
Before Width: | Height: | Size: 287 B |
BIN
hikyuu/admin/resource/icon/new_32.png
Normal file
After Width: | Height: | Size: 468 B |
Before Width: | Height: | Size: 624 B |
BIN
hikyuu/admin/resource/icon/quit_32.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
@ -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>
|
||||
|
@ -144,8 +144,6 @@ setup(
|
||||
'requests',
|
||||
'qdarkstyle',
|
||||
'flatbuffers',
|
||||
'pynng',
|
||||
'requests',
|
||||
'sqlalchemy'
|
||||
'pynng'
|
||||
],
|
||||
)
|