Add OGKCharacterTypedEvent.

This commit is contained in:
Jonathan Schleifer 2012-08-28 21:58:49 +02:00
parent a98c97edb2
commit 0dca20000d
5 changed files with 57 additions and 6 deletions

View file

@ -45,6 +45,12 @@
@interface OGKKeyReleaseEvent: OGKKeyboardEvent
@end
@interface OGKCharacterTypedEvent: OGKKeyboardEvent
@property (readonly, assign) of_unichar_t character;
@property (readonly, assign) unsigned modifiers;
@property (readonly, assign) BOOL repeated;
@end
@interface OGKMouseEvent: OGKEvent
@property (readonly, assign) of_point_t cursor;
@property (readonly, assign) of_point_t wheel;