12fbd255fa29fe9f03c73539120b492e6086a625
[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_COUNT
23 } ImageOSDFlag;
24
25
26 void image_osd_set(ImageWindow *imd, gint info, gint status);
27 gint image_osd_get(ImageWindow *imd, gint *info, gint *status);
28
29 void image_osd_update(ImageWindow *imd);
30
31 void image_osd_icon(ImageWindow *imd, ImageOSDFlag flag, gint duration);
32
33
34 #endif
35
36