| 1347 | } |
| 1348 | |
| 1349 | void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars) |
| 1350 | { |
| 1351 | if (!AppAcceptingEvents) |
| 1352 | return; |
| 1353 | while (*utf8_chars != 0) |
| 1354 | { |
| 1355 | unsigned int c = 0; |
| 1356 | utf8_chars += ImTextCharFromUtf8(&c, utf8_chars, NULL); |
| 1357 | AddInputCharacter(c); |
| 1358 | } |
| 1359 | } |
| 1360 | |
| 1361 | // Clear all incoming events. |
| 1362 | void ImGuiIO::ClearEventsQueue() |
nothing calls this directly
no test coverage detected