45faa30e22
* gdk/Pixbuf.custom : resurrect the stream/resource ctors. rename LoadResource to LoadFromResource for the string overload. * gdk/PixbufLoader.custom: add an internal prop to get an unwrapped pixbuf handle. svn path=/trunk/gtk-sharp/; revision=20183
14 lines
315 B
Text
14 lines
315 B
Text
// PixbufLoader.custom - Gdk PixbufLoader class customizations
|
|
//
|
|
// Authors:
|
|
// Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// (C) 2003 Novell, Inc.
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
internal IntPtr PixbufHandle {
|
|
get {
|
|
return gdk_pixbuf_loader_get_pixbuf (Handle);
|
|
}
|
|
}
|