Add i3 focus tracking and harden X11 handoff

This commit is contained in:
Storm Dragon
2026-07-30 18:53:56 -04:00
parent f4ee5e4468
commit c39f3bda47
17 changed files with 1379 additions and 76 deletions
@@ -19,6 +19,28 @@ class WineAccessControllerContractTests(unittest.TestCase):
match.group(0),
)
def test_helper_uses_windows_subsystem_without_a_console_window(self):
cmakePath = Path(__file__).resolve().parents[1] / "wine-access" / "CMakeLists.txt"
source = cmakePath.read_text(encoding="utf-8")
self.assertIn(
"target_link_options(cthulhu-wine-access PRIVATE -mwindows)",
source,
)
def test_compatibility_window_stays_hidden_zero_sized_and_nonactivating(self):
sourcePath = Path(__file__).resolve().parents[1] / "wine-access" / "main.cpp"
source = sourcePath.read_text(encoding="utf-8")
self.assertIn("WS_EX_NOACTIVATE | WS_EX_TOOLWINDOW", source)
self.assertIsNotNone(re.search(
r"CreateWindowExW\(WS_EX_NOACTIVATE \| WS_EX_TOOLWINDOW,.*?"
r"L\"NVDA\", 0, 0, 0, 0, 0,",
source,
re.DOTALL,
))
self.assertIn("ShowWindow(window, SW_HIDE)", source)
if __name__ == "__main__":
unittest.main()