(self, cbTS, guid)
| 2385 | |
| 2386 | |
| 2387 | def onPreservedKey(self, cbTS, guid): |
| 2388 | cbTS.lastKeyDownCode = 0; |
| 2389 | # some preserved keys registered are pressed |
| 2390 | if guid == SHIFT_SPACE_GUID: # 使用者按下 shift + space |
| 2391 | cbTS.isShapeModeChanged = True |
| 2392 | self.toggleShapeMode(cbTS) # 切換全半形 |
| 2393 | return True |
| 2394 | return False |
| 2395 | |
| 2396 | |
| 2397 | def onCommand(self, cbTS, commandId, commandType): |
nothing calls this directly
no test coverage detected