mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
rm
This commit is contained in:
parent
c9f964b1bd
commit
96e41bd3b5
@ -1,11 +0,0 @@
|
|||||||
from scalemethod.base import scalebase
|
|
||||||
from winsharedutils import letfullscreen, recoverwindow
|
|
||||||
|
|
||||||
|
|
||||||
class Method(scalebase):
|
|
||||||
def changestatus(self, hwnd, full):
|
|
||||||
if full:
|
|
||||||
self.savewindowstatus = letfullscreen(hwnd)
|
|
||||||
else:
|
|
||||||
recoverwindow(hwnd, self.savewindowstatus)
|
|
||||||
return True
|
|
@ -1,13 +0,0 @@
|
|||||||
from scalemethod.base import scalebase
|
|
||||||
import windows
|
|
||||||
|
|
||||||
|
|
||||||
class Method(scalebase):
|
|
||||||
def changestatus(self, hwnd, full):
|
|
||||||
windows.SetForegroundWindow(hwnd)
|
|
||||||
windows.keybd_event(18, 0, 0, 0) # alt
|
|
||||||
windows.keybd_event(13, 0, 0, 0) # enter
|
|
||||||
|
|
||||||
windows.keybd_event(13, 0, windows.KEYEVENTF_KEYUP, 0)
|
|
||||||
windows.keybd_event(18, 0, windows.KEYEVENTF_KEYUP, 0)
|
|
||||||
return True
|
|
@ -7,7 +7,6 @@ from ctypes import (
|
|||||||
pointer,
|
pointer,
|
||||||
CDLL,
|
CDLL,
|
||||||
c_int,
|
c_int,
|
||||||
Structure,
|
|
||||||
c_void_p,
|
c_void_p,
|
||||||
cast,
|
cast,
|
||||||
memmove,
|
memmove,
|
||||||
@ -15,14 +14,12 @@ from ctypes import (
|
|||||||
create_string_buffer,
|
create_string_buffer,
|
||||||
c_size_t,
|
c_size_t,
|
||||||
windll,
|
windll,
|
||||||
c_float,
|
|
||||||
c_double,
|
c_double,
|
||||||
c_char,
|
c_char,
|
||||||
CFUNCTYPE,
|
CFUNCTYPE,
|
||||||
c_long,
|
c_long,
|
||||||
)
|
)
|
||||||
from ctypes.wintypes import WORD, HANDLE, HWND, LONG, DWORD, RECT
|
from ctypes.wintypes import WORD, HWND, DWORD, RECT
|
||||||
from windows import WINDOWPLACEMENT
|
|
||||||
import gobject
|
import gobject
|
||||||
|
|
||||||
utilsdll = CDLL(gobject.GetDllpath(("winsharedutils32.dll", "winsharedutils64.dll")))
|
utilsdll = CDLL(gobject.GetDllpath(("winsharedutils32.dll", "winsharedutils64.dll")))
|
||||||
@ -258,17 +255,6 @@ showintab = utilsdll.showintab
|
|||||||
showintab.argtypes = HWND, c_bool, c_bool
|
showintab.argtypes = HWND, c_bool, c_bool
|
||||||
|
|
||||||
|
|
||||||
class windowstatus(Structure):
|
|
||||||
_fields_ = [("wpc", WINDOWPLACEMENT), ("HWNDStyle", LONG), ("HWNDStyleEx", LONG)]
|
|
||||||
|
|
||||||
|
|
||||||
letfullscreen = utilsdll.letfullscreen
|
|
||||||
letfullscreen.argtypes = (HWND,)
|
|
||||||
letfullscreen.restype = windowstatus
|
|
||||||
|
|
||||||
recoverwindow = utilsdll.recoverwindow
|
|
||||||
recoverwindow.argtypes = HWND, windowstatus
|
|
||||||
|
|
||||||
pid_running = utilsdll.pid_running
|
pid_running = utilsdll.pid_running
|
||||||
pid_running.argtypes = (DWORD,)
|
pid_running.argtypes = (DWORD,)
|
||||||
pid_running.restype = c_bool
|
pid_running.restype = c_bool
|
||||||
|
@ -1957,14 +1957,10 @@
|
|||||||
},
|
},
|
||||||
"scalemethods": [
|
"scalemethods": [
|
||||||
"magpie_builtin",
|
"magpie_builtin",
|
||||||
"alt_enter",
|
|
||||||
"SW_SHOWMAXIMIZED",
|
|
||||||
"external_magpie"
|
"external_magpie"
|
||||||
],
|
],
|
||||||
"scalemethods_vis": [
|
"scalemethods_vis": [
|
||||||
"Magpie",
|
"Magpie",
|
||||||
"ALT+ENTER",
|
|
||||||
"SW_SHOWMAXIMIZED",
|
|
||||||
"Magpie_External"
|
"Magpie_External"
|
||||||
],
|
],
|
||||||
"transoptimi": [
|
"transoptimi": [
|
||||||
|
@ -22,38 +22,6 @@ DECLARE void showintab(HWND hwnd, bool show, bool tool)
|
|||||||
SetWindowLong(hwnd, GWL_EXSTYLE, style_ex);
|
SetWindowLong(hwnd, GWL_EXSTYLE, style_ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct windowstatus
|
|
||||||
{
|
|
||||||
WINDOWPLACEMENT wpc;
|
|
||||||
LONG HWNDStyle, HWNDStyleEx;
|
|
||||||
};
|
|
||||||
|
|
||||||
DECLARE windowstatus letfullscreen(HWND hwnd)
|
|
||||||
{
|
|
||||||
WINDOWPLACEMENT wpc;
|
|
||||||
GetWindowPlacement(hwnd, &wpc);
|
|
||||||
auto HWNDStyle = GetWindowLong(hwnd, GWL_STYLE);
|
|
||||||
auto HWNDStyleEx = GetWindowLong(hwnd, GWL_EXSTYLE);
|
|
||||||
auto NewHWNDStyle = HWNDStyle;
|
|
||||||
NewHWNDStyle &= ~WS_BORDER;
|
|
||||||
NewHWNDStyle &= ~WS_DLGFRAME;
|
|
||||||
NewHWNDStyle &= ~WS_THICKFRAME;
|
|
||||||
auto NewHWNDStyleEx = HWNDStyleEx;
|
|
||||||
NewHWNDStyleEx &= ~WS_EX_WINDOWEDGE;
|
|
||||||
SetWindowLong(hwnd, GWL_STYLE, NewHWNDStyle | WS_POPUP);
|
|
||||||
SetWindowLong(
|
|
||||||
hwnd, GWL_EXSTYLE, NewHWNDStyleEx | WS_EX_TOPMOST);
|
|
||||||
ShowWindow(hwnd, SW_SHOWMAXIMIZED);
|
|
||||||
return {wpc, HWNDStyle, HWNDStyleEx};
|
|
||||||
}
|
|
||||||
|
|
||||||
DECLARE void recoverwindow(HWND hwnd, windowstatus status)
|
|
||||||
{
|
|
||||||
SetWindowLong(hwnd, GWL_STYLE, status.HWNDStyle);
|
|
||||||
SetWindowLong(hwnd, GWL_EXSTYLE, status.HWNDStyleEx);
|
|
||||||
ShowWindow(hwnd, SW_SHOWNORMAL);
|
|
||||||
SetWindowPlacement(hwnd, &status.wpc);
|
|
||||||
}
|
|
||||||
DECLARE bool pid_running(DWORD pid)
|
DECLARE bool pid_running(DWORD pid)
|
||||||
{
|
{
|
||||||
DWORD code;
|
DWORD code;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user