2008-01-18 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Fri, 18 Jan 2008 11:58:16 +0000 (11:58 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Fri, 18 Jan 2008 11:58:16 +0000 (11:58 +0000)
* clutter/clutter-event.h: Add a gunichar field for the Unicode
representation of the key. (#555)

ChangeLog
clutter/clutter-event.h

index ffd5e06..d17870e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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:
        * clutter/clutter-script.h:
        * clutter/clutter-stage.h:
index 28bb5c0..b6c50fc 100644 (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;
 };
 
 /**