summaryrefslogtreecommitdiff
path: root/vapi/gnome-desktop-3.0.vapi
blob: c24fa53461e3fb9287652e1fc672af660de9d96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[CCode (cheader_filename = "libgnome-desktop/gnome-desktop-thumbnail.h")]
namespace Gnome {
	public class DesktopThumbnailFactory : GLib.Object {
		[CCode (has_construct_function = false)]
		public DesktopThumbnailFactory (Gnome.ThumbnailSize size);
		public bool can_thumbnail (string uri, string mime_type, ulong mtime);
		public void create_failed_thumbnail (string uri, ulong mtime);
		public unowned Gdk.Pixbuf generate_thumbnail (string uri, string mime_type);
		public bool has_valid_failed_thumbnail (string uri, ulong mtime);
		public unowned string lookup (string uri, ulong mtime);
		public void save_thumbnail (Gdk.Pixbuf thumbnail, string uri, ulong original_mtime);
	}
	[CCode (cprefix = "GNOME_DESKTOP_THUMBNAIL_SIZE_")]
	public enum ThumbnailSize {
		NORMAL,
		LARGE
	}
}