[client] app: add ability to receive keyboard typing in overlays

This commit is contained in:
Quantum
2021-08-14 00:18:43 -04:00
committed by Geoffrey McRae
parent 5f3bd778c0
commit 9414449408
2 changed files with 21 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ bool app_inputEnabled(void);
bool app_isCaptureMode(void);
bool app_isCaptureOnlyMode(void);
bool app_isFormatValid(void);
bool app_isOverlayMode(void);
void app_updateCursorPos(double x, double y);
void app_updateWindowPos(int x, int y);
void app_handleResizeEvent(int w, int h, double scale, const struct Border border);
@@ -59,6 +60,8 @@ void app_handleButtonRelease(int button);
void app_handleWheelMotion(double motion);
void app_handleKeyPress(int scancode);
void app_handleKeyRelease(int scancode);
void app_handleKeyboardTyped(const char * typed);
void app_handleKeyboardModifiers(bool ctrl, bool shift, bool alt, bool super);
void app_handleEnterEvent(bool entered);
void app_handleFocusEvent(bool focused);
void app_handleCloseEvent(void);