updated copyright in source files
[geeqie.git] / src / image-load.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13
14 #ifndef IMAGE_LOAD_H
15 #define IMAGE_LOAD_H
16
17
18 ImageLoader *image_loader_new(FileData *fd);
19
20 /* we don't want full FileData for thumbnails */
21 ImageLoader *image_loader_new_from_path(const gchar *path);
22 void image_loader_free(ImageLoader *il);
23
24 void image_loader_set_area_ready_func(ImageLoader *il,
25                                       void (*func_area_ready)(ImageLoader *, guint, guint, guint, guint, gpointer),
26                                       gpointer data_area_ready);
27 void image_loader_set_error_func(ImageLoader *il,
28                                  void (*func_error)(ImageLoader *, gpointer),
29                                  gpointer data_error);
30 void image_loader_set_percent_func(ImageLoader *il,
31                                    void (*func_percent)(ImageLoader *, gdouble, gpointer),
32                                    gpointer data_percent);
33
34 /* Speed up loading when you only need at most width x height size image,
35  * only the jpeg GdkPixbuf loader benefits from it - so there is no
36  * guarantee that the image will scale down to the requested size..
37  */
38 void image_loader_set_requested_size(ImageLoader *il, gint width, gint height);
39
40 void image_loader_set_buffer_size(ImageLoader *il, guint size);
41
42 /* this only has effect if used before image_loader_start()
43  * default is G_PRIORITY_DEFAULT_IDLE
44  */
45 void image_loader_set_priority(ImageLoader *il, gint priority);
46
47 gint image_loader_start(ImageLoader *il, void (*func_done)(ImageLoader *, gpointer), gpointer data_done);
48
49
50 GdkPixbuf *image_loader_get_pixbuf(ImageLoader *il);
51 gchar *image_loader_get_format(ImageLoader *il);
52 gdouble image_loader_get_percent(ImageLoader *il);
53 gint image_loader_get_is_done(ImageLoader *il);
54
55 gint image_load_dimensions(FileData *fd, gint *width, gint *height);
56
57 #endif