mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-31 08:57:40 +00:00
Sync SDL3 wiki -> header
This commit is contained in:
parent
a7d4f0a76c
commit
9332de9f25
2 changed files with 22 additions and 11 deletions
|
@ -943,20 +943,26 @@ extern "C" {
|
|||
#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES"
|
||||
|
||||
/**
|
||||
* A variable describing what IME elements the OS should render natively over the game.
|
||||
* A variable describing what IME elements the OS should render natively over
|
||||
* the game.
|
||||
*
|
||||
* By default IME UI is handled using native components by the OS, however this interferes with fullscreen games in some cases.
|
||||
* By default IME UI is handled using native components by the OS, however
|
||||
* this interferes with fullscreen games in some cases.
|
||||
*
|
||||
* The variable can be set to a comma separated list containing the following items:
|
||||
* The variable can be set to a comma separated list containing the following
|
||||
* items:
|
||||
*
|
||||
* - "none" or "0": Native UI elements will not be displayed.
|
||||
* - "composition": Native UI elements will be used for the IME composition string.
|
||||
* - "composition": Native UI elements will be used for the IME composition
|
||||
* string.
|
||||
* - "candidates": Native UI elements will be used for the IME candidate list.
|
||||
* - "all" or "1": Native UI elements will be used for all IME UI. (default)
|
||||
*
|
||||
* If native UI is used for the composition string, then SDL_EVENT_TEXT_EDITING will not be sent.
|
||||
* If native UI is used for the composition string, then
|
||||
* SDL_EVENT_TEXT_EDITING will not be sent.
|
||||
*
|
||||
* If native UI is used for the candidates list, then SDL_EVENT_TEXT_EDITING_CANDIDATES will not be sent.
|
||||
* If native UI is used for the candidates list, then
|
||||
* SDL_EVENT_TEXT_EDITING_CANDIDATES will not be sent.
|
||||
*
|
||||
* This hint should be set before SDL is initialized.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue