2002-08-03 22:24:37 +00:00
|
|
|
//
|
|
|
|
// 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)); }
|
|
|
|
}
|
|
|
|
|
2002-09-24 03:21:37 +00:00
|
|
|
|
|
|
|
[DllImport ("gtksharpglue")]
|
|
|
|
static extern IntPtr gtksharp_gtk_widget_get_window (IntPtr widget);
|
|
|
|
public Gdk.Window GdkWindow {
|
|
|
|
get {
|
|
|
|
IntPtr raw_ret = gtksharp_gtk_widget_get_window (Handle);
|
|
|
|
|
|
|
|
if (raw_ret != (IntPtr) 0){
|
|
|
|
Gdk.Window ret = (Gdk.Window) GLib.Object.GetObject(raw_ret);
|
|
|
|
ret.Ref ();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2003-01-30 02:56:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public System.Drawing.Size RequestSize {
|
|
|
|
get {
|
|
|
|
int x, y;
|
|
|
|
GetSizeRequest (out x, out y);
|
|
|
|
|
|
|
|
return new System.Drawing.Size (x, y);
|
|
|
|
}
|
|
|
|
set {
|
|
|
|
int x = value.Width;
|
|
|
|
int y = value.Height;
|
|
|
|
SetSizeRequest (x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|