2008-01-18 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-event.h: Add a gunichar field for the Unicode
	representation of the key. (#555)
This commit is contained in:
Emmanuele Bassi 2008-01-18 11:58:16 +00:00
parent 5b6a9701e2
commit a68067b06c
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-01-18 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-event.h: Add a gunichar field for the Unicode
representation of the key. (#555)
2008-01-18 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.h:

View File

@ -212,6 +212,7 @@ struct _ClutterAnyEvent
* @modifier_state: key modifiers
* @keyval: raw key value
* @hardware_keycode: raw hardware key value
* @unicode_value: Unicode representation
*
* Key event
*
@ -226,6 +227,7 @@ struct _ClutterKeyEvent
ClutterModifierType modifier_state;
guint keyval;
guint16 hardware_keycode;
gunichar unicode_value;
};
/**