mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 00:45:41 +00:00
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
54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
// Gdk.EventConfigure.cs - Custom configure event wrapper
|
|
//
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// (c) 2004 Novell, Inc.
|
|
|
|
namespace Gdk {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class EventConfigure : Event {
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern int gtksharp_gdk_event_configure_get_x (IntPtr evt);
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern int gtksharp_gdk_event_configure_get_y (IntPtr evt);
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern int gtksharp_gdk_event_configure_get_width (IntPtr evt);
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern int gtksharp_gdk_event_configure_get_height (IntPtr evt);
|
|
|
|
public EventConfigure (IntPtr raw) : base (raw) {}
|
|
|
|
public int X {
|
|
get {
|
|
return gtksharp_gdk_event_configure_get_x (Handle);
|
|
}
|
|
}
|
|
|
|
public int Y {
|
|
get {
|
|
return gtksharp_gdk_event_configure_get_y (Handle);
|
|
}
|
|
}
|
|
|
|
public int Width {
|
|
get {
|
|
return gtksharp_gdk_event_configure_get_width (Handle);
|
|
}
|
|
}
|
|
|
|
public int Height {
|
|
get {
|
|
return gtksharp_gdk_event_configure_get_height (Handle);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|