MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / KeyCode

Method KeyCode

gui/qt/keypad/keycode.h:7–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6struct KeyCode {
7 KeyCode() : mCode(~0) {}
8 KeyCode(unsigned code) : mCode(code) {}
9 KeyCode(unsigned row, unsigned col) : mCode(((row & 7) << 3) |
10 ((col & 7) << 0)) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected