SDL_SetWindowModal

Toggle the state of the window as modal.

To enable modal status on a window, the window must currently be the child window of a parent, or toggling modal status on will fail.

extern (C) nothrow @nogc extern
bool
SDL_SetWindowModal

Parameters

window SDL_Window*

the window on which to set the modal state.

modal bool

true to toggle modal status on, false to toggle it off.

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Threadsafety: This function should only be called on the main thread.

See Also

SDL_SetWindowParent SDL_WINDOW_MODAL

Meta