Fix #381: Feature-Request: Make JPEG comment available for overlays
[geeqie.git] / src / image-overlay.c
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include "main.h"
23 #include "image-overlay.h"
24
25 #include "collect.h"
26 #include "exif.h"
27 #include "filedata.h"
28 #include "histogram.h"
29 #include "image.h"
30 #include "img-view.h"
31 #include "layout.h"
32 #include "metadata.h"
33 #include "pixbuf-renderer.h"
34 #include "pixbuf_util.h"
35 #include "ui_fileops.h"
36 #include "image-load.h"
37 #include "glua.h"
38
39 /*
40  *----------------------------------------------------------------------------
41  * image overlay
42  *----------------------------------------------------------------------------
43  */
44
45
46 typedef struct _OverlayStateData OverlayStateData;
47 struct _OverlayStateData {
48         ImageWindow *imd;
49         ImageState changed_states;
50         NotifyType notify;
51
52         Histogram *histogram;
53
54         OsdShowFlags show;
55
56         gint ovl_info;
57
58         gint x;
59         gint y;
60
61         gint icon_time[IMAGE_OSD_COUNT];
62         gint icon_id[IMAGE_OSD_COUNT];
63
64         guint idle_id; /* event source id */
65         guint timer_id; /* event source id */
66         gulong destroy_id;
67 };
68
69
70 typedef struct _OSDIcon OSDIcon;
71 struct _OSDIcon {
72         gboolean reset; /* reset on new image */
73         gint x;         /* x, y offset */
74         gint y;
75         gchar *key;     /* inline pixbuf */
76 };
77
78 static OSDIcon osd_icons[] = {
79         {  TRUE,   0,   0, NULL },                      /* none */
80         {  TRUE, -10, -10, NULL },                      /* auto rotated */
81         {  TRUE, -10, -10, NULL },                      /* user rotated */
82         {  TRUE, -40, -10, NULL },                      /* color embedded */
83         {  TRUE, -70, -10, NULL },                      /* first image */
84         {  TRUE, -70, -10, NULL },                      /* last image */
85         { FALSE, -70, -10, NULL },                      /* osd enabled */
86         { FALSE, 0, 0, NULL }
87 };
88
89 #define OSD_DATA "overlay-data"
90
91 #define IMAGE_OSD_DEFAULT_DURATION 30
92
93 #define HISTOGRAM_HEIGHT 140
94 #define HISTOGRAM_WIDTH  256
95
96 static void image_osd_timer_schedule(OverlayStateData *osd);
97
98 void set_image_overlay_template_string(gchar **template_string, const gchar *value)
99 {
100         g_assert(template_string);
101
102         g_free(*template_string);
103         *template_string = g_strdup(value);
104 }
105
106
107 void set_default_image_overlay_template_string(gchar **template_string)
108 {
109         set_image_overlay_template_string(template_string, DEFAULT_OVERLAY_INFO);
110 }
111
112 void set_image_overlay_font_string(gchar **font_string, const gchar *value)
113 {
114         g_assert(font_string);
115
116         g_free(*font_string);
117         *font_string = g_strdup(value);
118 }
119
120 static OverlayStateData *image_get_osd_data(ImageWindow *imd)
121 {
122         OverlayStateData *osd;
123
124         if (!imd) return NULL;
125
126         g_assert(imd->pr);
127
128         osd = g_object_get_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA");
129         return osd;
130 }
131
132 static void image_set_osd_data(ImageWindow *imd, OverlayStateData *osd)
133 {
134         g_assert(imd);
135         g_assert(imd->pr);
136         g_object_set_data(G_OBJECT(imd->pr), "IMAGE_OVERLAY_DATA", osd);
137 }
138
139 /*
140  *----------------------------------------------------------------------------
141  * image histogram
142  *----------------------------------------------------------------------------
143  */
144
145
146 void image_osd_histogram_toggle_channel(ImageWindow *imd)
147 {
148         OverlayStateData *osd = image_get_osd_data(imd);
149
150         if (!osd || !osd->histogram) return;
151
152         histogram_toggle_channel(osd->histogram);
153         image_osd_update(imd);
154 }
155
156 void image_osd_histogram_toggle_mode(ImageWindow *imd)
157 {
158         OverlayStateData *osd = image_get_osd_data(imd);
159
160         if (!osd || !osd->histogram) return;
161
162         histogram_toggle_mode(osd->histogram);
163         image_osd_update(imd);
164 }
165
166 void image_osd_histogram_set_channel(ImageWindow *imd, gint chan)
167 {
168         OverlayStateData *osd = image_get_osd_data(imd);
169
170         if (!osd || !osd->histogram) return;
171
172         histogram_set_channel(osd->histogram, chan);
173         image_osd_update(imd);
174 }
175
176 void image_osd_histogram_set_mode(ImageWindow *imd, gint mode)
177 {
178         OverlayStateData *osd = image_get_osd_data(imd);
179
180         if (!osd || !osd->histogram) return;
181
182         histogram_set_mode(osd->histogram, mode);
183         image_osd_update(imd);
184 }
185
186 gint image_osd_histogram_get_channel(ImageWindow *imd)
187 {
188         OverlayStateData *osd = image_get_osd_data(imd);
189
190         if (!osd || !osd->histogram) return HCHAN_DEFAULT;
191
192         return histogram_get_channel(osd->histogram);
193 }
194
195 gint image_osd_histogram_get_mode(ImageWindow *imd)
196 {
197         OverlayStateData *osd = image_get_osd_data(imd);
198
199         if (!osd || !osd->histogram) return 0;
200
201         return histogram_get_mode(osd->histogram);
202 }
203
204 void image_osd_toggle(ImageWindow *imd)
205 {
206         OsdShowFlags show;
207
208         if (!imd) return;
209
210         show = image_osd_get(imd);
211         if (show == OSD_SHOW_NOTHING)
212                 {
213                 image_osd_set(imd, OSD_SHOW_INFO | OSD_SHOW_STATUS);
214                 return;
215                 }
216         else
217                 {
218                 if (show & OSD_SHOW_HISTOGRAM)
219                         {
220                         image_osd_set(imd, OSD_SHOW_NOTHING);
221                         }
222                 else
223                         {
224                         image_osd_set(imd, show | OSD_SHOW_HISTOGRAM);
225                         }
226                 }
227 }
228
229 static gchar *keywords_to_string(FileData *fd)
230 {
231         GList *keywords;
232         GString *kwstr = NULL;
233         gchar *ret = NULL;
234
235         g_assert(fd);
236
237         keywords = metadata_read_list(fd, KEYWORD_KEY, METADATA_PLAIN);
238
239         if (keywords)
240                 {
241                 GList *work = keywords;
242
243                 while (work)
244                         {
245                         gchar *kw = work->data;
246                         work = work->next;
247
248                         if (!kw) continue;
249                         if (!kwstr)
250                                 kwstr = g_string_new("");
251                         else
252                                 g_string_append(kwstr, ", ");
253
254                         g_string_append(kwstr, kw);
255                         }
256                 string_list_free(keywords);
257                 }
258
259         if (kwstr)
260                 {
261                 ret = kwstr->str;
262                 g_string_free(kwstr, FALSE);
263                 }
264
265         return ret;
266 }
267
268 static gchar *image_osd_mkinfo(const gchar *str, ImageWindow *imd, GHashTable *vars)
269 {
270         gchar delim = '%', imp = '|', sep[] = " - ";
271         gchar *start, *end;
272         guint pos, prev;
273         gboolean want_separator = FALSE;
274         gchar *name, *data;
275         GString *new;
276         gchar *ret;
277
278         if (!str || !*str) return g_strdup("");
279
280         new = g_string_new(str);
281
282         prev = -1;
283
284         while (TRUE)
285                 {
286                 guint limit = 0;
287                 gchar *trunc = NULL;
288                 gchar *limpos = NULL;
289                 gchar *extra = NULL;
290                 gchar *extrapos = NULL;
291                 gchar *p;
292
293                 start = strchr(new->str + (prev + 1), delim);
294                 if (!start)
295                         break;
296                 end = strchr(start+1, delim);
297                 if (!end)
298                         break;
299
300                 /* Search for optionnal modifiers
301                  * %name:99:extra% -> name = "name", limit=99, extra = "extra"
302                  */
303                 for (p = start + 1; p < end; p++)
304                         {
305                         if (p[0] == ':')
306                                 {
307                                 if (g_ascii_isdigit(p[1]) && !limpos)
308                                         {
309                                         limpos = p + 1;
310                                         if (!trunc) trunc = p;
311                                         }
312                                 else
313                                         {
314                                         extrapos = p + 1;
315                                         if (!trunc) trunc = p;
316                                         break;
317                                         }
318                                 }
319                         }
320
321                 if (limpos)
322                         limit = (guint) atoi(limpos);
323
324                 if (extrapos)
325                         extra = g_strndup(extrapos, end - extrapos);
326
327                 name = g_strndup(start+1, (trunc ? trunc : end)-start-1);
328                 pos = start - new->str;
329                 data = NULL;
330
331                 if (strcmp(name, "keywords") == 0)
332                         {
333                         data = keywords_to_string(imd->image_fd);
334                         }
335                 else if (strcmp(name, "comment") == 0)
336                         {
337                         data = metadata_read_string(imd->image_fd, COMMENT_KEY, METADATA_PLAIN);
338                         }
339                 else if (strcmp(name, "imagecomment") == 0)
340                         {
341                         data = exif_get_image_comment(imd->image_fd);
342                         }
343 #ifdef HAVE_LUA
344                 else if (strncmp(name, "lua/", 4) == 0)
345                         {
346                         gchar *tmp;
347                         tmp = strchr(name+4, '/');
348                         if (!tmp)
349                                 break;
350                         *tmp = '\0';
351                         data = lua_callvalue(imd->image_fd, name+4, tmp+1);
352                         }
353 #endif
354                 else
355                         {
356                         data = g_strdup(g_hash_table_lookup(vars, name));
357                         if (!data)
358                                 data = metadata_read_string(imd->image_fd, name, METADATA_FORMATTED);
359                         }
360
361                 if (data && *data && limit > 0 && strlen(data) > limit + 3)
362                         {
363                         gchar *new_data = g_strdup_printf("%-*.*s...", limit, limit, data);
364                         g_free(data);
365                         data = new_data;
366                         }
367
368                 if (data)
369                         {
370                         /* Since we use pango markup to display, we need to escape here */
371                         gchar *escaped = g_markup_escape_text(data, -1);
372                         g_free(data);
373                         data = escaped;
374                         }
375
376                 if (extra)
377                         {
378                         if (data && *data)
379                                 {
380                                 /* Display data between left and right parts of extra string
381                                  * the data is expressed by a '*' character. A '*' may be escaped
382                                  * by a \. You should escape all '*' characters, do not rely on the
383                                  * current implementation which only replaces the first unescaped '*'.
384                                  * If no "*" is present, the extra string is just appended to data string.
385                                  * Pango mark up is accepted in left and right parts.
386                                  * Any \n is replaced by a newline
387                                  * Examples:
388                                  * "<i>*</i>\n" -> data is displayed in italics ended with a newline
389                                  * "\n"         -> ended with newline
390                                  * "ISO *"      -> prefix data with "ISO " (ie. "ISO 100")
391                                  * "\**\*"      -> prefix data with a star, and append a star (ie. "*100*")
392                                  * "\\*"        -> prefix data with an anti slash (ie "\100")
393                                  * "Collection <b>*</b>\n" -> display data in bold prefixed by "Collection " and a newline is appended
394                                  *
395                                  * FIXME: using background / foreground colors lead to weird results.
396                                  */
397                                 gchar *new_data;
398                                 gchar *left = NULL;
399                                 gchar *right = extra;
400                                 gchar *p;
401                                 guint len = strlen(extra);
402
403                                 /* Search for left and right parts and unescape characters */
404                                 for (p = extra; *p; p++, len--)
405                                         if (p[0] == '\\')
406                                                 {
407                                                 if (p[1] == 'n')
408                                                         {
409                                                         memmove(p+1, p+2, --len);
410                                                         p[0] = '\n';
411                                                         }
412                                                 else if (p[1] != '\0')
413                                                         memmove(p, p+1, len--); // includes \0
414                                                 }
415                                         else if (p[0] == '*' && !left)
416                                                 {
417                                                 right = p + 1;
418                                                 left = extra;
419                                                 }
420
421                                 if (left) right[-1] = '\0';
422
423                                 new_data = g_strdup_printf("%s%s%s", left ? left : "", data, right);
424                                 g_free(data);
425                                 data = new_data;
426                                 }
427                         g_free(extra);
428                         }
429
430                 g_string_erase(new, pos, end-start+1);
431                 if (data && *data)
432                         {
433                         if (want_separator)
434                                 {
435                                 /* insert separator */
436                                 g_string_insert(new, pos, sep);
437                                 pos += strlen(sep);
438                                 want_separator = FALSE;
439                                 }
440
441                         g_string_insert(new, pos, data);
442                         pos += strlen(data);
443                 }
444
445                 if (pos-prev >= 1 && new->str[pos] == imp)
446                         {
447                         /* pipe character is replaced by a separator, delete it
448                          * and raise a flag if needed */
449                         g_string_erase(new, pos--, 1);
450                         want_separator |= (data && *data);
451                         }
452
453                 if (new->str[pos] == '\n') want_separator = FALSE;
454
455                 prev = pos - 1;
456
457                 g_free(name);
458                 g_free(data);
459                 }
460
461         /* search and destroy empty lines */
462         end = new->str;
463         while ((start = strchr(end, '\n')))
464                 {
465                 end = start;
466                 while (*++(end) == '\n')
467                         ;
468                 g_string_erase(new, start-new->str, end-start-1);
469                 }
470
471         g_strchomp(new->str);
472
473         ret = new->str;
474         g_string_free(new, FALSE);
475
476         return ret;
477 }
478
479 typedef enum {
480         OSDT_NONE       = 0,
481         OSDT_FREE       = 1 << 0,
482         OSDT_NO_DUP     = 1 << 1
483 } OsdTemplateFlags;
484
485 static void osd_template_insert(GHashTable *vars, gchar *keyword, gchar *value, OsdTemplateFlags flags)
486 {
487         if (!value)
488                 {
489                 g_hash_table_insert(vars, keyword, g_strdup(""));
490                 return;
491                 }
492
493         if (flags & OSDT_NO_DUP)
494                 {
495                 g_hash_table_insert(vars, keyword, value);
496                 return;
497                 }
498         else
499                 {
500                 g_hash_table_insert(vars, keyword, g_strdup(value));
501                 }
502
503         if (flags & OSDT_FREE) g_free((gpointer) value);
504 }
505
506 static GdkPixbuf *image_osd_info_render(OverlayStateData *osd)
507 {
508         GdkPixbuf *pixbuf = NULL;
509         gint width, height;
510         PangoLayout *layout;
511         const gchar *name;
512         gchar *text;
513         gboolean with_hist;
514         const HistMap *histmap = NULL;
515         ImageWindow *imd = osd->imd;
516         FileData *fd = image_get_fd(imd);
517         PangoFontDescription *font_desc;
518
519         if (!fd) return NULL;
520
521         name = image_get_name(imd);
522         if (name)
523                 {
524                 gint n, t;
525                 CollectionData *cd;
526                 CollectInfo *info;
527                 GHashTable *vars;
528
529                 vars = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, g_free);
530
531                 cd = image_get_collection(imd, &info);
532                 if (cd)
533                         {
534                         t = g_list_length(cd->list);
535                         n = g_list_index(cd->list, info) + 1;
536                         if (cd->name)
537                                 {
538                                 if (file_extension_match(cd->name, GQ_COLLECTION_EXT))
539                                         osd_template_insert(vars, "collection", remove_extension_from_path(cd->name), OSDT_FREE);
540                                 else
541                                         osd_template_insert(vars, "collection", cd->name, OSDT_NONE);
542                                 }
543                         else
544                                 {
545                                 osd_template_insert(vars, "collection", _("Untitled"), OSDT_NONE);
546                                 }
547                         }
548                 else
549                         {
550                         LayoutWindow *lw = layout_find_by_image(imd);
551                         if (lw)
552                                 {
553                                 if (lw->slideshow)
554                                         {
555                                         n = g_list_length(lw->slideshow->list_done);
556                                         t = n + g_list_length(lw->slideshow->list);
557                                         if (n == 0) n = t;
558                                         }
559                                 else
560                                         {
561                                         t = layout_list_count(lw, NULL);
562                                         n = layout_list_get_index(lw, image_get_fd(lw->image)) + 1;
563                                         }
564                                 }
565                         else if (view_window_find_image(imd, &n, &t))
566                                 {
567                                 n++;
568                                 }
569                         else
570                                 {
571                                 t = 1;
572                                 n = 1;
573                                 }
574
575                         if (n < 1) n = 1;
576                         if (t < 1) t = 1;
577
578                         osd_template_insert(vars, "collection", NULL, OSDT_NONE);
579                         }
580
581                 osd_template_insert(vars, "number", g_strdup_printf("%d", n), OSDT_NO_DUP);
582                 osd_template_insert(vars, "total", g_strdup_printf("%d", t), OSDT_NO_DUP);
583                 osd_template_insert(vars, "name", (gchar *) name, OSDT_NONE);
584                 osd_template_insert(vars, "date", imd->image_fd ? ((gchar *) text_from_time(imd->image_fd->date)) : "", OSDT_NONE);
585                 osd_template_insert(vars, "size", imd->image_fd ? (text_from_size_abrev(imd->image_fd->size)) : g_strdup(""), OSDT_FREE);
586                 osd_template_insert(vars, "zoom", image_zoom_get_as_text(imd), OSDT_FREE);
587
588                 if (!imd->unknown)
589                         {
590                         gint w, h;
591                         GdkPixbuf *load_pixbuf = image_loader_get_pixbuf(imd->il);
592
593                         if (imd->delay_flip &&
594                             imd->il && load_pixbuf &&
595                             image_get_pixbuf(imd) != load_pixbuf)
596                                 {
597                                 w = gdk_pixbuf_get_width(load_pixbuf);
598                                 h = gdk_pixbuf_get_height(load_pixbuf);
599                                 }
600                         else
601                                 {
602                                 image_get_image_size(imd, &w, &h);
603                                 }
604
605
606                         osd_template_insert(vars, "width", g_strdup_printf("%d", w), OSDT_NO_DUP);
607                         osd_template_insert(vars, "height", g_strdup_printf("%d", h), OSDT_NO_DUP);
608                         osd_template_insert(vars, "res", g_strdup_printf("%d Ã— %d", w, h), OSDT_FREE);
609                         }
610                 else
611                         {
612                         osd_template_insert(vars, "width", NULL, OSDT_NONE);
613                         osd_template_insert(vars, "height", NULL, OSDT_NONE);
614                         osd_template_insert(vars, "res", NULL, OSDT_NONE);
615                         }
616
617                 text = image_osd_mkinfo(options->image_overlay.template_string, imd, vars);
618                 g_hash_table_destroy(vars);
619
620         } else {
621                 /* When does this occur ?? */
622                 text = g_markup_escape_text(_("Untitled"), -1);
623         }
624
625         with_hist = ((osd->show & OSD_SHOW_HISTOGRAM) && osd->histogram);
626         if (with_hist)
627                 {
628                 histmap = histmap_get(imd->image_fd);
629                 if (!histmap)
630                         {
631                         histmap_start_idle(imd->image_fd);
632                         with_hist = FALSE;
633                         }
634                 }
635
636
637         {
638                 gint active_marks = 0;
639                 gint mark;
640                 gchar *text2;
641
642                 for (mark = 0; mark < FILEDATA_MARKS_SIZE; mark++)
643                         {
644                         active_marks += file_data_get_mark(fd, mark);
645                         }
646
647                 if (active_marks > 0)
648                         {
649                         GString *buf = g_string_sized_new(FILEDATA_MARKS_SIZE * 2);
650
651                         for (mark = 0; mark < FILEDATA_MARKS_SIZE; mark++)
652                                 {
653                                 g_string_append_printf(buf, file_data_get_mark(fd, mark) ? " <span background='#FF00FF'>%c</span>" : " %c", '1' + mark);
654                                 }
655
656                         if (*text)
657                                 text2 = g_strdup_printf("%s\n%s", text, buf->str);
658                         else
659                                 text2 = g_strdup(buf->str);
660                         g_string_free(buf, TRUE);
661                         g_free(text);
662                         text = text2;
663                         }
664
665                 if (with_hist)
666                         {
667                         gchar *escaped_histogram_label = g_markup_escape_text(histogram_label(osd->histogram), -1);
668                         if (*text)
669                                 text2 = g_strdup_printf("%s\n%s", text, escaped_histogram_label);
670                         else
671                                 text2 = g_strdup(escaped_histogram_label);
672                         g_free(escaped_histogram_label);
673                         g_free(text);
674                         text = text2;
675                         }
676         }
677
678         font_desc = pango_font_description_from_string(options->image_overlay.font);
679         layout = gtk_widget_create_pango_layout(imd->pr, NULL);
680         pango_layout_set_font_description(layout, font_desc);
681
682         pango_layout_set_markup(layout, text, -1);
683         g_free(text);
684
685         pango_layout_get_pixel_size(layout, &width, &height);
686         /* with empty text width is set to 0, but not height) */
687         if (width == 0)
688                 height = 0;
689         else if (height == 0)
690                 width = 0;
691         if (width > 0) width += 10;
692         if (height > 0) height += 10;
693
694         if (with_hist)
695                 {
696                 if (width < HISTOGRAM_WIDTH + 10) width = HISTOGRAM_WIDTH + 10;
697                 height += HISTOGRAM_HEIGHT + 5;
698                 }
699
700         if (width > 0 && height > 0)
701                 {
702                 pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, width, height);
703                 pixbuf_set_rect_fill(pixbuf, 3, 3, width-6, height-6, options->image_overlay.background_red, options->image_overlay.background_green,
704                                                                                                                         options->image_overlay.background_blue, options->image_overlay.background_alpha);
705                 pixbuf_set_rect(pixbuf, 0, 0, width, height, 240, 240, 240, 80, 1, 1, 1, 1);
706                 pixbuf_set_rect(pixbuf, 1, 1, width-2, height-2, 240, 240, 240, 130, 1, 1, 1, 1);
707                 pixbuf_set_rect(pixbuf, 2, 2, width-4, height-4, 240, 240, 240, 180, 1, 1, 1, 1);
708                 pixbuf_pixel_set(pixbuf, 0, 0, 0, 0, 0, 0);
709                 pixbuf_pixel_set(pixbuf, width - 1, 0, 0, 0, 0, 0);
710                 pixbuf_pixel_set(pixbuf, 0, height - 1, 0, 0, 0, 0);
711                 pixbuf_pixel_set(pixbuf, width - 1, height - 1, 0, 0, 0, 0);
712
713                 if (with_hist)
714                         {
715                         gint x = 5;
716                         gint y = height - HISTOGRAM_HEIGHT - 5;
717                         gint w = width - 10;
718
719                         pixbuf_set_rect_fill(pixbuf, x, y, w, HISTOGRAM_HEIGHT, 220, 220, 220, 210);
720                         histogram_draw(osd->histogram, histmap, pixbuf, x, y, w, HISTOGRAM_HEIGHT);
721                         }
722                 pixbuf_draw_layout(pixbuf, layout, imd->pr, 5, 5, options->image_overlay.text_red, options->image_overlay.text_green,
723                                                                                                                         options->image_overlay.text_blue, options->image_overlay.text_alpha);
724         }
725
726         g_object_unref(G_OBJECT(layout));
727
728         return pixbuf;
729 }
730
731 static GdkPixbuf *image_osd_icon_pixbuf(ImageOSDFlag flag)
732 {
733         static GdkPixbuf **icons = NULL;
734         GdkPixbuf *icon = NULL;
735
736         if (!icons) icons = g_new0(GdkPixbuf *, IMAGE_OSD_COUNT);
737         if (icons[flag]) return icons[flag];
738
739         if (osd_icons[flag].key)
740                 {
741                 icon = pixbuf_inline(osd_icons[flag].key);
742                 }
743
744         if (!icon)
745                 {
746                 icon = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, 24, 24);
747                 pixbuf_set_rect_fill(icon, 1, 1, 22, 22, 255, 255, 255, 200);
748                 pixbuf_set_rect(icon, 0, 0, 24, 24, 0, 0, 0, 128, 1, 1, 1, 1);
749                 switch (flag)
750                         {
751                         case IMAGE_OSD_ROTATE_AUTO:
752                                 pixbuf_set_rect(icon, 3, 8, 11, 12,
753                                                 0, 0, 0, 255,
754                                                 3, 0, 3, 0);
755                                 pixbuf_draw_triangle(icon, 14, 3, 6, 12,
756                                                      20, 9, 14, 15, 14, 3,
757                                                      0, 0, 0, 255);
758                                 break;
759                         case IMAGE_OSD_ROTATE_USER:
760                                 break;
761                         case IMAGE_OSD_COLOR:
762                                 pixbuf_set_rect_fill(icon, 3, 3, 18, 6, 200, 0, 0, 255);
763                                 pixbuf_set_rect_fill(icon, 3, 9, 18, 6, 0, 200, 0, 255);
764                                 pixbuf_set_rect_fill(icon, 3, 15, 18, 6, 0, 0, 200, 255);
765                                 break;
766                         case IMAGE_OSD_FIRST:
767                                 pixbuf_set_rect(icon, 3, 3, 18, 18, 0, 0, 0, 200, 3, 3, 3, 0);
768                                 pixbuf_draw_triangle(icon, 6, 5, 12, 6,
769                                                      12, 5, 18, 11, 6, 11,
770                                                      0, 0, 0, 255);
771                                 break;
772                         case IMAGE_OSD_LAST:
773                                 pixbuf_set_rect(icon, 3, 3, 18, 18, 0, 0, 0, 200, 3, 3, 0, 3);
774                                 pixbuf_draw_triangle(icon, 6, 12, 12, 6,
775                                                      12, 18, 6, 12, 18, 12,
776                                                      0, 0, 0, 255);
777                                 break;
778                         case IMAGE_OSD_ICON:
779                                 pixbuf_set_rect_fill(icon, 11, 3, 3, 12, 0, 0, 0, 255);
780                                 pixbuf_set_rect_fill(icon, 11, 17, 3, 3, 0, 0, 0, 255);
781                                 break;
782                         default:
783                                 break;
784                         }
785                 }
786
787         icons[flag] = icon;
788
789         return icon;
790 }
791
792 static gint image_overlay_add(ImageWindow *imd, GdkPixbuf *pixbuf, gint x, gint y,
793                               OverlayRendererFlags flags)
794 {
795         return pixbuf_renderer_overlay_add((PixbufRenderer *)imd->pr, pixbuf, x, y, flags);
796 }
797
798 static void image_overlay_set(ImageWindow *imd, gint id, GdkPixbuf *pixbuf, gint x, gint y)
799 {
800         pixbuf_renderer_overlay_set((PixbufRenderer *)imd->pr, id, pixbuf, x, y);
801 }
802
803 static void image_overlay_remove(ImageWindow *imd, gint id)
804 {
805         pixbuf_renderer_overlay_remove((PixbufRenderer *)imd->pr, id);
806 }
807
808 static void image_osd_icon_show(OverlayStateData *osd, ImageOSDFlag flag)
809 {
810         GdkPixbuf *pixbuf;
811
812         if (osd->icon_id[flag]) return;
813
814         pixbuf = image_osd_icon_pixbuf(flag);
815         if (!pixbuf) return;
816
817         osd->icon_id[flag] = image_overlay_add(osd->imd, pixbuf,
818                                                osd_icons[flag].x, osd_icons[flag].y,
819                                                OVL_RELATIVE);
820 }
821
822 static void image_osd_icon_hide(OverlayStateData *osd, ImageOSDFlag flag)
823 {
824         if (osd->icon_id[flag])
825                 {
826                 image_overlay_remove(osd->imd, osd->icon_id[flag]);
827                 osd->icon_id[flag] = 0;
828                 }
829 }
830
831 static void image_osd_icons_reset_time(OverlayStateData *osd)
832 {
833         gint i;
834
835         for (i = 0; i < IMAGE_OSD_COUNT; i++)
836                 {
837                 if (osd_icons[i].reset)
838                         {
839                         osd->icon_time[i] = 0;
840                         }
841                 }
842 }
843
844 static void image_osd_icons_update(OverlayStateData *osd)
845 {
846         gint i;
847
848         for (i = 0; i < IMAGE_OSD_COUNT; i++)
849                 {
850                 if (osd->icon_time[i] > 0)
851                         {
852                         image_osd_icon_show(osd, i);
853                         }
854                 else
855                         {
856                         image_osd_icon_hide(osd, i);
857                         }
858                 }
859 }
860
861 static void image_osd_icons_hide(OverlayStateData *osd)
862 {
863         gint i;
864
865         for (i = 0; i < IMAGE_OSD_COUNT; i++)
866                 {
867                 image_osd_icon_hide(osd, i);
868                 }
869 }
870
871 static void image_osd_info_show(OverlayStateData *osd, GdkPixbuf *pixbuf)
872 {
873         if (osd->ovl_info == 0)
874                 {
875                 osd->ovl_info = image_overlay_add(osd->imd, pixbuf, osd->x, osd->y, OVL_RELATIVE);
876                 }
877         else
878                 {
879                 image_overlay_set(osd->imd, osd->ovl_info, pixbuf, osd->x, osd->y);
880                 }
881 }
882
883 static void image_osd_info_hide(OverlayStateData *osd)
884 {
885         if (osd->ovl_info == 0) return;
886
887         image_overlay_remove(osd->imd, osd->ovl_info);
888         osd->ovl_info = 0;
889 }
890
891 static gboolean image_osd_update_cb(gpointer data)
892 {
893         OverlayStateData *osd = data;
894
895         if (osd->show & OSD_SHOW_INFO)
896                 {
897                 /* redraw when the image was changed,
898                    with histogram we have to redraw also when loading is finished */
899                 if (osd->changed_states & IMAGE_STATE_IMAGE ||
900                     (osd->changed_states & IMAGE_STATE_LOADING && osd->show & OSD_SHOW_HISTOGRAM) ||
901                     osd->notify & NOTIFY_HISTMAP)
902                         {
903                         GdkPixbuf *pixbuf;
904
905                         pixbuf = image_osd_info_render(osd);
906                         if (pixbuf)
907                                 {
908                                 image_osd_info_show(osd, pixbuf);
909                                 g_object_unref(pixbuf);
910                                 }
911                         else
912                                 {
913                                 image_osd_info_hide(osd);
914                                 }
915                         }
916                 }
917         else
918                 {
919                 image_osd_info_hide(osd);
920                 }
921
922         if (osd->show & OSD_SHOW_STATUS)
923                 {
924                 if (osd->changed_states & IMAGE_STATE_IMAGE)
925                         image_osd_icons_reset_time(osd);
926
927                 if (osd->changed_states & IMAGE_STATE_COLOR_ADJ)
928                         {
929                         osd->icon_time[IMAGE_OSD_COLOR] = IMAGE_OSD_DEFAULT_DURATION + 1;
930                         image_osd_timer_schedule(osd);
931                         }
932
933                 if (osd->changed_states & IMAGE_STATE_ROTATE_AUTO)
934                         {
935                         gint n = 0;
936
937                         if (osd->imd->state & IMAGE_STATE_ROTATE_AUTO)
938                                 {
939                                 n = 1;
940                                 if (!osd->imd->cm) n += IMAGE_OSD_DEFAULT_DURATION;
941                                 }
942
943                         osd->icon_time[IMAGE_OSD_ROTATE_AUTO] = n;
944                         image_osd_timer_schedule(osd);
945                         }
946
947                 image_osd_icons_update(osd);
948                 }
949         else
950                 {
951                 image_osd_icons_hide(osd);
952                 }
953
954         osd->changed_states = IMAGE_STATE_NONE;
955         osd->notify = 0;
956         osd->idle_id = 0;
957         return FALSE;
958 }
959
960 static void image_osd_update_schedule(OverlayStateData *osd, gboolean force)
961 {
962         if (force) osd->changed_states |= IMAGE_STATE_IMAGE;
963
964         if (!osd->idle_id)
965                 {
966                 osd->idle_id = g_idle_add_full(G_PRIORITY_HIGH, image_osd_update_cb, osd, NULL);
967                 }
968 }
969
970 void image_osd_update(ImageWindow *imd)
971 {
972         OverlayStateData *osd = image_get_osd_data(imd);
973
974         if (!osd) return;
975
976         image_osd_update_schedule(osd, TRUE);
977 }
978
979 static gboolean image_osd_timer_cb(gpointer data)
980 {
981         OverlayStateData *osd = data;
982         gboolean done = TRUE;
983         gboolean changed = FALSE;
984         gint i;
985
986         for (i = 0; i < IMAGE_OSD_COUNT; i++)
987                 {
988                 if (osd->icon_time[i] > 1)
989                         {
990                         osd->icon_time[i]--;
991                         if (osd->icon_time[i] < 2)
992                                 {
993                                 osd->icon_time[i] = 0;
994                                 changed = TRUE;
995                                 }
996                         else
997                                 {
998                                 done = FALSE;
999                                 }
1000                         }
1001                 }
1002
1003         if (changed) image_osd_update_schedule(osd, FALSE);
1004
1005         if (done)
1006                 {
1007                 osd->timer_id = 0;
1008                 return FALSE;
1009                 }
1010
1011         return TRUE;
1012 }
1013
1014 static void image_osd_timer_schedule(OverlayStateData *osd)
1015 {
1016         if (!osd->timer_id)
1017                 {
1018                 osd->timer_id = g_timeout_add(100, image_osd_timer_cb, osd);
1019                 }
1020 }
1021
1022 static void image_osd_state_cb(ImageWindow *imd, ImageState state, gpointer data)
1023 {
1024         OverlayStateData *osd = data;
1025
1026         osd->changed_states |= state;
1027         image_osd_update_schedule(osd, FALSE);
1028 }
1029
1030 static void image_osd_notify_cb(FileData *fd, NotifyType type, gpointer data)
1031 {
1032         OverlayStateData *osd = data;
1033
1034         if ((type & (NOTIFY_HISTMAP)) && osd->imd && fd == osd->imd->image_fd)
1035                 {
1036                 DEBUG_1("Notify osd: %s %04x", fd->path, type);
1037                 osd->notify |= type;
1038                 image_osd_update_schedule(osd, FALSE);
1039                 }
1040 }
1041
1042
1043 static void image_osd_free(OverlayStateData *osd)
1044 {
1045         if (!osd) return;
1046
1047         if (osd->idle_id) g_source_remove(osd->idle_id);
1048         if (osd->timer_id) g_source_remove(osd->timer_id);
1049
1050         file_data_unregister_notify_func(image_osd_notify_cb, osd);
1051
1052         if (osd->imd)
1053                 {
1054                 image_set_osd_data(osd->imd, NULL);
1055                 g_signal_handler_disconnect(osd->imd->pr, osd->destroy_id);
1056
1057                 image_set_state_func(osd->imd, NULL, NULL);
1058
1059                 image_osd_info_hide(osd);
1060                 image_osd_icons_hide(osd);
1061                 }
1062
1063         if (osd->histogram) histogram_free(osd->histogram);
1064
1065         g_free(osd);
1066 }
1067
1068 static void image_osd_destroy_cb(GtkWidget *widget, gpointer data)
1069 {
1070         OverlayStateData *osd = data;
1071
1072         osd->imd = NULL;
1073         image_osd_free(osd);
1074 }
1075
1076 static void image_osd_enable(ImageWindow *imd, OsdShowFlags show)
1077 {
1078         OverlayStateData *osd = image_get_osd_data(imd);
1079
1080         if (!osd)
1081                 {
1082                 osd = g_new0(OverlayStateData, 1);
1083                 osd->imd = imd;
1084                 osd->show = OSD_SHOW_NOTHING;
1085                 osd->x = options->image_overlay.x;
1086                 osd->y = options->image_overlay.y;
1087
1088                 osd->histogram = histogram_new();
1089
1090                 osd->destroy_id = g_signal_connect(G_OBJECT(imd->pr), "destroy",
1091                                                    G_CALLBACK(image_osd_destroy_cb), osd);
1092                 image_set_osd_data(imd, osd);
1093
1094                 image_set_state_func(osd->imd, image_osd_state_cb, osd);
1095                 file_data_register_notify_func(image_osd_notify_cb, osd, NOTIFY_PRIORITY_LOW);
1096                 }
1097
1098         if (show & OSD_SHOW_STATUS)
1099                 image_osd_icon(imd, IMAGE_OSD_ICON, -1);
1100
1101         if (show != osd->show)
1102                 image_osd_update_schedule(osd, TRUE);
1103
1104         osd->show = show;
1105 }
1106
1107 void image_osd_set(ImageWindow *imd, OsdShowFlags show)
1108 {
1109         if (!imd) return;
1110
1111         image_osd_enable(imd, show);
1112 }
1113
1114 OsdShowFlags image_osd_get(ImageWindow *imd)
1115 {
1116         OverlayStateData *osd = image_get_osd_data(imd);
1117
1118         return osd ? osd->show : OSD_SHOW_NOTHING;
1119 }
1120
1121 Histogram *image_osd_get_histogram(ImageWindow *imd)
1122 {
1123         OverlayStateData *osd = image_get_osd_data(imd);
1124
1125         return osd ? osd->histogram : NULL;
1126 }
1127
1128 void image_osd_copy_status(ImageWindow *src, ImageWindow *dest)
1129 {
1130         Histogram *h_src, *h_dest;
1131         image_osd_set(dest, image_osd_get(src));
1132
1133         h_src = image_osd_get_histogram(src);
1134         h_dest = image_osd_get_histogram(dest);
1135
1136         h_dest->histogram_mode = h_src->histogram_mode;
1137         h_dest->histogram_channel = h_src->histogram_channel;
1138
1139 }
1140
1141 /* duration:
1142     0 = hide
1143     1 = show
1144    2+ = show for duration tenths of a second
1145    -1 = use default duration
1146  */
1147 void image_osd_icon(ImageWindow *imd, ImageOSDFlag flag, gint duration)
1148 {
1149         OverlayStateData *osd = image_get_osd_data(imd);
1150
1151         if (!osd) return;
1152
1153         if (flag >= IMAGE_OSD_COUNT) return;
1154         if (duration < 0) duration = IMAGE_OSD_DEFAULT_DURATION;
1155         if (duration > 1) duration += 1;
1156
1157         osd->icon_time[flag] = duration;
1158
1159         image_osd_update_schedule(osd, FALSE);
1160         image_osd_timer_schedule(osd);
1161 }
1162 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */