mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:35:38 +00:00
b44b408e52
* gtk/Gtk.metadata : hide Widget.SetState * gtk/Widget.custom : add State get; set; property * glue/widget.c : add glue for get_State (); * gtk/gtk-api.xml : regen svn path=/trunk/gtk-sharp/; revision=23096
67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
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)); }
|
|
}
|
|
|
|
|
|
[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, false);
|
|
return ret;
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
public void AddAccelerator (string accel_signal, AccelGroup accel_group, AccelKey accel_key)
|
|
{
|
|
this.AddAccelerator (accel_signal, accel_group, (uint) accel_key.Key, accel_key.AccelMods, accel_key.AccelFlags);
|
|
|
|
}
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern void gtk_widget_set_state (IntPtr raw, int state);
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern int gtksharp_gtk_widget_get_state (IntPtr raw);
|
|
|
|
public Gtk.StateType State {
|
|
set {
|
|
gtk_widget_set_state (Handle, (int) value);
|
|
}
|
|
get {
|
|
return (Gtk.StateType) gtksharp_gtk_widget_get_state (Handle);
|
|
}
|
|
}
|