Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404438
This commit is contained in:
parent
d7496843fc
commit
a0e019f786
73 changed files with 854 additions and 1068 deletions
|
@ -67,13 +67,13 @@ Notes -- Keyboard
|
|||
|
||||
SDL for iPhone contains several additional functions related to keyboard visibility. These functions are not part of the SDL standard API, but are necessary for revealing and hiding the iPhone's virtual onscreen keyboard. You can use them in your own applications by including a copy of the SDL_uikitkeyboard.h header (located in src/video/uikit) in your project.
|
||||
|
||||
int SDL_iPhoneKeyboardShow(SDL_WindowID windowID)
|
||||
int SDL_iPhoneKeyboardShow(SDL_Window * window)
|
||||
-- reveals the onscreen keyboard. Returns 0 on success and -1 on error.
|
||||
int SDL_iPhoneKeyboardHide(SDL_WindowID windowID)
|
||||
int SDL_iPhoneKeyboardHide(SDL_Window * window)
|
||||
-- hides the onscreen keyboard. Returns 0 on success and -1 on error.
|
||||
SDL_bool SDL_iPhoneKeyboardIsShown(SDL_WindowID windowID)
|
||||
SDL_bool SDL_iPhoneKeyboardIsShown(SDL_Window * window)
|
||||
-- returns whether or not the onscreen keyboard is currently visible.
|
||||
int SDL_iPhoneKeyboardToggle(SDL_WindowID windowID)
|
||||
int SDL_iPhoneKeyboardToggle(SDL_Window * window)
|
||||
-- toggles the visibility of the onscreen keyboard. Returns 0 on success and -1 on error.
|
||||
|
||||
==============================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue