annotate src/image-overlay.h @ 481:67a612985686

Merge view_overlay_toggle() and layout_image_overlay_toggle() into new image_osd_toggle().
author zas_
date Tue, 22 Apr 2008 08:53:07 +0000
parents 48c8e49b571c
children 969530d69aac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
1 /*
196
f6e307c7bad6 rename GQview -> Geeqie over the code
nadvornik
parents: 122
diff changeset
2 * Geeqie
117
0c2e1f0a001b Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents: 9
diff changeset
3 * (C) 2006 John Ellis
475
48c8e49b571c updated copyright in source files
nadvornik
parents: 469
diff changeset
4 * Copyright (C) 2008 The Geeqie Team
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
5 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
6 * Author: John Ellis
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
7 *
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
8 * This software is released under the GNU General Public License (GNU GPL).
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
9 * Please read the included file COPYING for more information.
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
10 * This software comes with no warranty of any kind, use at your own risk!
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
11 */
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
12
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
13 #ifndef IMAGE_OVERLAY_H
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
14 #define IMAGE_OVERLAY_H
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
15
118
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
16 typedef enum {
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
17 IMAGE_OSD_NONE = 0,
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
18 IMAGE_OSD_ROTATE_USER,
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
19 IMAGE_OSD_ROTATE_AUTO,
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
20 IMAGE_OSD_COLOR,
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
21 IMAGE_OSD_FIRST,
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
22 IMAGE_OSD_LAST,
122
e2a8b7f2165b Sat Dec 2 16:44:48 2006 John Ellis <johne@verizon.net>
gqview
parents: 118
diff changeset
23 IMAGE_OSD_ICON,
118
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
24 IMAGE_OSD_COUNT
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
25 } ImageOSDFlag;
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
26
469
a05c72927e23 Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents: 446
diff changeset
27 void set_default_image_overlay_template_string(ConfOptions *options);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
28
117
0c2e1f0a001b Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents: 9
diff changeset
29 void image_osd_set(ImageWindow *imd, gint info, gint status);
0c2e1f0a001b Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents: 9
diff changeset
30 gint image_osd_get(ImageWindow *imd, gint *info, gint *status);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
31
117
0c2e1f0a001b Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents: 9
diff changeset
32 void image_osd_update(ImageWindow *imd);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
33
118
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
34 void image_osd_icon(ImageWindow *imd, ImageOSDFlag flag, gint duration);
ac0f7f942c4d Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents: 117
diff changeset
35
273
e0e2c2b72c5a reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents: 196
diff changeset
36 void image_osd_histogram_onoff_toggle(ImageWindow *, gint);
e0e2c2b72c5a reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents: 196
diff changeset
37 gint image_osd_histogram_onoff_status(ImageWindow *);
e0e2c2b72c5a reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents: 196
diff changeset
38 void image_osd_histogram_chan_toggle(ImageWindow *);
e0e2c2b72c5a reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents: 196
diff changeset
39 void image_osd_histogram_log_toggle(ImageWindow *);
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
40
481
67a612985686 Merge view_overlay_toggle() and layout_image_overlay_toggle() into new image_osd_toggle().
zas_
parents: 475
diff changeset
41 void image_osd_toggle(ImageWindow *imd);
67a612985686 Merge view_overlay_toggle() and layout_image_overlay_toggle() into new image_osd_toggle().
zas_
parents: 475
diff changeset
42
67a612985686 Merge view_overlay_toggle() and layout_image_overlay_toggle() into new image_osd_toggle().
zas_
parents: 475
diff changeset
43
9
d907d608745f Sync to GQview 1.5.9 release.
gqview
parents:
diff changeset
44 #endif