Mercurial > sdl-ios-xcode
comparison src/video/uikit/SDL_uikitkeyboard.h @ 2406:05e8f46403c0 gsoc2008_iphone
SDL_uikitkeyboard extends SDL_uikitview to add keyboard support. It adds several methods to the SDL_uikitview class for keyboard initialization, showing, and hiding. SDL_uikitkeyboard.m contains the implementation of these methods as well as the implementation of some iPhone specific additions to SDL so that a programmer can access the functionality of hiding and showing the keyboard.
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Tue, 29 Jul 2008 17:21:49 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2405:3d0b3a7d3bea | 2406:05e8f46403c0 |
---|---|
1 /* | |
2 SDL - Simple DirectMedia Layer | |
3 Copyright (C) 1997-2006 Sam Lantinga | |
4 | |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Lesser General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2.1 of the License, or (at your option) any later version. | |
9 | |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 Lesser General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Lesser General Public | |
16 License along with this library; if not, write to the Free Software | |
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | |
19 Sam Lantinga | |
20 slouken@libsdl.org | |
21 */ | |
22 | |
23 #ifndef _SDL_uikitkeyboard_h | |
24 #define _SDL_uikitkeyboard_h | |
25 | |
26 #if SDL_IPHONE_KEYBOARD | |
27 | |
28 #import "SDL_uikitview.h" | |
29 | |
30 @interface SDL_uikitview (keyboardMethods) | |
31 | |
32 - (void)showKeyboard; | |
33 - (void)hideKeyboard; | |
34 - (void)initializeKeyboard; | |
35 | |
36 @property (readonly) BOOL keyboardVisible; | |
37 | |
38 @end | |
39 | |
40 #endif /* SDL_IPHONE_KEYBOARD */ | |
41 | |
42 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_WindowID windowID); | |
43 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_WindowID windowID); | |
44 extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_WindowID windowID); | |
45 extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_WindowID windowID); | |
46 | |
47 #endif /* _SDL_uikitkeyboard_h */ |