summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Haneman <billh@src.gnome.org>2001-11-20 11:34:09 +0000
committerBill Haneman <billh@src.gnome.org>2001-11-20 11:34:09 +0000
commita3559569ea4dccb8858ec3332fabee5e069230b0 (patch)
tree9738ba7f6b815bd8b087bafc2f4baa6a96dfa25d
parent615197f7d958094cda85d76517c8ccd7797bb0b6 (diff)
downloadatk-a3559569ea4dccb8858ec3332fabee5e069230b0.tar.gz
Introduced AtkKeyEventType, to insulate us from GDK dependencies.
-rwxr-xr-xatk/atkutil.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/atk/atkutil.h b/atk/atkutil.h
index 5fadb95..fe6d6eb 100755
--- a/atk/atkutil.h
+++ b/atk/atkutil.h
@@ -57,9 +57,16 @@ struct _AtkKeyEventStruct {
gint length;
gchar *string;
guint16 keycode;
- guint32 time;
+ guint32 timestamp;
};
+typedef enum
+{
+ ATK_KEY_EVENT_PRESS,
+ ATK_KEY_EVENT_RELEASE,
+ ATK_KEY_EVENT_LAST_DEFINED
+} AtkKeyEventType;
+
struct _AtkUtil
{
GObject parent;