2004-02-18 20:29:21 +00:00
|
|
|
// 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 {
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("gdksharpglue")]
|
2004-02-18 20:29:21 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|