diff --git a/ChangeLog b/ChangeLog index 7daac4245..a31df7016 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-04-16 Charles Iliya Krempeaux + + * gdk/EventKey.custom : Created it so that there + is a "Key" property that returns a Gdk.Key. + 2003-04-15 Gonzalo Paniagua Javier * gtk/TreeView.custom: diff --git a/gdk/EventKey.custom b/gdk/EventKey.custom new file mode 100644 index 000000000..9658a5471 --- /dev/null +++ b/gdk/EventKey.custom @@ -0,0 +1,15 @@ +// +// gdk/EventKey.custom +// +// Author: Charles Iliya Krempeaux +// +// Copyright (C) 2003 Reptile Consulting & Services Ltd. +// Copyright (C) 2003 Charles Iliya Krempeaux. +// + + +public Gdk.Key Key { + get { + return (Gdk.Key) this.keyval; + } +}