summaryrefslogtreecommitdiff
path: root/vapi/gdk-pixbuf-2.0.vapi
diff options
context:
space:
mode:
authorEvan Nemerson <evan@coeus-group.com>2012-06-25 15:33:58 -0700
committerEvan Nemerson <evan@coeus-group.com>2012-06-25 15:33:58 -0700
commit935d54f4cd6fe446aec73ea0804316f2c01cd8ab (patch)
tree197c1fd23060118a4629915a65c10f14c7b3a346 /vapi/gdk-pixbuf-2.0.vapi
parentb4dc20cd3d6aafcfba3ec00f72385d57d05e8b49 (diff)
downloadvala-935d54f4cd6fe446aec73ea0804316f2c01cd8ab.tar.gz
gdk-pixbuf-2.0: remove some obsolete metadata
Diffstat (limited to 'vapi/gdk-pixbuf-2.0.vapi')
-rw-r--r--vapi/gdk-pixbuf-2.0.vapi10
1 files changed, 9 insertions, 1 deletions
diff --git a/vapi/gdk-pixbuf-2.0.vapi b/vapi/gdk-pixbuf-2.0.vapi
index 2954169de..f11a03459 100644
--- a/vapi/gdk-pixbuf-2.0.vapi
+++ b/vapi/gdk-pixbuf-2.0.vapi
@@ -33,8 +33,14 @@ namespace Gdk {
public Pixbuf.from_resource_at_scale (string resource_path, int width, int height, bool preserve_aspect_ratio) throws GLib.Error;
[CCode (has_construct_function = false)]
public Pixbuf.from_stream (GLib.InputStream stream, GLib.Cancellable? cancellable = null) throws GLib.Error;
+ [CCode (cname = "gdk_pixbuf_new_from_stream_async")]
+ public async Pixbuf.from_stream_async (GLib.InputStream stream, GLib.Cancellable? cancellable);
[CCode (has_construct_function = false)]
public Pixbuf.from_stream_at_scale (GLib.InputStream stream, int width, int height, bool preserve_aspect_ratio, GLib.Cancellable? cancellable = null) throws GLib.Error;
+ [CCode (cname = "gdk_pixbuf_new_from_stream_at_scale_async", finish_name = "gdk_pixbuf_new_from_stream_finish")]
+ public async Pixbuf.from_stream_at_scale_async (GLib.InputStream stream, int width, int height, bool preserve_aspect_ratio, GLib.Cancellable? cancellable = null) throws GLib.Error;
+ [CCode (has_construct_function = false)]
+ public Pixbuf.from_stream_finish (GLib.AsyncResult async_result) throws GLib.Error;
[CCode (has_construct_function = false)]
public Pixbuf.from_xpm_data ([CCode (array_length = false, type = "char**")] string[] data);
public int get_bits_per_sample ();
@@ -53,8 +59,10 @@ namespace Gdk {
public int get_rowstride ();
public int get_width ();
[CCode (cname = "gdk_pixbuf_new_from_stream_async", finish_name = "gdk_pixbuf_new_from_stream_finish")]
+ [Deprecated (replacement = "Pixbuf.from_stream_async", since = "vala-0.18")]
public static async Gdk.Pixbuf new_from_stream_async (GLib.InputStream stream, GLib.Cancellable? cancellable = null) throws GLib.Error;
[CCode (cname = "gdk_pixbuf_new_from_stream_at_scale_async", finish_name = "gdk_pixbuf_new_from_stream_finish")]
+ [Deprecated (replacement = "Pixbuf.from_stream_at_scale_async", since = "vala-0.18")]
public static async Gdk.Pixbuf new_from_stream_at_scale_async (GLib.InputStream stream, int width, int height, bool preserve_aspect_ratio, GLib.Cancellable? cancellable = null) throws GLib.Error;
public Gdk.Pixbuf rotate_simple (Gdk.PixbufRotation angle);
public void saturate_and_pixelate (Gdk.Pixbuf dest, float saturation, bool pixelate);
@@ -225,7 +233,7 @@ namespace Gdk {
FAILED;
public static GLib.Quark quark ();
}
- [CCode (cheader_filename = "gdk-pixbuf/gdk-pixdata.h")]
+ [CCode (cheader_filename = "gdk-pixbuf/gdk-pixbuf.h", instance_pos = 1.9)]
public delegate void PixbufDestroyNotify ([CCode (array_length = false)] uint8[] pixels);
[CCode (cheader_filename = "gdk-pixbuf/gdk-pixdata.h", instance_pos = -0.9)]
public delegate bool PixbufSaveFunc ([CCode (array_length_type = "gsize")] uint8[] buf) throws GLib.Error;