mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:55:28 +00:00
a4d3692c04
* gdk/EventKey.custom : Created it so that there is a "Key" property that returns a Gdk.Key. svn path=/trunk/gtk-sharp/; revision=13848
16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
//
|
|
// 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;
|
|
}
|
|
}
|