MCPcopy Create free account
hub / github.com/EasyIME/PIME / isKeyDown

Method isKeyDown

python/textService.py:45–46  ·  view source on GitHub ↗
(self, code)

Source from the content-addressed store, hash-verified

43 self.keyStates = msg["keyStates"]
44
45 def isKeyDown(self, code):
46 return (self.keyStates[code] & (1 << 7)) != 0
47
48 def isKeyToggled(self, code):
49 return (self.keyStates[code] & 1) != 0

Callers 12

filterKeyDownMethod · 0.80
onKeyDownMethod · 0.80
filterKeyUpMethod · 0.80
onKeyDownMethod · 0.80
translateModifiersFunction · 0.80
filterKeyDownMethod · 0.80
onKeyDownMethod · 0.80
filterKeyUpMethod · 0.80
onKeyUpMethod · 0.80
has_modifiersMethod · 0.80
onKeyDownMethod · 0.80
onKeyUpMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected