Mercurial > geeqie
annotate src/thumb.h @ 122:e2a8b7f2165b
Sat Dec 2 16:44:48 2006 John Ellis <johne@verizon.net>
* image-overlay.[ch]: More work on osd icons.
* image.c: Use correct flag when setting auto rotation state, and set
the state again after the rotation so that osd can update.
* img-view.c: Show osd icon when overlay is enabled.
* layout.c, layout_image.[ch]: Enable overlay regardless of the
full screen state, only difference now is that image description text
is only shown when in full screen but icons will always appear.
* layout_util.c: Make I key toggle overlay from windowed mode too.
* typedefs.h (LayoutWindow): Remove no longer used
full_screen_overlay_on.
author | gqview |
---|---|
date | Sat, 02 Dec 2006 21:57:12 +0000 |
parents | d907d608745f |
children | f6e307c7bad6 |
rev | line source |
---|---|
9 | 1 /* |
2 * GQview | |
3 * (C) 2004 John Ellis | |
4 * | |
5 * Author: John Ellis | |
6 * | |
7 * This software is released under the GNU General Public License (GNU GPL). | |
8 * Please read the included file COPYING for more information. | |
9 * This software comes with no warranty of any kind, use at your own risk! | |
10 */ | |
11 | |
12 | |
13 #ifndef THUMB_H | |
14 #define THUMB_H | |
15 | |
16 | |
17 ThumbLoader *thumb_loader_new(gint width, gint height); | |
18 void thumb_loader_set_callbacks(ThumbLoader *tl, | |
19 ThumbLoaderFunc func_done, | |
20 ThumbLoaderFunc func_error, | |
21 ThumbLoaderFunc func_progress, | |
22 gpointer data); | |
23 void thumb_loader_set_cache(ThumbLoader *tl, gint enable_cache, gint local, gint retry_failed); | |
24 | |
25 gint thumb_loader_start(ThumbLoader *tl, const gchar *path); | |
26 void thumb_loader_free(ThumbLoader *tl); | |
27 | |
28 GdkPixbuf *thumb_loader_get_pixbuf(ThumbLoader *tl, gint with_fallback); | |
29 | |
30 | |
31 #endif |