2008-11-26 Stephane Delcroix <sdelcroix@novell.com>

* gtk/Image.custom:
	* gtk/Gtk.metadata: obsolete Image.FromPixbuf, FromAnimation,
	FromFile setters in favor of already existing Pixbuf, Animation and
	File.

svn path=/trunk/gtk-sharp/; revision=120096
This commit is contained in:
Stephane Delcroix 2008-11-26 20:34:27 +00:00
parent 346d4d685c
commit 6a9baad400
3 changed files with 39 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-11-26 Stephane Delcroix <sdelcroix@novell.com>
* gtk/Image.custom:
* gtk/Gtk.metadata: obsolete Image.FromPixbuf, FromAnimation,
FromFile setters in favor of already existing Pixbuf, Animation and
File.
2008-11-26 Mike Kestner <mkestner@novell.com>
* bootstrap-2.12: bump svn version.

View File

@ -438,6 +438,9 @@
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='GetPixmap']/*/*[@name='pixmap']" name="pass_as">out</attr>
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='GetPixmap']/*/*[@name='mask']" name="pass_as">out</attr>
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='GetStock']/*/*[@name='stock_id']" name="pass_as">out</attr>
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='SetFromAnimation']" name="name">SetAnimation</attr>
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='SetFromFile']" name="name">SetFile</attr>
<attr path="/api/namespace/object[@cname='GtkImage']/method[@name='SetFromPixbuf']" name="name">SetPixbuf</attr>
<attr path="/api/namespace/object[@cname='GtkIMContext']/signal[@name='DeleteSurrounding']" name="name">SurroundingDeleted</attr>
<attr path="/api/namespace/object[@cname='GtkIMContext']/method[@name='GetPreeditString']/*/*[@name='str']" name="pass_as">out</attr>
<attr path="/api/namespace/object[@cname='GtkIMContext']/method[@name='GetPreeditString']/*/*[@name='attrs']" name="pass_as">out</attr>

View File

@ -1,6 +1,9 @@
// Image.custom - Customizations to Gtk.Image
//
// Copyright (C) 2004 Novell, Inc.
// Authors: Mike Kestner <mkestner@novell.com>
// Authors: Stephane Delcroix <sdelcroix@novell.com>
//
// Copyright (c) 2004-2008 Novell, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2 of the Lesser GNU General
@ -88,3 +91,28 @@
{
return new Image (System.Reflection.Assembly.GetCallingAssembly (), resource);
}
[Obsolete ("Use the Animation property instead")]
public Gdk.PixbufAnimation FromAnimation {
set {
gtk_image_set_from_animation(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}
[Obsolete ("Use the File property instead")]
public string FromFile {
set {
IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value);
gtk_image_set_from_file(Handle, native_value);
GLib.Marshaller.Free (native_value);
}
}
[Obsolete ("Use the Pixbuf property instead")]
public Gdk.Pixbuf FromPixbuf {
set {
gtk_image_set_from_pixbuf(Handle, value == null ? IntPtr.Zero : value.Handle);
}
}