mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 16:45:34 +00:00
18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
|
//
|
||
|
// Gtk.Widget.custom - Gtk Widget class customizations
|
||
|
//
|
||
|
// Author: Rachel Hestilow <hestilow@ximian.com>
|
||
|
//
|
||
|
// Copyright (C) 2002 Rachel Hestilow
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
//
|
||
|
|
||
|
[DllImport("gtksharpglue")]
|
||
|
static extern IntPtr gtksharp_gtk_widget_get_allocation (IntPtr style);
|
||
|
|
||
|
public Gdk.Rectangle Allocation {
|
||
|
get { return Gdk.Rectangle.New (gtksharp_gtk_widget_get_allocation (Handle)); }
|
||
|
}
|
||
|
|