Mercurial > sdl-ios-xcode
comparison README.iphoneos @ 3685:64ce267332c6
Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 21 Jan 2010 06:21:52 +0000 |
parents | 20326ba2bda2 |
children | 52e871f486b8 |
comparison
equal
deleted
inserted
replaced
3684:cc564f08884f | 3685:64ce267332c6 |
---|---|
65 Notes -- Keyboard | 65 Notes -- Keyboard |
66 ============================================================================== | 66 ============================================================================== |
67 | 67 |
68 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. | 68 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. |
69 | 69 |
70 int SDL_iPhoneKeyboardShow(SDL_WindowID windowID) | 70 int SDL_iPhoneKeyboardShow(SDL_Window * window) |
71 -- reveals the onscreen keyboard. Returns 0 on success and -1 on error. | 71 -- reveals the onscreen keyboard. Returns 0 on success and -1 on error. |
72 int SDL_iPhoneKeyboardHide(SDL_WindowID windowID) | 72 int SDL_iPhoneKeyboardHide(SDL_Window * window) |
73 -- hides the onscreen keyboard. Returns 0 on success and -1 on error. | 73 -- hides the onscreen keyboard. Returns 0 on success and -1 on error. |
74 SDL_bool SDL_iPhoneKeyboardIsShown(SDL_WindowID windowID) | 74 SDL_bool SDL_iPhoneKeyboardIsShown(SDL_Window * window) |
75 -- returns whether or not the onscreen keyboard is currently visible. | 75 -- returns whether or not the onscreen keyboard is currently visible. |
76 int SDL_iPhoneKeyboardToggle(SDL_WindowID windowID) | 76 int SDL_iPhoneKeyboardToggle(SDL_Window * window) |
77 -- toggles the visibility of the onscreen keyboard. Returns 0 on success and -1 on error. | 77 -- toggles the visibility of the onscreen keyboard. Returns 0 on success and -1 on error. |
78 | 78 |
79 ============================================================================== | 79 ============================================================================== |
80 Notes -- Reading and Writing files | 80 Notes -- Reading and Writing files |
81 ============================================================================== | 81 ============================================================================== |