5ab5d3beaf
* gdk/Gdk.metadata : hide EventFocus and EventConfigure. * gdk/EventConfigure.cs : glue-based manual implementation. * gdk/EventConfigure.custom : kill * gdk/EventFocus.cs : glue-based manual implementation. * gdk/EventFocus.custom : kill * gdk/gdk-api.xml : regen * gdk/gdk-symbols.xml : manual mappings. * glue/event.cs : expose Focus and Configure struct fields. * sample/Scribble.cs : fix EventConfigure api breakage svn path=/trunk/gtk-sharp/; revision=23239
26 lines
504 B
C#
26 lines
504 B
C#
// Gdk.EventFocus.cs - Custom focus event wrapper
|
|
//
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// (c) 2004 Novell, Inc.
|
|
|
|
namespace Gdk {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class EventFocus : Event {
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern short gtksharp_gdk_event_focus_get_in (IntPtr evt);
|
|
|
|
public EventFocus (IntPtr raw) : base (raw) {}
|
|
|
|
public bool In {
|
|
get {
|
|
return gtksharp_gdk_event_focus_get_in (Handle) == 0 ? false : true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|