From 48da8afce6d67ea1ef023531538b25905efd61ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20G=2E=20Aragoneses?= Date: Thu, 29 Jan 2009 16:11:08 +0000 Subject: [PATCH] =?UTF-8?q?2009-01-29=20=20Andr=C3=A9s=20G.=20Aragoneses?= =?UTF-8?q?=20=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * atk/Object.custom: add binding for "focus-event" signal: http://library.gnome.org/devel/atk/unstable/AtkObject.html#AtkObject-focus-event svn path=/trunk/gtk-sharp/; revision=124937 --- ChangeLog | 5 +++++ atk/Object.custom | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index b038fde6c..ffb13799a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-01-29 Andrés G. Aragoneses + + * atk/Object.custom: add binding for "focus-event" signal: + http://library.gnome.org/devel/atk/unstable/AtkObject.html#AtkObject-focus-event + 2009-01-27 Mike Kestner * glib/Opaque.cs: ensure we are running on the gui thread when we diff --git a/atk/Object.custom b/atk/Object.custom index 9e4a88fda..05ac21cff 100644 --- a/atk/Object.custom +++ b/atk/Object.custom @@ -227,3 +227,8 @@ return GLib.Object.GetObject (raw, true) as RelationSet; } + protected void EmitFocusEvent (bool gained) + { + GLib.Signal.Emit (this, "focus-event", gained); + } + \ No newline at end of file