2003-04-16 Charles Iliya Krempeaux <charles@reptile.ca>

* gdk/EventKey.custom : Created it so that there
          is a "Key" property that returns a Gdk.Key.

svn path=/trunk/gtk-sharp/; revision=13848
This commit is contained in:
Charles Iliya Krempeaux 2003-04-21 15:31:08 +00:00
parent b6a0a2b504
commit a4d3692c04
2 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-04-16 Charles Iliya Krempeaux <charles@reptile.ca>
* gdk/EventKey.custom : Created it so that there
is a "Key" property that returns a Gdk.Key.
2003-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* gtk/TreeView.custom:

15
gdk/EventKey.custom Normal file
View File

@ -0,0 +1,15 @@
//
// gdk/EventKey.custom
//
// Author: Charles Iliya Krempeaux <charles@reptile.ca>
//
// Copyright (C) 2003 Reptile Consulting & Services Ltd.
// Copyright (C) 2003 Charles Iliya Krempeaux.
//
public Gdk.Key Key {
get {
return (Gdk.Key) this.keyval;
}
}