| 960 | } |
| 961 | |
| 962 | bool callKeyUpEventBackToFront(uint32_t charCode, uint32_t keyCode) |
| 963 | { |
| 964 | for (auto it = _windows.rbegin(); it != _windows.rend(); it++) |
| 965 | { |
| 966 | auto& w = *it; |
| 967 | if (w.callKeyUp(charCode, keyCode)) |
| 968 | { |
| 969 | return true; |
| 970 | } |
| 971 | } |
| 972 | return false; |
| 973 | } |
| 974 | |
| 975 | // 0x004CD296 |
| 976 | void relocateWindows() |