Sat Dec 2 16:44:48 2006 John Ellis <johne@verizon.net>
[geeqie.git] / src / image-overlay.h
1 /*
2  * GQview
3  * (C) 2006 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 #ifndef IMAGE_OVERLAY_H
13 #define IMAGE_OVERLAY_H
14
15 typedef enum {
16         IMAGE_OSD_NONE = 0,
17         IMAGE_OSD_ROTATE_USER,
18         IMAGE_OSD_ROTATE_AUTO,
19         IMAGE_OSD_COLOR,
20         IMAGE_OSD_FIRST,
21         IMAGE_OSD_LAST,
22         IMAGE_OSD_ICON,
23         IMAGE_OSD_COUNT
24 } ImageOSDFlag;
25
26
27 void image_osd_set(ImageWindow *imd, gint info, gint status);
28 gint image_osd_get(ImageWindow *imd, gint *info, gint *status);
29
30 void image_osd_update(ImageWindow *imd);
31
32 void image_osd_icon(ImageWindow *imd, ImageOSDFlag flag, gint duration);
33
34
35 #endif
36
37