fixed a memory leak
[geeqie.git] / src / image-overlay.c
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13 #include "main.h"
14 #include "image-overlay.h"
15
16 #include "collect.h"
17 #include "exif.h"
18 #include "filelist.h"
19 #include "image.h"
20 #include "img-view.h"
21 #include "layout.h"
22 #include "pixbuf-renderer.h"
23 #include "pixbuf_util.h"
24 #include "histogram.h"
25
26
27 /*
28  *----------------------------------------------------------------------------
29  * image overlay
30  *----------------------------------------------------------------------------
31  */
32
33 typedef struct _OverlayStateData OverlayStateData;
34 struct _OverlayStateData {
35         ImageWindow *imd;
36         ImageState changed_states;
37
38         gint show_info;
39         gint show_status;
40
41         gint ovl_info;
42
43         gint icon_time[IMAGE_OSD_COUNT];
44         gint icon_id[IMAGE_OSD_COUNT];
45
46         gint idle_id;
47         gint timer_id;
48         gulong destroy_id;
49 };
50
51
52 typedef struct _OSDIcon OSDIcon;
53 struct _OSDIcon {
54         gint reset;     /* reset on new image */
55         gint x;         /* x, y offset */
56         gint y;
57         gchar *key;     /* inline pixbuf */
58 };
59
60 static OSDIcon osd_icons[] = {
61         {  TRUE,   0,   0, NULL },                      /* none */
62         {  TRUE, -10, -10, NULL },                      /* auto rotated */
63         {  TRUE, -10, -10, NULL },                      /* user rotated */
64         {  TRUE, -40, -10, NULL },                      /* color embedded */
65         {  TRUE, -70, -10, NULL },                      /* first image */
66         {  TRUE, -70, -10, NULL },                      /* last image */
67         { FALSE, -70, -10, NULL },                      /* osd enabled */
68         { FALSE, 0, 0, NULL }
69 };
70
71 #define OSD_DATA "overlay-data"
72
73 #define OSD_INFO_X 10
74 #define OSD_INFO_Y -10
75
76 #define IMAGE_OSD_DEFAULT_DURATION 30
77
78 #define HISTOGRAM_HEIGHT 140
79
80 static void image_osd_timer_schedule(OverlayStateData *osd);
81
82
83 void set_default_image_overlay_template_string(ConfOptions *options)
84 {
85         if (options->image_overlay.common.template_string) g_free(options->image_overlay.common.template_string);
86         options->image_overlay.common.template_string = g_strdup(DEFAULT_OVERLAY_INFO);
87 }
88
89 /*
90  *----------------------------------------------------------------------------
91  * image histogram
92  *----------------------------------------------------------------------------
93  */
94
95
96 static void image_osd_histogram_onoff_toggle(ImageWindow *imd, gint x)
97 {
98         imd->histogram_enabled = !!(x);
99         if (imd->histogram_enabled && !imd->histogram)
100                 imd->histogram = histogram_new();
101 }
102
103 static gint image_osd_histogram_onoff_status(ImageWindow *imd)
104 {
105       return imd->histogram_enabled;
106 }
107
108 void image_osd_histogram_chan_toggle(ImageWindow *imd)
109 {
110         if (imd->histogram)
111                 {
112                 histogram_set_channel(imd->histogram, (histogram_get_channel(imd->histogram) +1)%HCHAN_COUNT);
113                 image_osd_update(imd);
114                 }
115 }
116
117 void image_osd_histogram_log_toggle(ImageWindow *imd)
118 {
119         if (imd->histogram)
120                 {
121                 histogram_set_mode(imd->histogram, !histogram_get_mode(imd->histogram));
122                 image_osd_update(imd);
123                 }
124 }
125
126 void image_osd_toggle(ImageWindow *imd)
127 {
128         gint info;
129
130         if (image_osd_get(imd, &info, NULL) && info)
131                 {
132                 if (image_osd_histogram_onoff_status(imd))
133                         {
134                         image_osd_histogram_onoff_toggle(imd, 0);
135                         image_osd_update(imd);
136                         }
137                 else
138                         {
139                         image_osd_set(imd, FALSE, FALSE);
140                         }
141                 }
142         else
143                 {
144                 image_osd_set(imd, TRUE, TRUE);
145                 image_osd_icon(imd, IMAGE_OSD_ICON, -1);
146                 image_osd_histogram_onoff_toggle(imd, 1);
147                 image_osd_update(imd);
148                 }
149 }
150
151 static gchar *image_osd_mkinfo(const gchar *str, ImageWindow *imd, GHashTable *vars)
152 {
153         gchar delim = '%', imp = '|', sep[] = " - ";
154         gchar *start, *end;
155         gint pos, prev;
156         gint last;
157         gchar *name, *data;
158         GString *new;
159         gchar *ret;
160         ExifData *exif;
161
162         if (!str || !*str) return g_strdup("");
163
164         new = g_string_new(str);
165
166         exif = exif_read_fd(imd->image_fd);
167         prev = 0;
168         last = FALSE;
169
170         while (TRUE)
171                 {
172                 gint was_digit = 0;
173                 gint limit = 0;
174                 gchar *trunc = NULL;
175                 gchar *p;
176
177                 start = strchr(new->str, delim);
178                 if (!start)
179                         break;
180                 end = strchr(start+1, delim);
181                 if (!end)
182                         break;
183
184                 for (p = end; p > start; p--)
185                         {
186                         if (*p == ':' && was_digit)
187                                 {
188                                 trunc = p;
189                                 break;
190                                 }
191                         was_digit = g_ascii_isdigit(*p);
192                         }
193
194                 if (trunc) limit = atoi(trunc+1);
195
196                 name = g_strndup(start+1, ((limit > 0) ? trunc : end)-start-1);
197
198                 pos = start-new->str;
199                 data = g_strdup(g_hash_table_lookup(vars, name));
200                 if (data && strcmp(name, "zoom") == 0) imd->overlay_show_zoom = TRUE;
201                 if (!data && exif)
202                         data = exif_get_data_as_text(exif, name);
203                 if (data && *data && limit > 0 && strlen(data) > limit + 3)
204                         {
205                         gchar *new_data = g_strdup_printf("%-*.*s...", limit, limit, data);
206                         g_free(data);
207                         data = new_data;
208                         }
209                 if (data)
210                         {
211                         /* Since we use pango markup to display, we need to escape here */
212                         gchar *escaped = g_markup_escape_text(data, -1);
213                         g_free(data);
214                         data = escaped;
215                         }
216                 g_string_erase(new, pos, end-start+1);
217                 if (data)
218                         g_string_insert(new, pos, data);
219                 if (pos-prev == 2 && new->str[pos-1] == imp)
220                         {
221                         g_string_erase(new, --pos, 1);
222                         if (last && data)
223                                 {
224                                 g_string_insert(new, pos, sep);
225                                 pos += strlen(sep);
226                                 }
227                         }
228
229                 prev = data ? pos+strlen(data)-1 : pos-1;
230                 last = data ? TRUE : last;
231                 g_free(name);
232                 g_free(data);
233                 }
234
235         exif_free(exif);
236         /* search and destroy empty lines */
237         end = new->str;
238         while ((start = strchr(end, '\n')))
239                 {
240                 end = start;
241                 while (*++(end) == '\n')
242                         ;
243                 g_string_erase(new, start-new->str, end-start-1);
244                 }
245
246         g_strchomp(new->str);
247
248         ret = new->str;
249         g_string_free(new, FALSE);
250
251         return ret;
252 }
253
254 static GdkPixbuf *image_osd_info_render(ImageWindow *imd)
255 {
256         GdkPixbuf *pixbuf = NULL;
257         gint width, height;
258         PangoLayout *layout;
259         const gchar *name;
260         gchar *name_escaped;
261         gchar *text;
262         gchar *size;
263         gint n, t;
264         CollectionData *cd;
265         CollectInfo *info;
266         GdkPixbuf *imgpixbuf = NULL;
267         LayoutWindow *lw = NULL;
268         gint with_hist = 0;
269         gchar *ct;
270         gint w, h;
271         GHashTable *vars;
272
273         vars = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free);
274
275         name = image_get_name(imd);
276         if (name)
277                 {
278                 name_escaped = g_markup_escape_text(name, -1);
279                 }
280         else
281                 {
282                 name_escaped = NULL;
283                 }
284
285         cd = image_get_collection(imd, &info);
286         if (cd)
287                 {
288                 gchar *buf;
289
290                 t = g_list_length(cd->list);
291                 n = g_list_index(cd->list, info) + 1;
292                 buf = g_markup_escape_text((cd->name) ? cd->name : _("Untitled"), -1);
293                 ct = g_strdup_printf("<i>%s</i>\n", buf);
294                 g_free(buf);
295                 }
296         else
297                 {
298                 lw = layout_find_by_image(imd);
299                 if (lw)
300                         {
301                         if (lw->slideshow)
302                                 {
303                                 n = g_list_length(lw->slideshow->list_done);
304                                 t = n + g_list_length(lw->slideshow->list);
305                                 if (n == 0) n = t;
306                                 }
307                         else
308                                 {
309                                 t = layout_list_count(lw, NULL);
310                                 n = layout_list_get_index(lw, image_get_path(lw->image)) + 1;
311                                 }
312                         }
313                 else if (view_window_find_image(imd, &n, &t))
314                         {
315                         n++;
316                         }
317                 else
318                         {
319                         t = 1;
320                         n = 1;
321                         }
322
323                 if (n < 1) n = 1;
324                 if (t < 1) t = 1;
325
326                 ct = g_strdup("");
327                 }
328
329         size = text_from_size_abrev(imd->size);
330         if (!imd->unknown)
331                 {
332                 if (imd->delay_flip &&
333                     imd->il && imd->il->pixbuf &&
334                     image_get_pixbuf(imd) != imd->il->pixbuf)
335                         {
336                         w = gdk_pixbuf_get_width(imd->il->pixbuf);
337                         h = gdk_pixbuf_get_height(imd->il->pixbuf);
338                         imgpixbuf = imd->il->pixbuf;
339                         }
340                 else
341                         {
342                         image_get_image_size(imd, &w, &h);
343                         imgpixbuf = (PIXBUF_RENDERER(imd->pr))->pixbuf;
344                         }
345         
346                 if (imgpixbuf && imd->histogram_enabled && imd->histogram
347                               && (!imd->il || imd->il->done))
348                         with_hist=1;
349
350                 g_hash_table_insert(vars, "width", g_strdup_printf("%d", w));
351                 g_hash_table_insert(vars, "height", g_strdup_printf("%d", h));
352                 g_hash_table_insert(vars, "res", g_strdup_printf("%d Ã— %d", w, h));
353                 }
354
355         g_hash_table_insert(vars, "collection", g_strdup(ct));
356         g_hash_table_insert(vars, "number", g_strdup_printf("%d", n));
357         g_hash_table_insert(vars, "total", g_strdup_printf("%d", t));
358         g_hash_table_insert(vars, "name", g_strdup(name_escaped));
359         g_hash_table_insert(vars, "date", g_strdup(text_from_time(imd->mtime)));
360         g_hash_table_insert(vars, "size", g_strdup(size));
361         g_hash_table_insert(vars, "zoom", image_zoom_get_as_text(imd));
362
363         if (!name_escaped)
364                 {
365                 text = g_strdup_printf(_("Untitled"));
366                 }
367         else
368                 {
369                 text = image_osd_mkinfo(options->image_overlay.common.template_string, imd, vars);
370                 }
371
372         g_free(size);
373         g_free(ct);
374         g_free(name_escaped);
375         g_hash_table_destroy(vars);
376
377         {
378         FileData *fd = image_get_fd(imd);
379
380         if (fd) /* fd may be null after file deletion */
381                 {
382                 gint active_marks = 0;
383                 gint mark;
384                 gchar *text2;
385
386                 for (mark = 0; mark < FILEDATA_MARKS_SIZE; mark++)
387                         {
388                         active_marks += fd->marks[mark];
389                         }
390
391                 if (active_marks > 0)
392                         {
393                         GString *buf = g_string_sized_new(FILEDATA_MARKS_SIZE * 2);
394
395                         for (mark = 0; mark < FILEDATA_MARKS_SIZE; mark++)
396                                 {
397                                 g_string_append_printf(buf, fd->marks[mark] ? " <span background='#FF00FF'>%c</span>" : " %c", '1' + mark);
398                                 }
399
400                         if (*text)
401                                 text2 = g_strdup_printf("%s\n%s", text, buf->str);
402                         else
403                                 text2 = g_strdup(buf->str);
404                         g_string_free(buf, TRUE);
405                         g_free(text);
406                         text = text2;
407                         }
408
409                 if (with_hist)
410                         {
411                         gchar *escaped_histogram_label = g_markup_escape_text(histogram_label(imd->histogram), -1);
412                         if (*text)
413                                 text2 = g_strdup_printf("%s\n%s", text, escaped_histogram_label);
414                         else
415                                 text2 = g_strdup(escaped_histogram_label);
416                         g_free(escaped_histogram_label);
417                         g_free(text);
418                         text = text2;
419                         }
420                 }
421         }
422
423         layout = gtk_widget_create_pango_layout(imd->pr, NULL);
424         pango_layout_set_markup(layout, text, -1);
425         g_free(text);
426
427         pango_layout_get_pixel_size(layout, &width, &height);
428         /* with empty text width is set to 0, but not height) */
429         if (width == 0)
430                 height = 0;
431         else if (height == 0)
432                 width = 0;
433         if (width > 0) width += 10;
434         if (height > 0) height += 10;
435
436         if (with_hist)
437                 {
438                 histogram_read(imd->histogram, imgpixbuf);
439                 if (width < 266) width = 266;
440                 height += HISTOGRAM_HEIGHT + 5;
441                 }
442
443         if (width > 0 && height > 0)
444                 {
445                 /* TODO: make osd color configurable --Zas */
446                 pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, width, height);
447                 pixbuf_set_rect_fill(pixbuf, 3, 3, width-6, height-6, 240, 240, 240, 210);
448                 pixbuf_set_rect(pixbuf, 0, 0, width, height, 240, 240, 240, 80, 1, 1, 1, 1);
449                 pixbuf_set_rect(pixbuf, 1, 1, width-2, height-2, 240, 240, 240, 130, 1, 1, 1, 1);
450                 pixbuf_set_rect(pixbuf, 2, 2, width-4, height-4, 240, 240, 240, 180, 1, 1, 1, 1);
451                 pixbuf_pixel_set(pixbuf, 0, 0, 0, 0, 0, 0);
452                 pixbuf_pixel_set(pixbuf, width - 1, 0, 0, 0, 0, 0);
453                 pixbuf_pixel_set(pixbuf, 0, height - 1, 0, 0, 0, 0);
454                 pixbuf_pixel_set(pixbuf, width - 1, height - 1, 0, 0, 0, 0);
455
456                 if (with_hist)
457                         histogram_draw(imd->histogram, pixbuf, 5, height - HISTOGRAM_HEIGHT - 5 , width - 10, HISTOGRAM_HEIGHT);
458
459                 pixbuf_draw_layout(pixbuf, layout, imd->pr, 5, 5, 0, 0, 0, 255);
460         }
461
462         g_object_unref(G_OBJECT(layout));
463
464         return pixbuf;
465 }
466
467 static GdkPixbuf *image_osd_icon_pixbuf(ImageOSDFlag flag)
468 {
469         static GdkPixbuf **icons = NULL;
470         GdkPixbuf *icon = NULL;
471
472         if (!icons) icons = g_new0(GdkPixbuf *, IMAGE_OSD_COUNT);
473         if (icons[flag]) return icons[flag];
474
475         if (osd_icons[flag].key)
476                 {
477                 icon = pixbuf_inline(osd_icons[flag].key);
478                 }
479
480         if (!icon)
481                 {
482                 icon = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, 24, 24);
483                 pixbuf_set_rect_fill(icon, 1, 1, 22, 22, 255, 255, 255, 200);
484                 pixbuf_set_rect(icon, 0, 0, 24, 24, 0, 0, 0, 128, 1, 1, 1, 1);
485                 switch (flag)
486                         {
487                         case IMAGE_OSD_ROTATE_AUTO:
488                                 pixbuf_set_rect(icon, 3, 8, 11, 12,
489                                                 0, 0, 0, 255,
490                                                 3, 0, 3, 0);
491                                 pixbuf_draw_triangle(icon, 14, 3, 6, 12,
492                                                      20, 9, 14, 15, 14, 3,
493                                                      0, 0, 0, 255);
494                                 break;
495                         case IMAGE_OSD_ROTATE_USER:
496                                 break;
497                         case IMAGE_OSD_COLOR:
498                                 pixbuf_set_rect_fill(icon, 3, 3, 18, 6, 200, 0, 0, 255);
499                                 pixbuf_set_rect_fill(icon, 3, 9, 18, 6, 0, 200, 0, 255);
500                                 pixbuf_set_rect_fill(icon, 3, 15, 18, 6, 0, 0, 200, 255);
501                                 break;
502                         case IMAGE_OSD_FIRST:
503                                 pixbuf_set_rect(icon, 3, 3, 18, 18, 0, 0, 0, 200, 3, 3, 3, 0);
504                                 pixbuf_draw_triangle(icon, 6, 5, 12, 6,
505                                                      12, 5, 18, 11, 6, 11,
506                                                      0, 0, 0, 255);
507                                 break;
508                         case IMAGE_OSD_LAST:
509                                 pixbuf_set_rect(icon, 3, 3, 18, 18, 0, 0, 0, 200, 3, 3, 0, 3);
510                                 pixbuf_draw_triangle(icon, 6, 12, 12, 6,
511                                                      12, 18, 6, 12, 18, 12,
512                                                      0, 0, 0, 255);
513                                 break;
514                         case IMAGE_OSD_ICON:
515                                 pixbuf_set_rect_fill(icon, 11, 3, 3, 12, 0, 0, 0, 255);
516                                 pixbuf_set_rect_fill(icon, 11, 17, 3, 3, 0, 0, 0, 255);
517                                 break;
518                         default:
519                                 break;
520                         }
521                 }
522
523         icons[flag] = icon;
524
525         return icon;
526 }
527
528 static void image_osd_icon_show(OverlayStateData *osd, ImageOSDFlag flag)
529 {
530         GdkPixbuf *pixbuf;
531
532         if (osd->icon_id[flag]) return;
533
534         pixbuf = image_osd_icon_pixbuf(flag);
535         if (!pixbuf) return;
536
537         osd->icon_id[flag] = image_overlay_add(osd->imd, pixbuf,
538                                                osd_icons[flag].x, osd_icons[flag].y,
539                                                TRUE, FALSE);
540 }
541
542 static void image_osd_icon_hide(OverlayStateData *osd, ImageOSDFlag flag)
543 {
544         if (osd->icon_id[flag])
545                 {
546                 image_overlay_remove(osd->imd, osd->icon_id[flag]);
547                 osd->icon_id[flag] = 0;
548                 }
549 }
550
551 static gint image_osd_update_cb(gpointer data)
552 {
553         OverlayStateData *osd = data;
554
555         osd->imd->overlay_show_zoom = FALSE;
556
557         if (osd->show_info)
558                 {
559                 if (osd->changed_states & IMAGE_STATE_IMAGE)
560                         {
561                         GdkPixbuf *pixbuf;
562
563                         pixbuf = image_osd_info_render(osd->imd);
564                         if (pixbuf)
565                                 {
566                                 if (osd->ovl_info == 0)
567                                         {
568                                         osd->ovl_info = image_overlay_add(osd->imd, pixbuf,
569                                                                           OSD_INFO_X, OSD_INFO_Y, TRUE, FALSE);
570                                         }
571                                 else
572                                         {
573                                         image_overlay_set(osd->imd, osd->ovl_info, pixbuf, OSD_INFO_X, OSD_INFO_Y);
574                                         }
575                                 g_object_unref(pixbuf);
576                                 }
577                         else if (osd->ovl_info)
578                                 {
579                                 image_overlay_remove(osd->imd, osd->ovl_info);
580                                 osd->ovl_info = 0;
581                                 }
582                         }
583                 }
584         else
585                 {
586                 if (osd->ovl_info)
587                         {
588                         image_overlay_remove(osd->imd, osd->ovl_info);
589                         osd->ovl_info = 0;
590                         }
591                 }
592
593         if (osd->show_status)
594                 {
595                 gint i;
596
597                 if (osd->changed_states & IMAGE_STATE_IMAGE)
598                         {
599                         for (i = 0; i < IMAGE_OSD_COUNT; i++)
600                                 {
601                                 if (osd_icons[i].reset) osd->icon_time[i] = 0;
602                                 }
603                         }
604
605                 if (osd->changed_states & IMAGE_STATE_COLOR_ADJ)
606                         {
607                         osd->icon_time[IMAGE_OSD_COLOR] = IMAGE_OSD_DEFAULT_DURATION + 1;
608                         image_osd_timer_schedule(osd);
609                         }
610
611                 if (osd->changed_states & IMAGE_STATE_ROTATE_AUTO)
612                         {
613                         gint n = 0;
614
615                         if (osd->imd->state & IMAGE_STATE_ROTATE_AUTO)
616                                 {
617                                 n = 1;
618                                 if (!osd->imd->cm) n += IMAGE_OSD_DEFAULT_DURATION;
619                                 }
620
621                         osd->icon_time[IMAGE_OSD_ROTATE_AUTO] = n;
622                         image_osd_timer_schedule(osd);
623                         }
624
625                 for (i = 0; i < IMAGE_OSD_COUNT; i++)
626                         {
627                         if (osd->icon_time[i] > 0)
628                                 {
629                                 image_osd_icon_show(osd, i);
630                                 }
631                         else
632                                 {
633                                 image_osd_icon_hide(osd, i);
634                                 }
635                         }
636                 }
637         else
638                 {
639                 gint i;
640
641                 for (i = 0; i < IMAGE_OSD_COUNT; i++)
642                         {
643                         image_osd_icon_hide(osd, i);
644                         }
645                 }
646
647         if (osd->imd->il && osd->imd->il->done)
648                 osd->changed_states = IMAGE_STATE_NONE;
649         osd->idle_id = -1;
650         return FALSE;
651 }
652
653 static void image_osd_update_schedule(OverlayStateData *osd, gint force)
654 {
655         if (force) osd->changed_states |= IMAGE_STATE_IMAGE;
656
657         if (osd->idle_id == -1)
658                 {
659                 osd->idle_id = g_idle_add_full(G_PRIORITY_HIGH, image_osd_update_cb, osd, NULL);
660                 }
661 }
662
663 void image_osd_update(ImageWindow *imd)
664 {
665         OverlayStateData *osd;
666
667         if (!imd) return;
668
669         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
670         if (!osd) return;
671
672         image_osd_update_schedule(osd, TRUE);
673 }
674
675 static gint image_osd_timer_cb(gpointer data)
676 {
677         OverlayStateData *osd = data;
678         gint done = TRUE;
679         gint changed = FALSE;
680         gint i;
681
682         for (i = 0; i < IMAGE_OSD_COUNT; i++)
683                 {
684                 if (osd->icon_time[i] > 1)
685                         {
686                         osd->icon_time[i]--;
687                         if (osd->icon_time[i] < 2)
688                                 {
689                                 osd->icon_time[i] = 0;
690                                 changed = TRUE;
691                                 }
692                         else
693                                 {
694                                 done = FALSE;
695                                 }
696                         }
697                 }
698
699         if (changed) image_osd_update_schedule(osd, FALSE);
700
701         if (done)
702                 {
703                 osd->timer_id = -1;
704                 return FALSE;
705                 }
706
707         return TRUE;
708 }
709
710 static void image_osd_timer_schedule(OverlayStateData *osd)
711 {
712         if (osd->timer_id == -1)
713                 {
714                 osd->timer_id = g_timeout_add(100, image_osd_timer_cb, osd);
715                 }
716 }
717
718 static void image_osd_state_cb(ImageWindow *imd, ImageState state, gpointer data)
719 {
720         OverlayStateData *osd = data;
721
722         osd->changed_states |= state;
723         image_osd_update_schedule(osd, FALSE);
724 }
725
726 static void image_osd_free(OverlayStateData *osd)
727 {
728         if (!osd) return;
729
730         if (osd->idle_id != -1) g_source_remove(osd->idle_id);
731         if (osd->timer_id != -1) g_source_remove(osd->timer_id);
732
733         if (osd->imd)
734                 {
735                 gint i;
736
737                 g_object_set_data(G_OBJECT(osd->imd->pr), "IMAGE_OVERLAY_DATA", NULL);
738                 g_signal_handler_disconnect(osd->imd->pr, osd->destroy_id);
739
740                 image_set_state_func(osd->imd, NULL, NULL);
741                 image_overlay_remove(osd->imd, osd->ovl_info);
742
743                 for (i = 0; i < IMAGE_OSD_COUNT; i++)
744                         {
745                         image_osd_icon_hide(osd, i);
746                         }
747                 }
748
749         g_free(osd);
750 }
751
752 static void image_osd_remove(ImageWindow *imd)
753 {
754         OverlayStateData *osd;
755
756         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
757         image_osd_free(osd);
758 }
759
760 static void image_osd_destroy_cb(GtkWidget *widget, gpointer data)
761 {
762         OverlayStateData *osd = data;
763
764         osd->imd = NULL;
765         image_osd_free(osd);
766 }
767
768 static void image_osd_enable(ImageWindow *imd, gint info, gint status)
769 {
770         OverlayStateData *osd;
771
772         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
773         if (!osd)
774                 {
775                 osd = g_new0(OverlayStateData, 1);
776                 osd->imd = imd;
777                 osd->idle_id = -1;
778                 osd->timer_id = -1;
779
780                 osd->destroy_id = g_signal_connect(G_OBJECT(imd->pr), "destroy",
781                                                    G_CALLBACK(image_osd_destroy_cb), osd);
782                 g_object_set_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA", osd);
783
784                 image_set_state_func(osd->imd, image_osd_state_cb, osd);
785                 }
786
787         if (osd->show_info != info ||
788             osd->show_status != status)
789                 {
790                 osd->show_info = info;
791                 osd->show_status = status;
792
793                 image_osd_update_schedule(osd, TRUE);
794                 }
795 }
796
797 void image_osd_set(ImageWindow *imd, gint info, gint status)
798 {
799         if (!imd) return;
800
801         if (!info && !status)
802                 {
803                 image_osd_remove(imd);
804                 return;
805                 }
806
807         image_osd_enable(imd, info, status);
808 }
809
810 gint image_osd_get(ImageWindow *imd, gint *info, gint *status)
811 {
812         OverlayStateData *osd;
813
814         if (!imd) return FALSE;
815
816         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
817         if (!osd) return FALSE;
818
819         if (info) *info = osd->show_info;
820         if (status) *status = osd->show_status;
821
822         return TRUE;
823 }
824
825 /* duration:
826     0 = hide
827     1 = show
828    2+ = show for duration tenths of a second
829    -1 = use default duration
830  */
831 void image_osd_icon(ImageWindow *imd, ImageOSDFlag flag, gint duration)
832 {
833         OverlayStateData *osd;
834
835         if (!imd) return;
836
837         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
838         if (!osd) return;
839
840         if (flag < IMAGE_OSD_NONE || flag >= IMAGE_OSD_COUNT) return;
841         if (duration < 0) duration = IMAGE_OSD_DEFAULT_DURATION;
842         if (duration > 1) duration += 1;
843
844         osd->icon_time[flag] = duration;
845
846         image_osd_update_schedule(osd, FALSE);
847         image_osd_timer_schedule(osd);
848 }