Mercurial > sdl-ios-xcode
comparison include/SDL_events.h @ 4434:5c64052fb476
changeset: 4433:25667ea797fa
tag: tip
user: Jiang Jiang <gzjjgod@gmail.com>
date: Thu Apr 15 12:01:46 2010 +0800
summary: Add windowID to text editing event
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 15 Apr 2010 22:14:26 -0700 |
parents | faa9fc8e7f67 |
children | e953700da4ca |
comparison
equal
deleted
inserted
replaced
4433:9fa97c6b0014 | 4434:5c64052fb476 |
---|---|
136 * \brief Keyboard text editing event structure (event.edit.*) | 136 * \brief Keyboard text editing event structure (event.edit.*) |
137 */ | 137 */ |
138 typedef struct SDL_TextEditingEvent | 138 typedef struct SDL_TextEditingEvent |
139 { | 139 { |
140 Uint32 type; /**< ::SDL_TEXTEDITING */ | 140 Uint32 type; /**< ::SDL_TEXTEDITING */ |
141 Uint32 windowID; /**< The window with keyboard focus, if any */ | |
141 char text[SDL_TEXTEDITINGEVENT_TEXT_SIZE]; /**< The editing text */ | 142 char text[SDL_TEXTEDITINGEVENT_TEXT_SIZE]; /**< The editing text */ |
142 int start; /**< The start cursor of selected editing text */ | 143 int start; /**< The start cursor of selected editing text */ |
143 int length; /**< The length of selected editing text */ | 144 int length; /**< The length of selected editing text */ |
144 } SDL_TextEditingEvent; | 145 } SDL_TextEditingEvent; |
145 | 146 |