mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-28 08:04:13 +08:00
.
This commit is contained in:
parent
286e8484a4
commit
f7b0b7c443
@ -1,7 +1,7 @@
|
|||||||
from qtsymbols import *
|
from qtsymbols import *
|
||||||
import functools
|
import functools
|
||||||
import gobject, windows, winsharedutils
|
import gobject, windows, winsharedutils
|
||||||
from myutils.config import globalconfig, static_data
|
from myutils.config import globalconfig, get_platform
|
||||||
from myutils.winsyshotkey import SystemHotkey, registerException
|
from myutils.winsyshotkey import SystemHotkey, registerException
|
||||||
from myutils.hwnd import grabwindow
|
from myutils.hwnd import grabwindow
|
||||||
from myutils.utils import parsekeystringtomodvkcode, unsupportkey
|
from myutils.utils import parsekeystringtomodvkcode, unsupportkey
|
||||||
@ -98,8 +98,20 @@ def registrhotkeys(self):
|
|||||||
regist_or_not_key(self, name)
|
regist_or_not_key(self, name)
|
||||||
|
|
||||||
|
|
||||||
def setTab_quick(self, l: QVBoxLayout):
|
hotkeys = [
|
||||||
|
["通用", ["_1", "_2", "_3", "_5", "_51", "_6", "_8", "_9", "_10", "_16", "_17"]],
|
||||||
|
["HOOK", ["_11", "_12"]],
|
||||||
|
["OCR", ["_13", "_14", "_14_1", "_23", "_26", "_26_1"]],
|
||||||
|
["剪贴板", ["36", "_4", "_28"]],
|
||||||
|
["TTS", ["_32", "_7", "_7_1"]],
|
||||||
|
["游戏", ["_15", "_20", "_21", "_22", "_25", "_27", "_31"]],
|
||||||
|
["查词", ["_29", "_30", "_35", "_33"]],
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
def setTab_quick(self, l: QVBoxLayout):
|
||||||
|
if get_platform() == "xp":
|
||||||
|
hotkeys.pop(2)
|
||||||
l.addWidget(
|
l.addWidget(
|
||||||
getboxlayout(
|
getboxlayout(
|
||||||
[
|
[
|
||||||
@ -119,7 +131,7 @@ def setTab_quick(self, l: QVBoxLayout):
|
|||||||
def ___x(ls, l):
|
def ___x(ls, l):
|
||||||
makescrollgrid(setTab_quick_lazy(self, ls), l)
|
makescrollgrid(setTab_quick_lazy(self, ls), l)
|
||||||
|
|
||||||
for _ in static_data["hotkeys"]:
|
for _ in hotkeys:
|
||||||
__vis.append(_[0])
|
__vis.append(_[0])
|
||||||
__.append(functools.partial(___x, _[1]))
|
__.append(functools.partial(___x, _[1]))
|
||||||
tab, do = makesubtab_lazy(__vis, __, delay=True)
|
tab, do = makesubtab_lazy(__vis, __, delay=True)
|
||||||
|
@ -1553,78 +1553,5 @@
|
|||||||
"bangumi_oauth": {
|
"bangumi_oauth": {
|
||||||
"client_id": "bgm31536662bc84ee9a9",
|
"client_id": "bgm31536662bc84ee9a9",
|
||||||
"client_secret": "b4ca9f5dc7c3819bff163843e1b5cdb0"
|
"client_secret": "b4ca9f5dc7c3819bff163843e1b5cdb0"
|
||||||
},
|
}
|
||||||
"hotkeys": [
|
|
||||||
[
|
|
||||||
"通用",
|
|
||||||
[
|
|
||||||
"_1",
|
|
||||||
"_2",
|
|
||||||
"_3",
|
|
||||||
"_5",
|
|
||||||
"_51",
|
|
||||||
"_6",
|
|
||||||
"_8",
|
|
||||||
"_9",
|
|
||||||
"_10",
|
|
||||||
"_16",
|
|
||||||
"_17"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"HOOK",
|
|
||||||
[
|
|
||||||
"_11",
|
|
||||||
"_12"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"OCR",
|
|
||||||
[
|
|
||||||
"_13",
|
|
||||||
"_14",
|
|
||||||
"_14_1",
|
|
||||||
"_23",
|
|
||||||
"_26",
|
|
||||||
"_26_1"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"剪贴板",
|
|
||||||
[
|
|
||||||
"36",
|
|
||||||
"_4",
|
|
||||||
"_28"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"TTS",
|
|
||||||
[
|
|
||||||
"_32",
|
|
||||||
"_7",
|
|
||||||
"_7_1"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"游戏",
|
|
||||||
[
|
|
||||||
"_15",
|
|
||||||
"_20",
|
|
||||||
"_21",
|
|
||||||
"_22",
|
|
||||||
"_25",
|
|
||||||
"_27",
|
|
||||||
"_31"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"查词",
|
|
||||||
[
|
|
||||||
"_29",
|
|
||||||
"_30",
|
|
||||||
"_35",
|
|
||||||
"_33"
|
|
||||||
]
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user