Mercurial > geeqie.yaz
annotate src/image-overlay.h @ 363:5b8617c3821c
collection_load(): accept whitespaces at start of lines.
author | zas_ |
---|---|
date | Mon, 14 Apr 2008 23:08:27 +0000 |
parents | e0e2c2b72c5a |
children | ddabc4873a3f |
rev | line source |
---|---|
9 | 1 /* |
196 | 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 |
9 | 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 | |
118
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
15 typedef enum { |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
16 IMAGE_OSD_NONE = 0, |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
17 IMAGE_OSD_ROTATE_USER, |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
18 IMAGE_OSD_ROTATE_AUTO, |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
19 IMAGE_OSD_COLOR, |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
20 IMAGE_OSD_FIRST, |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
21 IMAGE_OSD_LAST, |
122
e2a8b7f2165b
Sat Dec 2 16:44:48 2006 John Ellis <johne@verizon.net>
gqview
parents:
118
diff
changeset
|
22 IMAGE_OSD_ICON, |
118
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
23 IMAGE_OSD_COUNT |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
24 } ImageOSDFlag; |
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
25 |
9 | 26 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
27 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
|
28 gint image_osd_get(ImageWindow *imd, gint *info, gint *status); |
9 | 29 |
117
0c2e1f0a001b
Wed Nov 29 14:28:30 2006 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
30 void image_osd_update(ImageWindow *imd); |
9 | 31 |
118
ac0f7f942c4d
Wed Nov 29 22:53:03 2006 John Ellis <johne@verizon.net>
gqview
parents:
117
diff
changeset
|
32 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
|
33 |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
196
diff
changeset
|
34 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
|
35 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
|
36 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
|
37 void image_osd_histogram_log_toggle(ImageWindow *); |
9 | 38 |
39 #endif | |
40 | |
41 |