Use pixbuf_fallback() instead of duplicated code
[geeqie.git] / src / image.cc
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.h"
24
25 #include "collect-table.h"
26 #include "color-man.h"
27 #include "exif.h"
28 #include "metadata.h"
29 #include "history-list.h"
30 #include "image-load.h"
31 #include "layout.h"
32 #include "layout-image.h"
33 #include "pixbuf-renderer.h"
34 #include "pixbuf-util.h"
35 #include "ui-fileops.h"
36 #include "filecache.h"
37
38 #include <cmath>
39
40 static GList *image_list = nullptr;
41
42 static void image_read_ahead_start(ImageWindow *imd);
43 static void image_cache_set(ImageWindow *imd, FileData *fd);
44
45 // For draw rectangle function
46 static gint pixbuf_start_x;
47 static gint pixbuf_start_y;
48 static gint image_start_x;
49 static gint image_start_y;
50 static gint rect_x1, rect_x2, rect_y1, rect_y2;
51 static gint rect_id = 0;
52
53 /*
54  *-------------------------------------------------------------------
55  * 'signals'
56  *-------------------------------------------------------------------
57  */
58
59 static void image_click_cb(PixbufRenderer *, GdkEventButton *event, gpointer data)
60 {
61         auto imd = static_cast<ImageWindow *>(data);
62         if (!options->image_lm_click_nav && event->button == MOUSE_BUTTON_MIDDLE)
63                 {
64                 imd->mouse_wheel_mode = !imd->mouse_wheel_mode;
65                 }
66
67         if (imd->func_button)
68                 {
69                 imd->func_button(imd, event, imd->data_button);
70                 }
71 }
72
73 static void switch_coords_orientation(ImageWindow *imd, gint x, gint y, gint width, gint height)
74 {
75         switch (imd->orientation)
76                 {
77                 case EXIF_ORIENTATION_TOP_LEFT:
78                         /* normal -- nothing to do */
79                         rect_x1 = image_start_x;
80                         rect_y1 = image_start_y;
81                         rect_x2 = x;
82                         rect_y2 = y;
83                         break;
84                 case EXIF_ORIENTATION_TOP_RIGHT:
85                         /* mirrored */
86                         rect_x1 = width - x;
87                         rect_y1 = image_start_y;
88                         rect_x2 = width - image_start_x;
89                         rect_y2 = y;
90                         break;
91                 case EXIF_ORIENTATION_BOTTOM_RIGHT:
92                         /* upside down */
93                         rect_x1 = width - x;
94                         rect_y1 = height - y;
95                         rect_x2 = width - image_start_x;
96                         rect_y2 = height - image_start_y;
97                         break;
98                 case EXIF_ORIENTATION_BOTTOM_LEFT:
99                         /* flipped */
100                         rect_x1 = image_start_x;
101                         rect_y1 = height - y;
102                         rect_x2 = x;
103                         rect_y2 = height - image_start_y;
104                         break;
105                 case EXIF_ORIENTATION_LEFT_TOP:
106                         /* left mirrored */
107                         rect_x1 = image_start_y;
108                         rect_y1 = image_start_x;
109                         rect_x2 = y;
110                         rect_y2 = x;
111                         break;
112                 case EXIF_ORIENTATION_RIGHT_TOP:
113                         /* rotated -90 (270) */
114                         rect_x1 = image_start_y;
115                         rect_y1 = width - x;
116                         rect_x2 = y;
117                         rect_y2 = width - image_start_x;
118                         break;
119                 case EXIF_ORIENTATION_RIGHT_BOTTOM:
120                         /* right mirrored */
121                         rect_x1 = height - y;
122                         rect_y1 = width - x;
123                         rect_x2 = height - image_start_y;
124                         rect_y2 = width - image_start_x;
125                         break;
126                 case EXIF_ORIENTATION_LEFT_BOTTOM:
127                         /* rotated 90 */
128                         rect_x1 = height - y;
129                         rect_y1 = image_start_x;
130                         rect_x2 = height - image_start_y;
131                         rect_y2 = x;
132                         break;
133                 default:
134                         /* The other values are out of range */
135                         break;
136                 }
137 }
138
139 static void image_press_cb(PixbufRenderer *pr, GdkEventButton *event, gpointer data)
140 {
141         auto imd = static_cast<ImageWindow *>(data);
142         LayoutWindow *lw;
143         gint x_pixel, y_pixel;
144
145         if(options->draw_rectangle)
146                 {
147                 pixbuf_renderer_get_mouse_position(pr, &x_pixel, &y_pixel);
148
149                 pixbuf_start_x = event->x;
150                 pixbuf_start_y = event->y;
151
152                 if (x_pixel == -1)
153                         {
154                         image_start_x = 0;
155                         }
156                 else
157                         {
158                         image_start_x = x_pixel;
159                         }
160
161                 if (y_pixel == -1)
162                         {
163                         image_start_y = 0;
164                         }
165                 else
166                         {
167                         image_start_y = y_pixel;
168                         }
169                 }
170
171         if (rect_id)
172                 {
173                 pixbuf_renderer_overlay_remove(reinterpret_cast<PixbufRenderer *>(imd->pr), rect_id);
174                 }
175
176         lw = layout_find_by_image(imd);
177         if (!lw)
178                 {
179                 layout_valid(&lw);
180                 }
181
182         if (lw && event->button == MOUSE_BUTTON_LEFT && event->type == GDK_2BUTTON_PRESS
183                                                                                                 && !options->image_lm_click_nav)
184                 {
185                 layout_image_full_screen_toggle(lw);
186                 }
187 }
188
189 static void image_drag_cb(PixbufRenderer *pr, GdkEventMotion *event, gpointer data)
190 {
191         auto imd = static_cast<ImageWindow *>(data);
192         gint width, height;
193         gint rect_width;
194         gint rect_height;
195         GdkPixbuf *rect_pixbuf;
196         gint x_pixel, y_pixel;
197         gint image_x_pixel, image_y_pixel;
198
199         if (options->draw_rectangle)
200                 {
201                 pixbuf_renderer_get_image_size(pr, &width, &height);
202                 pixbuf_renderer_get_mouse_position(pr, &x_pixel, &y_pixel);
203
204                 if (x_pixel == -1)
205                         {
206                         image_x_pixel = width;
207                         }
208                 else
209                         {
210                         image_x_pixel = x_pixel;
211                         }
212
213                 if (y_pixel == -1)
214                         {
215                         image_y_pixel = height;
216                         }
217                 else
218                         {
219                         image_y_pixel = y_pixel;
220                         }
221
222                 switch_coords_orientation(imd, image_x_pixel, image_y_pixel, width, height);
223                 if (rect_id)
224                         {
225                         pixbuf_renderer_overlay_remove(reinterpret_cast<PixbufRenderer *>(imd->pr), rect_id);
226                         }
227
228                 rect_width = pr->drag_last_x - pixbuf_start_x;
229                 if (rect_width <= 0)
230                         {
231                         rect_width = 1;
232                         }
233                 rect_height = pr->drag_last_y - pixbuf_start_y;
234                 if (rect_height <= 0)
235                         {
236                         rect_height = 1;
237                         }
238
239                 rect_pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, rect_width, rect_height);
240                 pixbuf_set_rect_fill(rect_pixbuf, 0, 0, rect_width, rect_height, 255, 255, 255, 0);
241                 pixbuf_set_rect(rect_pixbuf, 1, 1, rect_width-2, rect_height - 2, 0, 0, 0, 255, 1, 1, 1, 1);
242                 pixbuf_set_rect(rect_pixbuf, 2, 2, rect_width-4, rect_height - 4, 255, 255, 255, 255, 1, 1, 1, 1);
243
244                 rect_id = pixbuf_renderer_overlay_add(reinterpret_cast<PixbufRenderer *>(imd->pr), rect_pixbuf, pixbuf_start_x, pixbuf_start_y, OVL_NORMAL);
245                 }
246
247         pixbuf_renderer_get_scaled_size(pr, &width, &height);
248
249         if (imd->func_drag)
250                 {
251                 imd->func_drag(imd, event,
252                                static_cast<gfloat>(pr->drag_last_x - event->x) / width,
253                                static_cast<gfloat>(pr->drag_last_y - event->y) / height,
254                                imd->data_button);
255                 }
256 }
257
258 static void image_scroll_notify_cb(PixbufRenderer *pr, gpointer data)
259 {
260         auto imd = static_cast<ImageWindow *>(data);
261
262         if (imd->func_scroll_notify && pr->scale)
263                 {
264                 imd->func_scroll_notify(imd,
265                                         static_cast<gint>(static_cast<gdouble>(pr->x_scroll) / pr->scale),
266                                         static_cast<gint>(static_cast<gdouble>(pr->y_scroll) / pr->scale),
267                                         static_cast<gint>(static_cast<gdouble>(pr->image_width) - pr->vis_width / pr->scale),
268                                         static_cast<gint>(static_cast<gdouble>(pr->image_height) - pr->vis_height / pr->scale),
269                                         imd->data_scroll_notify);
270                 }
271 }
272
273 static void image_update_util(ImageWindow *imd)
274 {
275         if (imd->func_update) imd->func_update(imd, imd->data_update);
276 }
277
278
279 static void image_complete_util(ImageWindow *imd, gboolean preload)
280 {
281         if (imd->il && image_get_pixbuf(imd) != image_loader_get_pixbuf(imd->il)) return;
282
283         DEBUG_1("%s image load completed \"%s\" (%s)", get_exec_time(),
284                           (preload) ? (imd->read_ahead_fd ? imd->read_ahead_fd->path : "null") :
285                                       (imd->image_fd ? imd->image_fd->path : "null"),
286                           (preload) ? "preload" : "current");
287
288         if (!preload) imd->completed = TRUE;
289         if (imd->func_complete) imd->func_complete(imd, preload, imd->data_complete);
290 }
291
292 static void image_render_complete_cb(PixbufRenderer *, gpointer data)
293 {
294         auto imd = static_cast<ImageWindow *>(data);
295
296         image_complete_util(imd, FALSE);
297 }
298
299 static void image_state_set(ImageWindow *imd, ImageState state)
300 {
301         if (state == IMAGE_STATE_NONE)
302                 {
303                 imd->state = state;
304                 }
305         else
306                 {
307                 imd->state = static_cast<ImageState>(imd->state | state);
308                 }
309         if (imd->func_state) imd->func_state(imd, state, imd->data_state);
310 }
311
312 static void image_state_unset(ImageWindow *imd, ImageState state)
313 {
314         imd->state = static_cast<ImageState>(imd->state & ~state);
315         if (imd->func_state) imd->func_state(imd, state, imd->data_state);
316 }
317
318 static void image_zoom_cb(PixbufRenderer *, gdouble, gpointer data)
319 {
320         auto imd = static_cast<ImageWindow *>(data);
321
322         if (imd->title_show_zoom) image_update_title(imd);
323         image_state_set(imd, IMAGE_STATE_IMAGE);
324         image_update_util(imd);
325 }
326
327 /*
328  *-------------------------------------------------------------------
329  * misc
330  *-------------------------------------------------------------------
331  */
332
333 void image_update_title(ImageWindow *imd)
334 {
335         gchar *title = nullptr;
336         gchar *zoom = nullptr;
337         gchar *collection = nullptr;
338         LayoutWindow *lw;
339         gchar *lw_ident = nullptr;
340
341         if (!imd->top_window) return;
342
343         if (imd->collection && collection_to_number(imd->collection) >= 0)
344                 {
345                 const gchar *name = imd->collection->name;
346                 if (!name) name = _("Untitled");
347                 collection = g_strdup_printf(_(" (Collection %s)"), name);
348                 }
349
350         if (imd->title_show_zoom)
351                 {
352                 gchar *buf = image_zoom_get_as_text(imd);
353                 zoom = g_strconcat(" [", buf, "]", NULL);
354                 g_free(buf);
355                 }
356
357         lw = layout_find_by_image(imd);
358         if (lw)
359                 {
360                 lw_ident = g_strconcat(" (", lw->options.id, ")", NULL);
361                 }
362
363         title = g_strdup_printf("%s%s%s%s%s%s%s",
364                 imd->title ? imd->title : "",
365                 imd->image_fd ? imd->image_fd->name : "",
366                 zoom ? zoom : "",
367                 collection ? collection : "",
368                 imd->image_fd ? " - " : "",
369                 imd->title_right ? imd->title_right : "",
370                 options->show_window_ids ? (lw_ident ? lw_ident : "") : ""
371                 );
372         if (lw_ident)
373                 {
374                 g_free(lw_ident);
375                 }
376
377         gtk_window_set_title(GTK_WINDOW(imd->top_window), title);
378
379         g_free(title);
380         g_free(zoom);
381         g_free(collection);
382 }
383
384 /*
385  *-------------------------------------------------------------------
386  * rotation, flip, etc.
387  *-------------------------------------------------------------------
388  */
389 static gboolean image_get_x11_screen_profile(ImageWindow *imd, guchar **screen_profile, gint *screen_profile_len)
390 {
391         GdkScreen *screen = gtk_widget_get_screen(imd->widget);;
392         GdkAtom    type   = GDK_NONE;
393         gint       format = 0;
394
395         return (gdk_property_get(gdk_screen_get_root_window(screen),
396                                  gdk_atom_intern ("_ICC_PROFILE", FALSE),
397                                  GDK_NONE,
398                                  0, 64 * 1024 * 1024, FALSE,
399                                  &type, &format, screen_profile_len, screen_profile) && *screen_profile_len > 0);
400 }
401
402 static gboolean image_post_process_color(ImageWindow *imd, gint start_row, gboolean run_in_bg)
403 {
404         ColorMan *cm;
405         ColorManProfileType input_type;
406         ColorManProfileType screen_type;
407         const gchar *input_file = nullptr;
408         const gchar *screen_file = nullptr;
409         guchar *profile = nullptr;
410         guint profile_len;
411         guchar *screen_profile = nullptr;
412         gint screen_profile_len;
413         ExifData *exif;
414
415         if (imd->cm) return FALSE;
416
417         if (imd->color_profile_input >= COLOR_PROFILE_FILE &&
418             imd->color_profile_input <  COLOR_PROFILE_FILE + COLOR_PROFILE_INPUTS)
419                 {
420                 const gchar *file = options->color_profile.input_file[imd->color_profile_input - COLOR_PROFILE_FILE];
421
422                 if (!is_readable_file(file)) return FALSE;
423
424                 input_type = COLOR_PROFILE_FILE;
425                 input_file = file;
426                 }
427         else if (imd->color_profile_input >= COLOR_PROFILE_SRGB &&
428                  imd->color_profile_input <  COLOR_PROFILE_FILE)
429                 {
430                 input_type = static_cast<ColorManProfileType>(imd->color_profile_input);
431                 input_file = nullptr;
432                 }
433         else
434                 {
435                 return FALSE;
436                 }
437
438         if (options->color_profile.use_x11_screen_profile &&
439             image_get_x11_screen_profile(imd, &screen_profile, &screen_profile_len))
440                 {
441                 screen_type = COLOR_PROFILE_MEM;
442                 DEBUG_1("Using X11 screen profile, length: %d", screen_profile_len);
443                 }
444         else if (options->color_profile.screen_file &&
445             is_readable_file(options->color_profile.screen_file))
446                 {
447                 screen_type = COLOR_PROFILE_FILE;
448                 screen_file = options->color_profile.screen_file;
449                 }
450         else
451                 {
452                 screen_type = COLOR_PROFILE_SRGB;
453                 screen_file = nullptr;
454                 }
455
456
457         imd->color_profile_from_image = COLOR_PROFILE_NONE;
458
459         exif = exif_read_fd(imd->image_fd);
460
461         if (exif)
462                 {
463                 if (g_strcmp0(imd->image_fd->format_name, "heif") == 0)
464                         {
465                         profile = heif_color_profile(imd->image_fd, &profile_len);
466                         }
467
468                 if (!profile)
469                         {
470                         profile = exif_get_color_profile(exif, &profile_len);
471                         }
472
473                 if (profile)
474                         {
475                         if (!imd->color_profile_use_image)
476                                 {
477                                 g_free(profile);
478                                 profile = nullptr;
479                                 }
480                         DEBUG_1("Found embedded color profile");
481                         imd->color_profile_from_image = COLOR_PROFILE_MEM;
482                         }
483                 else
484                         {
485                         gchar *interop_index = exif_get_data_as_text(exif, "Exif.Iop.InteroperabilityIndex");
486
487                         if (interop_index)
488                                 {
489                                 /* Exif 2.21 specification */
490                                 if (!strcmp(interop_index, "R98"))
491                                         {
492                                         imd->color_profile_from_image = COLOR_PROFILE_SRGB;
493                                         DEBUG_1("Found EXIF 2.21 ColorSpace of sRGB");
494                                         }
495                                 else if (!strcmp(interop_index, "R03"))
496                                         {
497                                         imd->color_profile_from_image = COLOR_PROFILE_ADOBERGB;
498                                         DEBUG_1("Found EXIF 2.21 ColorSpace of AdobeRGB");
499                                         }
500                                 g_free(interop_index);
501                                 }
502                         else
503                                 {
504                                 gint cs;
505
506                                 /* ColorSpace == 1 specifies sRGB per EXIF 2.2 */
507                                 if (!exif_get_integer(exif, "Exif.Photo.ColorSpace", &cs)) cs = 0;
508                                 if (cs == 1)
509                                         {
510                                         imd->color_profile_from_image = COLOR_PROFILE_SRGB;
511                                         DEBUG_1("Found EXIF 2.2 ColorSpace of sRGB");
512                                         }
513                                 else if (cs == 2)
514                                         {
515                                         /* non-standard way of specifying AdobeRGB (used by some software) */
516                                         imd->color_profile_from_image = COLOR_PROFILE_ADOBERGB;
517                                         DEBUG_1("Found EXIF 2.2 ColorSpace of AdobeRGB");
518                                         }
519                                 }
520
521                         if (imd->color_profile_use_image && imd->color_profile_from_image != COLOR_PROFILE_NONE)
522                                {
523                                input_type = static_cast<ColorManProfileType>(imd->color_profile_from_image);
524                                input_file = nullptr;
525                                }
526                         }
527
528                 exif_free_fd(imd->image_fd, exif);
529                 }
530
531
532         if (profile)
533                 {
534                 cm = color_man_new_embedded(run_in_bg ? imd : nullptr, nullptr,
535                                             profile, profile_len,
536                                             screen_type, screen_file, screen_profile, screen_profile_len);
537                 g_free(profile);
538                 }
539         else
540                 {
541                 cm = color_man_new(run_in_bg ? imd : nullptr, nullptr,
542                                    input_type, input_file,
543                                    screen_type, screen_file, screen_profile, screen_profile_len);
544                 }
545
546         if (cm)
547                 {
548                 if (start_row > 0)
549                         {
550                         cm->row = start_row;
551                         cm->incremental_sync = TRUE;
552                         }
553
554                 imd->cm = cm;
555                 }
556
557         image_update_util(imd);
558
559         if (screen_profile)
560                 {
561                 g_free(screen_profile);
562                 screen_profile = nullptr;
563                 }
564
565         return !!cm;
566 }
567
568
569 static void image_post_process_tile_color_cb(PixbufRenderer *, GdkPixbuf **pixbuf, gint x, gint y, gint w, gint h, gpointer data)
570 {
571         auto imd = static_cast<ImageWindow *>(data);
572         if (imd->cm) color_man_correct_region(static_cast<ColorMan *>(imd->cm), *pixbuf, x, y, w, h);
573         if (imd->desaturate) pixbuf_desaturate_rect(*pixbuf, x, y, w, h);
574         if (imd->overunderexposed) pixbuf_highlight_overunderexposed(*pixbuf, x, y, w, h);
575 }
576
577 void image_alter_orientation(ImageWindow *imd, FileData *fd_n, AlterType type)
578 {
579         static const gint rotate_90[]    = {1,   6, 7, 8, 5, 2, 3, 4, 1};
580         static const gint rotate_90_cc[] = {1,   8, 5, 6, 7, 4, 1, 2, 3};
581         static const gint rotate_180[]   = {1,   3, 4, 1, 2, 7, 8, 5, 6};
582         static const gint mirror[]       = {1,   2, 1, 4, 3, 6, 5, 8, 7};
583         static const gint flip[]         = {1,   4, 3, 2, 1, 8, 7, 6, 5};
584
585         gint orientation;
586
587         if (!imd || !imd->pr || !imd->image_fd || !fd_n) return;
588
589         orientation = EXIF_ORIENTATION_TOP_LEFT;
590         {
591         if (fd_n->user_orientation)
592                 {
593                 orientation = fd_n->user_orientation;
594                 }
595         else
596                 if (options->metadata.write_orientation)
597                         {
598                         if (g_strcmp0(imd->image_fd->format_name, "heif") == 0)
599                                 {
600                                 orientation = EXIF_ORIENTATION_TOP_LEFT;
601                                 }
602                         else
603                                 {
604                                 orientation = metadata_read_int(fd_n, ORIENTATION_KEY, EXIF_ORIENTATION_TOP_LEFT);
605                                 }
606                         }
607         }
608
609         switch (type)
610                 {
611                 case ALTER_ROTATE_90:
612                         orientation = rotate_90[orientation];
613                         break;
614                 case ALTER_ROTATE_90_CC:
615                         orientation = rotate_90_cc[orientation];
616                         break;
617                 case ALTER_ROTATE_180:
618                         orientation = rotate_180[orientation];
619                         break;
620                 case ALTER_MIRROR:
621                         orientation = mirror[orientation];
622                         break;
623                 case ALTER_FLIP:
624                         orientation = flip[orientation];
625                         break;
626                 case ALTER_NONE:
627                         orientation = fd_n->exif_orientation ? fd_n->exif_orientation : 1;
628                         break;
629                 default:
630                         return;
631                         break;
632                 }
633
634         if (orientation != (fd_n->exif_orientation ? fd_n->exif_orientation : 1))
635                 {
636                 if (g_strcmp0(fd_n->format_name, "heif") != 0)
637                         {
638                         if (!options->metadata.write_orientation)
639                                 {
640                                 /* user_orientation does not work together with options->metadata.write_orientation,
641                                    use either one or the other.
642                                    we must however handle switching metadata.write_orientation on and off, therefore
643                                    we just disable referencing new fd's, not unreferencing the old ones
644                                 */
645                                 if (fd_n->user_orientation == 0) file_data_ref(fd_n);
646                                 fd_n->user_orientation = orientation;
647                                 }
648                         }
649                 else
650                         {
651                         if (fd_n->user_orientation == 0) file_data_ref(fd_n);
652                         fd_n->user_orientation = orientation;
653                         }
654                 }
655         else
656                 {
657                 if (fd_n->user_orientation != 0) file_data_unref(fd_n);
658                 fd_n->user_orientation = 0;
659                 }
660
661         if (g_strcmp0(fd_n->format_name, "heif") != 0)
662                 {
663                 if (options->metadata.write_orientation)
664                         {
665                         if (type == ALTER_NONE)
666                                 {
667                                 metadata_write_revert(fd_n, ORIENTATION_KEY);
668                                 }
669                         else
670                                 {
671                                 metadata_write_int(fd_n, ORIENTATION_KEY, orientation);
672                                 }
673                         }
674                 }
675
676         if (imd->image_fd == fd_n && (!options->metadata.write_orientation || options->image.exif_rotate_enable))
677                 {
678                 imd->orientation = orientation;
679                 pixbuf_renderer_set_orientation(reinterpret_cast<PixbufRenderer *>(imd->pr), orientation);
680                 }
681 }
682
683 void image_set_desaturate(ImageWindow *imd, gboolean desaturate)
684 {
685         imd->desaturate = desaturate;
686         if (imd->cm || imd->desaturate || imd->overunderexposed)
687                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), image_post_process_tile_color_cb, imd, (imd->cm != nullptr) );
688         else
689                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), nullptr, nullptr, TRUE);
690         pixbuf_renderer_set_orientation(reinterpret_cast<PixbufRenderer *>(imd->pr), imd->orientation);
691 }
692
693 gboolean image_get_desaturate(ImageWindow *imd)
694 {
695         return imd->desaturate;
696 }
697
698 void image_set_overunderexposed(ImageWindow *imd, gboolean overunderexposed)
699 {
700         imd->overunderexposed = overunderexposed;
701         if (imd->cm || imd->desaturate || imd->overunderexposed)
702                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), image_post_process_tile_color_cb, imd, (imd->cm != nullptr) );
703         else
704                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), nullptr, nullptr, TRUE);
705         pixbuf_renderer_set_orientation(reinterpret_cast<PixbufRenderer *>(imd->pr), imd->orientation);
706 }
707
708 void image_set_ignore_alpha(ImageWindow *imd, gboolean ignore_alpha)
709 {
710    pixbuf_renderer_set_ignore_alpha(reinterpret_cast<PixbufRenderer *>(imd->pr), ignore_alpha);
711 }
712
713 /*
714  *-------------------------------------------------------------------
715  * read ahead (prebuffer)
716  *-------------------------------------------------------------------
717  */
718
719 static void image_read_ahead_cancel(ImageWindow *imd)
720 {
721         DEBUG_1("%s read ahead cancelled for :%s", get_exec_time(), imd->read_ahead_fd ? imd->read_ahead_fd->path : "null");
722
723         image_loader_free(imd->read_ahead_il);
724         imd->read_ahead_il = nullptr;
725
726         file_data_unref(imd->read_ahead_fd);
727         imd->read_ahead_fd = nullptr;
728 }
729
730 static void image_read_ahead_done_cb(ImageLoader *, gpointer data)
731 {
732         auto imd = static_cast<ImageWindow *>(data);
733
734         if (!imd->read_ahead_fd || !imd->read_ahead_il) return;
735
736         DEBUG_1("%s read ahead done for :%s", get_exec_time(), imd->read_ahead_fd->path);
737
738         if (!imd->read_ahead_fd->pixbuf)
739                 {
740                 imd->read_ahead_fd->pixbuf = image_loader_get_pixbuf(imd->read_ahead_il);
741                 if (imd->read_ahead_fd->pixbuf)
742                         {
743                         g_object_ref(imd->read_ahead_fd->pixbuf);
744                         image_cache_set(imd, imd->read_ahead_fd);
745                         }
746                 }
747         image_loader_free(imd->read_ahead_il);
748         imd->read_ahead_il = nullptr;
749
750         image_complete_util(imd, TRUE);
751 }
752
753 static void image_read_ahead_error_cb(ImageLoader *il, gpointer data)
754 {
755         /* we even treat errors as success, maybe at least some of the file was ok */
756         image_read_ahead_done_cb(il, data);
757 }
758
759 static void image_read_ahead_start(ImageWindow *imd)
760 {
761         /* already started ? */
762         if (!imd->read_ahead_fd || imd->read_ahead_il || imd->read_ahead_fd->pixbuf) return;
763
764         /* still loading ?, do later */
765         if (imd->il /*|| imd->cm*/) return;
766
767         DEBUG_1("%s read ahead started for :%s", get_exec_time(), imd->read_ahead_fd->path);
768
769         imd->read_ahead_il = image_loader_new(imd->read_ahead_fd);
770
771         image_loader_delay_area_ready(imd->read_ahead_il, TRUE); /* we will need the area_ready signals later */
772
773         g_signal_connect(G_OBJECT(imd->read_ahead_il), "error", (GCallback)image_read_ahead_error_cb, imd);
774         g_signal_connect(G_OBJECT(imd->read_ahead_il), "done", (GCallback)image_read_ahead_done_cb, imd);
775
776         if (!image_loader_start(imd->read_ahead_il))
777                 {
778                 image_read_ahead_cancel(imd);
779                 image_complete_util(imd, TRUE);
780                 }
781 }
782
783 static void image_read_ahead_set(ImageWindow *imd, FileData *fd)
784 {
785         if (imd->read_ahead_fd && fd && imd->read_ahead_fd == fd) return;
786
787         image_read_ahead_cancel(imd);
788
789         imd->read_ahead_fd = file_data_ref(fd);
790
791         DEBUG_1("read ahead set to :%s", imd->read_ahead_fd->path);
792
793         image_read_ahead_start(imd);
794 }
795
796 /*
797  *-------------------------------------------------------------------
798  * post buffering
799  *-------------------------------------------------------------------
800  */
801
802 static void image_cache_release_cb(FileData *fd)
803 {
804         g_object_unref(fd->pixbuf);
805         fd->pixbuf = nullptr;
806 }
807
808 static FileCacheData *image_get_cache()
809 {
810         static FileCacheData *cache = nullptr;
811         if (!cache) cache = file_cache_new(image_cache_release_cb, 1);
812         file_cache_set_max_size(cache, static_cast<gulong>(options->image.image_cache_max) * 1048576); /* update from options */
813         return cache;
814 }
815
816 static void image_cache_set(ImageWindow *, FileData *fd)
817 {
818         g_assert(fd->pixbuf);
819
820         file_cache_put(image_get_cache(), fd, static_cast<gulong>(gdk_pixbuf_get_rowstride(fd->pixbuf)) * static_cast<gulong>(gdk_pixbuf_get_height(fd->pixbuf)));
821         file_data_send_notification(fd, NOTIFY_PIXBUF); /* to update histogram */
822 }
823
824 static gint image_cache_get(ImageWindow *imd)
825 {
826         gint success;
827
828         success = file_cache_get(image_get_cache(), imd->image_fd);
829         if (success)
830                 {
831                 g_assert(imd->image_fd->pixbuf);
832                 image_change_pixbuf(imd, imd->image_fd->pixbuf, image_zoom_get(imd), FALSE);
833                 }
834
835         return success;
836 }
837
838 /*
839  *-------------------------------------------------------------------
840  * loading
841  *-------------------------------------------------------------------
842  */
843
844 static void image_load_pixbuf_ready(ImageWindow *imd)
845 {
846         if (image_get_pixbuf(imd) || !imd->il) return;
847
848         image_change_pixbuf(imd, image_loader_get_pixbuf(imd->il), image_zoom_get(imd), FALSE);
849 }
850
851 static void image_load_area_cb(ImageLoader *il, guint x, guint y, guint w, guint h, gpointer data)
852 {
853         auto imd = static_cast<ImageWindow *>(data);
854         PixbufRenderer *pr;
855
856         pr = reinterpret_cast<PixbufRenderer *>(imd->pr);
857
858         if (imd->delay_flip &&
859             pr->pixbuf != image_loader_get_pixbuf(il))
860                 {
861                 return;
862                 }
863
864         if (!pr->pixbuf) image_change_pixbuf(imd, image_loader_get_pixbuf(imd->il), image_zoom_get(imd), TRUE);
865
866         pixbuf_renderer_area_changed(pr, x, y, w, h);
867 }
868
869 static void image_load_done_cb(ImageLoader *, gpointer data)
870 {
871         auto imd = static_cast<ImageWindow *>(data);
872
873         DEBUG_1("%s image done", get_exec_time());
874
875         if (options->image.enable_read_ahead && imd->image_fd && !imd->image_fd->pixbuf && image_loader_get_pixbuf(imd->il))
876                 {
877                 imd->image_fd->pixbuf = static_cast<GdkPixbuf*>(g_object_ref(image_loader_get_pixbuf(imd->il)));
878                 image_cache_set(imd, imd->image_fd);
879                 }
880         /* call the callback triggered by image_state after fd->pixbuf is set */
881         g_object_set(G_OBJECT(imd->pr), "loading", FALSE, NULL);
882         image_state_unset(imd, IMAGE_STATE_LOADING);
883
884         if (!image_loader_get_pixbuf(imd->il))
885                 {
886                 GdkPixbuf *pixbuf = pixbuf_fallback(imd->image_fd, 0, 0);
887
888                 image_change_pixbuf(imd, pixbuf, image_zoom_get(imd), FALSE);
889                 g_object_unref(pixbuf);
890
891                 imd->unknown = TRUE;
892                 }
893         else if (imd->delay_flip &&
894             image_get_pixbuf(imd) != image_loader_get_pixbuf(imd->il))
895                 {
896                 g_object_set(G_OBJECT(imd->pr), "complete", FALSE, NULL);
897                 image_change_pixbuf(imd, image_loader_get_pixbuf(imd->il), image_zoom_get(imd), FALSE);
898                 }
899
900         image_loader_free(imd->il);
901         imd->il = nullptr;
902
903         image_read_ahead_start(imd);
904 }
905
906 static void image_load_size_cb(ImageLoader *, guint width, guint height, gpointer data)
907 {
908         auto imd = static_cast<ImageWindow *>(data);
909
910         DEBUG_1("image_load_size_cb: %dx%d", width, height);
911         pixbuf_renderer_set_size_early(reinterpret_cast<PixbufRenderer *>(imd->pr), width, height);
912 }
913
914 static void image_load_error_cb(ImageLoader *il, gpointer data)
915 {
916         DEBUG_1("%s image error", get_exec_time());
917
918         /* even on error handle it like it was done,
919          * since we have a pixbuf with _something_ */
920
921         image_load_done_cb(il, data);
922 }
923
924 static void image_load_set_signals(ImageWindow *imd, gboolean override_old_signals)
925 {
926         g_assert(imd->il);
927         if (override_old_signals)
928                 {
929                 /* override the old signals */
930                 g_signal_handlers_disconnect_matched(G_OBJECT(imd->il), G_SIGNAL_MATCH_DATA, 0, 0, nullptr, nullptr, imd);
931                 }
932
933         g_signal_connect(G_OBJECT(imd->il), "area_ready", (GCallback)image_load_area_cb, imd);
934         g_signal_connect(G_OBJECT(imd->il), "error", (GCallback)image_load_error_cb, imd);
935         g_signal_connect(G_OBJECT(imd->il), "done", (GCallback)image_load_done_cb, imd);
936         g_signal_connect(G_OBJECT(imd->il), "size_prepared", (GCallback)image_load_size_cb, imd);
937 }
938
939 /* this read ahead is located here merely for the callbacks, above */
940
941 static gboolean image_read_ahead_check(ImageWindow *imd)
942 {
943         if (!imd->read_ahead_fd) return FALSE;
944         if (imd->il) return FALSE;
945
946         if (!imd->image_fd || imd->read_ahead_fd != imd->image_fd)
947                 {
948                 image_read_ahead_cancel(imd);
949                 return FALSE;
950                 }
951
952         if (imd->read_ahead_il)
953                 {
954                 imd->il = imd->read_ahead_il;
955                 imd->read_ahead_il = nullptr;
956
957                 image_load_set_signals(imd, TRUE);
958
959                 g_object_set(G_OBJECT(imd->pr), "loading", TRUE, NULL);
960                 image_state_set(imd, IMAGE_STATE_LOADING);
961
962                 if (!imd->delay_flip)
963                         {
964                         image_change_pixbuf(imd, image_loader_get_pixbuf(imd->il), image_zoom_get(imd), TRUE);
965                         }
966
967                 image_loader_delay_area_ready(imd->il, FALSE); /* send the delayed area_ready signals */
968
969                 file_data_unref(imd->read_ahead_fd);
970                 imd->read_ahead_fd = nullptr;
971                 return TRUE;
972                 }
973         else if (imd->read_ahead_fd->pixbuf)
974                 {
975                 image_change_pixbuf(imd, imd->read_ahead_fd->pixbuf, image_zoom_get(imd), FALSE);
976
977                 file_data_unref(imd->read_ahead_fd);
978                 imd->read_ahead_fd = nullptr;
979
980                 return TRUE;
981                 }
982
983         image_read_ahead_cancel(imd);
984         return FALSE;
985 }
986
987 static gboolean image_load_begin(ImageWindow *imd, FileData *fd)
988 {
989         DEBUG_1("%s image begin", get_exec_time());
990
991         if (imd->il) return FALSE;
992
993         imd->completed = FALSE;
994         g_object_set(G_OBJECT(imd->pr), "complete", FALSE, NULL);
995
996         if (image_cache_get(imd))
997                 {
998                 DEBUG_1("from cache: %s", imd->image_fd->path);
999                 return TRUE;
1000                 }
1001
1002         if (image_read_ahead_check(imd))
1003                 {
1004                 DEBUG_1("from read ahead buffer: %s", imd->image_fd->path);
1005                 return TRUE;
1006                 }
1007
1008         if (!imd->delay_flip && image_get_pixbuf(imd))
1009                 {
1010                 PixbufRenderer *pr;
1011
1012                 pr = PIXBUF_RENDERER(imd->pr);
1013                 if (pr->pixbuf) g_object_unref(pr->pixbuf);
1014                 pr->pixbuf = nullptr;
1015                 }
1016
1017         g_object_set(G_OBJECT(imd->pr), "loading", TRUE, NULL);
1018
1019         imd->il = image_loader_new(fd);
1020
1021         image_load_set_signals(imd, FALSE);
1022
1023         if (!image_loader_start(imd->il))
1024                 {
1025                 DEBUG_1("image start error");
1026
1027                 g_object_set(G_OBJECT(imd->pr), "loading", FALSE, NULL);
1028
1029                 image_loader_free(imd->il);
1030                 imd->il = nullptr;
1031
1032                 image_complete_util(imd, FALSE);
1033
1034                 return FALSE;
1035                 }
1036
1037         image_state_set(imd, IMAGE_STATE_LOADING);
1038
1039 /*
1040         if (!imd->delay_flip && !image_get_pixbuf(imd) && image_loader_get_pixbuf(imd->il))
1041                 {
1042                 image_change_pixbuf(imd, image_loader_get_pixbuf(imd->il), image_zoom_get(imd), TRUE);
1043                 }
1044 */
1045         return TRUE;
1046 }
1047
1048 static void image_reset(ImageWindow *imd)
1049 {
1050         /* stops anything currently being done */
1051
1052         DEBUG_1("%s image reset", get_exec_time());
1053
1054         g_object_set(G_OBJECT(imd->pr), "loading", FALSE, NULL);
1055
1056         image_loader_free(imd->il);
1057         imd->il = nullptr;
1058
1059         color_man_free(static_cast<ColorMan *>(imd->cm));
1060         imd->cm = nullptr;
1061
1062         imd->delay_alter_type = ALTER_NONE;
1063
1064         image_state_set(imd, IMAGE_STATE_NONE);
1065 }
1066
1067 /*
1068  *-------------------------------------------------------------------
1069  * image changer
1070  *-------------------------------------------------------------------
1071  */
1072
1073 static void image_change_complete(ImageWindow *imd, gdouble zoom)
1074 {
1075         image_reset(imd);
1076         imd->unknown = TRUE;
1077
1078         /** @FIXME Might be improved when the wepb animation changes happen */
1079         g_object_set(G_OBJECT(imd->pr), "zoom_2pass", options->image.zoom_2pass, NULL);
1080         g_object_set(G_OBJECT(imd->pr), "zoom_quality", options->image.zoom_quality, NULL);
1081
1082         if (!imd->image_fd)
1083                 {
1084                 image_change_pixbuf(imd, nullptr, zoom, FALSE);
1085                 }
1086         else
1087                 {
1088
1089                 if (is_readable_file(imd->image_fd->path))
1090                         {
1091                         PixbufRenderer *pr;
1092
1093                         pr = PIXBUF_RENDERER(imd->pr);
1094                         pr->zoom = zoom;        /* store the zoom, needed by the loader */
1095
1096                         /* Disable 2-pass for GIFs. Animated GIFs can flicker when enabled
1097                          * Reduce quality to worst but fastest to avoid dropped frames */
1098                         if (g_ascii_strcasecmp(imd->image_fd->extension, ".GIF") == 0)
1099                                 {
1100                                 g_object_set(G_OBJECT(imd->pr), "zoom_2pass", FALSE, NULL);
1101                                 g_object_set(G_OBJECT(imd->pr), "zoom_quality", GDK_INTERP_NEAREST, NULL);
1102                                 }
1103
1104
1105                         if (image_load_begin(imd, imd->image_fd))
1106                                 {
1107                                 imd->unknown = FALSE;
1108                                 }
1109                         }
1110
1111                 if (imd->unknown == TRUE)
1112                         {
1113                         GdkPixbuf *pixbuf;
1114
1115                         pixbuf = pixbuf_inline(PIXBUF_INLINE_BROKEN);
1116                         image_change_pixbuf(imd, pixbuf, zoom, FALSE);
1117                         g_object_unref(pixbuf);
1118                         }
1119                 }
1120
1121         image_update_util(imd);
1122 }
1123
1124 static void image_change_real(ImageWindow *imd, FileData *fd,
1125                               CollectionData *cd, CollectInfo *info, gdouble zoom)
1126 {
1127
1128         imd->collection = cd;
1129         imd->collection_info = info;
1130
1131         if (imd->auto_refresh && imd->image_fd)
1132                 file_data_unregister_real_time_monitor(imd->image_fd);
1133
1134         file_data_unref(imd->image_fd);
1135         imd->image_fd = file_data_ref(fd);
1136
1137
1138         image_change_complete(imd, zoom);
1139
1140         image_update_title(imd);
1141         image_state_set(imd, IMAGE_STATE_IMAGE);
1142
1143         if (imd->auto_refresh && imd->image_fd)
1144                 file_data_register_real_time_monitor(imd->image_fd);
1145 }
1146
1147 /*
1148  *-------------------------------------------------------------------
1149  * focus stuff
1150  *-------------------------------------------------------------------
1151  */
1152
1153 static gboolean image_focus_in_cb(GtkWidget *, GdkEventFocus *, gpointer data)
1154 {
1155         auto imd = static_cast<ImageWindow *>(data);
1156
1157         if (imd->func_focus_in)
1158                 {
1159                 imd->func_focus_in(imd, imd->data_focus_in);
1160                 }
1161
1162         return TRUE;
1163 }
1164
1165 static gboolean image_scroll_cb(GtkWidget *, GdkEventScroll *event, gpointer data)
1166 {
1167         auto imd = static_cast<ImageWindow *>(data);
1168         gboolean in_lw = FALSE;
1169         gint i = 0;
1170         LayoutWindow *lw = nullptr;
1171
1172         if (imd->func_scroll && event && event->type == GDK_SCROLL)
1173                 {
1174                 layout_valid(&lw);
1175                 /* check if the image is in a layout window */
1176                 for (i = 0; i < MAX_SPLIT_IMAGES; i++)
1177                         {
1178                         if (imd == lw->split_images[i])
1179                                 {
1180                                 in_lw = TRUE;
1181                                 break;
1182                                 }
1183                         }
1184
1185                 if (in_lw)
1186                         {
1187                         if (lw->options.split_pane_sync)
1188                                 {
1189                                 for (i = 0; i < MAX_SPLIT_IMAGES; i++)
1190                                         {
1191                                         if (lw->split_images[i])
1192                                                 {
1193                                                 layout_image_activate(lw, i, FALSE);
1194                                                 imd->func_scroll(lw->split_images[i], event, lw->split_images[i]->data_scroll);
1195                                                 }
1196                                         }
1197                                 }
1198                         else
1199                                 {
1200                                 imd->func_scroll(imd, event, imd->data_scroll);
1201                                 }
1202                         return TRUE;
1203                         }
1204                 else
1205                         {
1206                         imd->func_scroll(imd, event, imd->data_scroll);
1207                         return TRUE;
1208                         }
1209                 }
1210
1211         return FALSE;
1212 }
1213
1214 /*
1215  *-------------------------------------------------------------------
1216  * public interface
1217  *-------------------------------------------------------------------
1218  */
1219
1220 void image_attach_window(ImageWindow *imd, GtkWidget *window,
1221                          const gchar *title, const gchar *title_right, gboolean show_zoom)
1222 {
1223         LayoutWindow *lw;
1224
1225         imd->top_window = window;
1226         g_free(imd->title);
1227         imd->title = g_strdup(title);
1228         g_free(imd->title_right);
1229         imd->title_right = g_strdup(title_right);
1230         imd->title_show_zoom = show_zoom;
1231
1232         lw = layout_find_by_image(imd);
1233
1234         if (!(options->image.fit_window_to_image && lw && (lw->options.tools_float || lw->options.tools_hidden))) window = nullptr;
1235
1236         pixbuf_renderer_set_parent(reinterpret_cast<PixbufRenderer *>(imd->pr), reinterpret_cast<GtkWindow *>(window));
1237
1238         image_update_title(imd);
1239 }
1240
1241 void image_set_update_func(ImageWindow *imd,
1242                            void (*func)(ImageWindow *imd, gpointer data),
1243                            gpointer data)
1244 {
1245         imd->func_update = func;
1246         imd->data_update = data;
1247 }
1248
1249 void image_set_complete_func(ImageWindow *imd,
1250                              void (*func)(ImageWindow *imd, gboolean preload, gpointer data),
1251                              gpointer data)
1252 {
1253         imd->func_complete = func;
1254         imd->data_complete = data;
1255 }
1256
1257 void image_set_state_func(ImageWindow *imd,
1258                         void (*func)(ImageWindow *imd, ImageState state, gpointer data),
1259                         gpointer data)
1260 {
1261         imd->func_state = func;
1262         imd->data_state = data;
1263 }
1264
1265
1266 void image_set_button_func(ImageWindow *imd,
1267                            void (*func)(ImageWindow *, GdkEventButton *event, gpointer),
1268                            gpointer data)
1269 {
1270         imd->func_button = func;
1271         imd->data_button = data;
1272 }
1273
1274 void image_set_drag_func(ImageWindow *imd,
1275                            void (*func)(ImageWindow *, GdkEventMotion *event, gdouble dx, gdouble dy, gpointer),
1276                            gpointer data)
1277 {
1278         imd->func_drag = func;
1279         imd->data_drag = data;
1280 }
1281
1282 void image_set_scroll_func(ImageWindow *imd,
1283                            void (*func)(ImageWindow *, GdkEventScroll *event, gpointer),
1284                            gpointer data)
1285 {
1286         imd->func_scroll = func;
1287         imd->data_scroll = data;
1288 }
1289
1290 #pragma GCC diagnostic push
1291 #pragma GCC diagnostic ignored "-Wunused-function"
1292 void image_set_scroll_notify_func_unused(ImageWindow *imd,
1293                                   void (*func)(ImageWindow *imd, gint x, gint y, gint width, gint height, gpointer data),
1294                                   gpointer data)
1295 {
1296         imd->func_scroll_notify = func;
1297         imd->data_scroll_notify = data;
1298 }
1299 #pragma GCC diagnostic pop
1300
1301 void image_set_focus_in_func(ImageWindow *imd,
1302                            void (*func)(ImageWindow *, gpointer),
1303                            gpointer data)
1304 {
1305         imd->func_focus_in = func;
1306         imd->data_focus_in = data;
1307 }
1308
1309 /* path, name */
1310
1311 const gchar *image_get_path(ImageWindow *imd)
1312 {
1313         if (imd->image_fd == nullptr) return nullptr;
1314         return imd->image_fd->path;
1315 }
1316
1317 const gchar *image_get_name(ImageWindow *imd)
1318 {
1319         if (imd->image_fd == nullptr) return nullptr;
1320         return imd->image_fd->name;
1321 }
1322
1323 FileData *image_get_fd(ImageWindow *imd)
1324 {
1325         return imd->image_fd;
1326 }
1327
1328 /* merely changes path string, does not change the image! */
1329 void image_set_fd(ImageWindow *imd, FileData *fd)
1330 {
1331         if (imd->auto_refresh && imd->image_fd)
1332                 file_data_unregister_real_time_monitor(imd->image_fd);
1333
1334         file_data_unref(imd->image_fd);
1335         imd->image_fd = file_data_ref(fd);
1336
1337         image_update_title(imd);
1338         image_state_set(imd, IMAGE_STATE_IMAGE);
1339
1340         if (imd->auto_refresh && imd->image_fd)
1341                 file_data_register_real_time_monitor(imd->image_fd);
1342 }
1343
1344 /* load a new image */
1345
1346 void image_change_fd(ImageWindow *imd, FileData *fd, gdouble zoom)
1347 {
1348         if (imd->image_fd == fd) return;
1349
1350         image_change_real(imd, fd, nullptr, nullptr, zoom);
1351 }
1352
1353 gboolean image_get_image_size(ImageWindow *imd, gint *width, gint *height)
1354 {
1355         return pixbuf_renderer_get_image_size(PIXBUF_RENDERER(imd->pr), width, height);
1356 }
1357
1358 GdkPixbuf *image_get_pixbuf(ImageWindow *imd)
1359 {
1360         return pixbuf_renderer_get_pixbuf(reinterpret_cast<PixbufRenderer *>(imd->pr));
1361 }
1362
1363 void image_change_pixbuf(ImageWindow *imd, GdkPixbuf *pixbuf, gdouble zoom, gboolean lazy)
1364 {
1365         LayoutWindow *lw;
1366         StereoPixbufData stereo_data = STEREO_PIXBUF_DEFAULT;
1367         /* read_exif and similar functions can actually notice that the file has changed and trigger
1368            a notification that removes the pixbuf from cache and unrefs it. Therefore we must ref it
1369            here before it is taken over by the renderer. */
1370         if (pixbuf) g_object_ref(pixbuf);
1371
1372         imd->orientation = EXIF_ORIENTATION_TOP_LEFT;
1373         if (imd->image_fd)
1374                 {
1375                 if (imd->image_fd->user_orientation)
1376                         {
1377                         imd->orientation = imd->image_fd->user_orientation;
1378                         }
1379                 else if (options->image.exif_rotate_enable)
1380                         {
1381                         if (g_strcmp0(imd->image_fd->format_name, "heif") == 0)
1382                                 {
1383                                 imd->orientation = EXIF_ORIENTATION_TOP_LEFT;
1384                                 imd->image_fd->exif_orientation = imd->orientation;
1385                                 }
1386                         else
1387                                 {
1388                                 imd->orientation = metadata_read_int(imd->image_fd, ORIENTATION_KEY, EXIF_ORIENTATION_TOP_LEFT);
1389                                 imd->image_fd->exif_orientation = imd->orientation;
1390                                 }
1391                         }
1392                 }
1393
1394         if (pixbuf)
1395                 {
1396                 stereo_data = static_cast<StereoPixbufData>(imd->user_stereo);
1397                 if (stereo_data == STEREO_PIXBUF_DEFAULT)
1398                         {
1399                         stereo_data = static_cast<StereoPixbufData>(GPOINTER_TO_INT(g_object_get_data(G_OBJECT(pixbuf), "stereo_data")));
1400                         }
1401                 }
1402
1403         pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), nullptr, nullptr, FALSE);
1404         if (imd->cm)
1405                 {
1406                 color_man_free(static_cast<ColorMan *>(imd->cm));
1407                 imd->cm = nullptr;
1408                 }
1409
1410         if (lazy)
1411                 {
1412                 pixbuf_renderer_set_pixbuf_lazy(reinterpret_cast<PixbufRenderer *>(imd->pr), pixbuf, zoom, imd->orientation, stereo_data);
1413                 }
1414         else
1415                 {
1416                 pixbuf_renderer_set_pixbuf(reinterpret_cast<PixbufRenderer *>(imd->pr), pixbuf, zoom);
1417                 pixbuf_renderer_set_orientation(reinterpret_cast<PixbufRenderer *>(imd->pr), imd->orientation);
1418                 pixbuf_renderer_set_stereo_data(reinterpret_cast<PixbufRenderer *>(imd->pr), stereo_data);
1419                 }
1420
1421         if (pixbuf) g_object_unref(pixbuf);
1422
1423         /* Color correction takes too much time for an animated gif */
1424         lw = layout_find_by_image(imd);
1425         if (imd->color_profile_enable && lw && !lw->animation)
1426                 {
1427                 image_post_process_color(imd, 0, FALSE); /** @todo error handling */
1428                 }
1429
1430         if (imd->cm || imd->desaturate || imd->overunderexposed)
1431                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), image_post_process_tile_color_cb, imd, (imd->cm != nullptr) );
1432
1433         image_state_set(imd, IMAGE_STATE_IMAGE);
1434 }
1435
1436 void image_change_from_collection(ImageWindow *imd, CollectionData *cd, CollectInfo *info, gdouble zoom)
1437 {
1438         CollectWindow *cw;
1439
1440         if (!cd || !info || !g_list_find(cd->list, info)) return;
1441
1442         image_change_real(imd, info->fd, cd, info, zoom);
1443         cw = collection_window_find(cd);
1444         if (cw)
1445                 {
1446                 collection_table_set_focus(cw->table, info);
1447                 collection_table_unselect_all(cw->table);
1448                 collection_table_select(cw->table,info);
1449                 }
1450
1451         if (info->fd)
1452                 {
1453                 image_chain_append_end(info->fd->path);
1454                 }
1455 }
1456
1457 CollectionData *image_get_collection(ImageWindow *imd, CollectInfo **info)
1458 {
1459         if (collection_to_number(imd->collection) >= 0)
1460                 {
1461                 if (g_list_find(imd->collection->list, imd->collection_info) != nullptr)
1462                         {
1463                         if (info) *info = imd->collection_info;
1464                         }
1465                 else
1466                         {
1467                         if (info) *info = nullptr;
1468                         }
1469                 return imd->collection;
1470                 }
1471
1472         if (info) *info = nullptr;
1473         return nullptr;
1474 }
1475
1476 static void image_loader_sync_read_ahead_data(ImageLoader *il, gpointer old_data, gpointer data)
1477 {
1478         if (g_signal_handlers_disconnect_by_func(G_OBJECT(il), (gpointer)image_read_ahead_error_cb, old_data))
1479                 g_signal_connect(G_OBJECT(il), "error", G_CALLBACK(image_read_ahead_error_cb), data);
1480
1481         if (g_signal_handlers_disconnect_by_func(G_OBJECT(il), (gpointer)image_read_ahead_done_cb, old_data))
1482                 g_signal_connect(G_OBJECT(il), "done", G_CALLBACK(image_read_ahead_done_cb), data);
1483 }
1484
1485 static void image_loader_sync_data(ImageLoader *il, gpointer old_data, gpointer data)
1486 {
1487         if (g_signal_handlers_disconnect_by_func(G_OBJECT(il), (gpointer)image_load_area_cb, old_data))
1488                 g_signal_connect(G_OBJECT(il), "area_ready", G_CALLBACK(image_load_area_cb), data);
1489
1490         if (g_signal_handlers_disconnect_by_func(G_OBJECT(il), (gpointer)image_load_error_cb, old_data))
1491                 g_signal_connect(G_OBJECT(il), "error", G_CALLBACK(image_load_error_cb), data);
1492
1493         if (g_signal_handlers_disconnect_by_func(G_OBJECT(il), (gpointer)image_load_done_cb, old_data))
1494                 g_signal_connect(G_OBJECT(il), "done", G_CALLBACK(image_load_done_cb), data);
1495 }
1496
1497 /* this is more like a move function
1498  * it moves most data from source to imd
1499  */
1500 void image_move_from_image(ImageWindow *imd, ImageWindow *source)
1501 {
1502         if (imd == source) return;
1503
1504         imd->unknown = source->unknown;
1505
1506         imd->collection = source->collection;
1507         imd->collection_info = source->collection_info;
1508
1509         image_loader_free(imd->il);
1510         imd->il = nullptr;
1511
1512         image_set_fd(imd, image_get_fd(source));
1513
1514
1515         if (source->il)
1516                 {
1517                 imd->il = source->il;
1518                 source->il = nullptr;
1519
1520                 image_loader_sync_data(imd->il, source, imd);
1521
1522                 imd->delay_alter_type = source->delay_alter_type;
1523                 source->delay_alter_type = ALTER_NONE;
1524                 }
1525
1526         imd->color_profile_enable = source->color_profile_enable;
1527         imd->color_profile_input = source->color_profile_input;
1528         imd->color_profile_use_image = source->color_profile_use_image;
1529         color_man_free(static_cast<ColorMan *>(imd->cm));
1530         imd->cm = nullptr;
1531         if (source->cm)
1532                 {
1533                 ColorMan *cm;
1534
1535                 imd->cm = source->cm;
1536                 source->cm = nullptr;
1537
1538                 cm = static_cast<ColorMan *>(imd->cm);
1539                 cm->imd = imd;
1540                 cm->func_done_data = imd;
1541                 }
1542
1543         file_data_unref(imd->read_ahead_fd);
1544         source->read_ahead_fd = nullptr;
1545
1546         imd->orientation = source->orientation;
1547         imd->desaturate = source->desaturate;
1548
1549         imd->user_stereo = source->user_stereo;
1550
1551         pixbuf_renderer_move(PIXBUF_RENDERER(imd->pr), PIXBUF_RENDERER(source->pr));
1552
1553         if (imd->cm || imd->desaturate || imd->overunderexposed)
1554                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), image_post_process_tile_color_cb, imd, (imd->cm != nullptr) );
1555         else
1556                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), nullptr, nullptr, TRUE);
1557
1558 }
1559
1560 /* this is  a copy function
1561  * source stays unchanged
1562  */
1563 void image_copy_from_image(ImageWindow *imd, ImageWindow *source)
1564 {
1565         if (imd == source) return;
1566
1567         imd->unknown = source->unknown;
1568
1569         imd->collection = source->collection;
1570         imd->collection_info = source->collection_info;
1571
1572         image_loader_free(imd->il);
1573         imd->il = nullptr;
1574
1575         image_set_fd(imd, image_get_fd(source));
1576
1577
1578         imd->color_profile_enable = source->color_profile_enable;
1579         imd->color_profile_input = source->color_profile_input;
1580         imd->color_profile_use_image = source->color_profile_use_image;
1581         color_man_free(static_cast<ColorMan *>(imd->cm));
1582         imd->cm = nullptr;
1583         if (source->cm)
1584                 {
1585                 ColorMan *cm;
1586
1587                 imd->cm = source->cm;
1588                 source->cm = nullptr;
1589
1590                 cm = static_cast<ColorMan *>(imd->cm);
1591                 cm->imd = imd;
1592                 cm->func_done_data = imd;
1593                 }
1594
1595         image_loader_free(imd->read_ahead_il);
1596         imd->read_ahead_il = source->read_ahead_il;
1597         source->read_ahead_il = nullptr;
1598         if (imd->read_ahead_il) image_loader_sync_read_ahead_data(imd->read_ahead_il, source, imd);
1599
1600         file_data_unref(imd->read_ahead_fd);
1601         imd->read_ahead_fd = source->read_ahead_fd;
1602         source->read_ahead_fd = nullptr;
1603
1604         imd->completed = source->completed;
1605         imd->state = source->state;
1606         source->state = IMAGE_STATE_NONE;
1607
1608         imd->orientation = source->orientation;
1609         imd->desaturate = source->desaturate;
1610
1611         imd->user_stereo = source->user_stereo;
1612
1613         pixbuf_renderer_copy(PIXBUF_RENDERER(imd->pr), PIXBUF_RENDERER(source->pr));
1614
1615         if (imd->cm || imd->desaturate || imd->overunderexposed)
1616                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), image_post_process_tile_color_cb, imd, (imd->cm != nullptr) );
1617         else
1618                 pixbuf_renderer_set_post_process_func(reinterpret_cast<PixbufRenderer *>(imd->pr), nullptr, nullptr, TRUE);
1619
1620 }
1621
1622
1623 /* manipulation */
1624
1625 void image_area_changed(ImageWindow *imd, gint x, gint y, gint width, gint height)
1626 {
1627         pixbuf_renderer_area_changed(reinterpret_cast<PixbufRenderer *>(imd->pr), x, y, width, height);
1628 }
1629
1630 void image_reload(ImageWindow *imd)
1631 {
1632         if (pixbuf_renderer_get_tiles(reinterpret_cast<PixbufRenderer *>(imd->pr))) return;
1633
1634         image_change_complete(imd, image_zoom_get(imd));
1635 }
1636
1637 void image_scroll(ImageWindow *imd, gint x, gint y)
1638 {
1639         pixbuf_renderer_scroll(reinterpret_cast<PixbufRenderer *>(imd->pr), x, y);
1640 }
1641
1642 void image_scroll_to_point(ImageWindow *imd, gint x, gint y,
1643                            gdouble x_align, gdouble y_align)
1644 {
1645         pixbuf_renderer_scroll_to_point(reinterpret_cast<PixbufRenderer *>(imd->pr), x, y, x_align, y_align);
1646 }
1647
1648 void image_get_scroll_center(ImageWindow *imd, gdouble *x, gdouble *y)
1649 {
1650         pixbuf_renderer_get_scroll_center(PIXBUF_RENDERER(imd->pr), x, y);
1651 }
1652
1653 void image_set_scroll_center(ImageWindow *imd, gdouble x, gdouble y)
1654 {
1655         pixbuf_renderer_set_scroll_center(PIXBUF_RENDERER(imd->pr), x, y);
1656 }
1657
1658 void image_zoom_adjust(ImageWindow *imd, gdouble increment)
1659 {
1660         pixbuf_renderer_zoom_adjust(reinterpret_cast<PixbufRenderer *>(imd->pr), increment);
1661 }
1662
1663 void image_zoom_adjust_at_point(ImageWindow *imd, gdouble increment, gint x, gint y)
1664 {
1665         pixbuf_renderer_zoom_adjust_at_point(reinterpret_cast<PixbufRenderer *>(imd->pr), increment, x, y);
1666 }
1667
1668 void image_zoom_set_limits(ImageWindow *imd, gdouble min, gdouble max)
1669 {
1670         pixbuf_renderer_zoom_set_limits(reinterpret_cast<PixbufRenderer *>(imd->pr), min, max);
1671 }
1672
1673 void image_zoom_set(ImageWindow *imd, gdouble zoom)
1674 {
1675         pixbuf_renderer_zoom_set(reinterpret_cast<PixbufRenderer *>(imd->pr), zoom);
1676 }
1677
1678 void image_zoom_set_fill_geometry(ImageWindow *imd, gboolean vertical)
1679 {
1680         PixbufRenderer *pr;
1681         gdouble zoom;
1682         gint width, height;
1683
1684         pr = reinterpret_cast<PixbufRenderer *>(imd->pr);
1685
1686         if (!pixbuf_renderer_get_pixbuf(pr) ||
1687             !pixbuf_renderer_get_image_size(pr, &width, &height)) return;
1688
1689         if (vertical)
1690                 {
1691                 zoom = static_cast<gdouble>(pr->viewport_height) / height;
1692                 }
1693         else
1694                 {
1695                 zoom = static_cast<gdouble>(pr->viewport_width) / width;
1696                 }
1697
1698         if (zoom < 1.0)
1699                 {
1700                 zoom = 0.0 - 1.0 / zoom;
1701                 }
1702
1703         pixbuf_renderer_zoom_set(pr, zoom);
1704 }
1705
1706 gdouble image_zoom_get(ImageWindow *imd)
1707 {
1708         return pixbuf_renderer_zoom_get(reinterpret_cast<PixbufRenderer *>(imd->pr));
1709 }
1710
1711 gdouble image_zoom_get_real(ImageWindow *imd)
1712 {
1713         return pixbuf_renderer_zoom_get_scale(reinterpret_cast<PixbufRenderer *>(imd->pr));
1714 }
1715
1716 gchar *image_zoom_get_as_text(ImageWindow *imd)
1717 {
1718         gdouble zoom;
1719         gdouble scale;
1720         gdouble l = 1.0;
1721         gdouble r = 1.0;
1722         gint pl = 0;
1723         gint pr = 0;
1724         const gchar *approx = " ";
1725
1726         zoom = image_zoom_get(imd);
1727         scale = image_zoom_get_real(imd);
1728
1729         if (zoom > 0.0)
1730                 {
1731                 l = zoom;
1732                 }
1733         else if (zoom < 0.0)
1734                 {
1735                 r = 0.0 - zoom;
1736                 }
1737         else if (zoom == 0.0 && scale != 0.0)
1738                 {
1739                 if (scale >= 1.0)
1740                         {
1741                         l = scale;
1742                         }
1743                 else
1744                         {
1745                         r = 1.0 / scale;
1746                         }
1747                 approx = "~";
1748                 }
1749
1750         if (rint(l) != l) pl = 2;
1751         if (rint(r) != r) pr = 2;
1752
1753         return g_strdup_printf("%.*f :%s%.*f", pl, l, approx, pr, r);
1754 }
1755
1756 gdouble image_zoom_get_default(ImageWindow *imd)
1757 {
1758         gdouble zoom = 1.0;
1759
1760         switch (options->image.zoom_mode)
1761         {
1762         case ZOOM_RESET_ORIGINAL:
1763                 break;
1764         case ZOOM_RESET_FIT_WINDOW:
1765                 zoom = 0.0;
1766                 break;
1767         case ZOOM_RESET_NONE:
1768                 if (imd) zoom = image_zoom_get(imd);
1769                 break;
1770         }
1771
1772         return zoom;
1773 }
1774
1775 /* stereo */
1776
1777 #pragma GCC diagnostic push
1778 #pragma GCC diagnostic ignored "-Wunused-function"
1779 gint image_stereo_get_unused(ImageWindow *imd)
1780 {
1781         return pixbuf_renderer_stereo_get((PixbufRenderer *)imd->pr);
1782 }
1783 #pragma GCC diagnostic pop
1784
1785 void image_stereo_set(ImageWindow *imd, gint stereo_mode)
1786 {
1787         DEBUG_1("Setting stereo mode %04x for imd %p", stereo_mode, (void *)imd);
1788         pixbuf_renderer_stereo_set(reinterpret_cast<PixbufRenderer *>(imd->pr), stereo_mode);
1789 }
1790
1791 #pragma GCC diagnostic push
1792 #pragma GCC diagnostic ignored "-Wunused-function"
1793 void image_stereo_swap_unused(ImageWindow *imd)
1794 {
1795         gint stereo_mode = pixbuf_renderer_stereo_get((PixbufRenderer *)imd->pr);
1796         stereo_mode ^= PR_STEREO_SWAP;
1797         pixbuf_renderer_stereo_set((PixbufRenderer *)imd->pr, stereo_mode);
1798 }
1799 #pragma GCC diagnostic pop
1800
1801 StereoPixbufData image_stereo_pixbuf_get(ImageWindow *imd)
1802 {
1803         return static_cast<StereoPixbufData>(imd->user_stereo);
1804 }
1805
1806 void image_stereo_pixbuf_set(ImageWindow *imd, StereoPixbufData stereo_mode)
1807 {
1808         imd->user_stereo = stereo_mode;
1809         image_reload(imd);
1810 }
1811
1812 /* read ahead */
1813
1814 void image_prebuffer_set(ImageWindow *imd, FileData *fd)
1815 {
1816         if (pixbuf_renderer_get_tiles(reinterpret_cast<PixbufRenderer *>(imd->pr))) return;
1817
1818         if (fd)
1819                 {
1820                 if (!file_cache_get(image_get_cache(), fd))
1821                         {
1822                         image_read_ahead_set(imd, fd);
1823                         }
1824                 }
1825         else
1826                 {
1827                 image_read_ahead_cancel(imd);
1828                 }
1829 }
1830
1831 static void image_notify_cb(FileData *fd, NotifyType type, gpointer data)
1832 {
1833         auto imd = static_cast<ImageWindow *>(data);
1834
1835         if (!imd || !image_get_pixbuf(imd) ||
1836             /* imd->il || */ /* loading in progress - do not check - it should start from the beginning anyway */
1837             !imd->image_fd || /* nothing to reload */
1838             imd->state == IMAGE_STATE_NONE /* loading not started, no need to reload */
1839             ) return;
1840
1841         if ((type & NOTIFY_REREAD) && fd == imd->image_fd)
1842                 {
1843                 /* there is no need to reload on NOTIFY_CHANGE,
1844                    modified files should be detacted anyway and NOTIFY_REREAD should be received
1845                    or they are removed from the filelist completely on "move" and "delete"
1846                 */
1847                 DEBUG_1("Notify image: %s %04x", fd->path, type);
1848                 image_reload(imd);
1849                 }
1850 }
1851
1852 void image_auto_refresh_enable(ImageWindow *imd, gboolean enable)
1853 {
1854         if (!enable && imd->auto_refresh && imd->image_fd)
1855                 file_data_unregister_real_time_monitor(imd->image_fd);
1856
1857         if (enable && !imd->auto_refresh && imd->image_fd)
1858                 file_data_register_real_time_monitor(imd->image_fd);
1859
1860         imd->auto_refresh = enable;
1861 }
1862
1863 void image_top_window_set_sync(ImageWindow *imd, gboolean allow_sync)
1864 {
1865         imd->top_window_sync = allow_sync;
1866
1867         g_object_set(G_OBJECT(imd->pr), "window_fit", allow_sync, NULL);
1868 }
1869
1870 void image_background_set_color(ImageWindow *imd, GdkColor *color)
1871 {
1872         pixbuf_renderer_set_color(reinterpret_cast<PixbufRenderer *>(imd->pr), color);
1873 }
1874
1875 void image_background_set_color_from_options(ImageWindow *imd, gboolean fullscreen)
1876 {
1877         GdkColor *color = nullptr;
1878         GdkColor theme_color;
1879         GdkRGBA bg_color;
1880         GtkStyleContext *style_context;
1881         LayoutWindow *lw = nullptr;
1882
1883         if ((options->image.use_custom_border_color && !fullscreen) ||
1884             (options->image.use_custom_border_color_in_fullscreen && fullscreen))
1885                 {
1886                 color = &options->image.border_color;
1887                 }
1888
1889         else
1890                 {
1891                 if (!layout_valid(&lw)) return;
1892
1893                 style_context = gtk_widget_get_style_context(lw->window);
1894                 gtk_style_context_get_background_color(style_context, GTK_STATE_FLAG_NORMAL, &bg_color);
1895
1896                 theme_color.red = bg_color.red * 65535;
1897                 theme_color.green = bg_color.green * 65535;
1898                 theme_color.blue = bg_color.blue * 65535;
1899
1900                 color = &theme_color;
1901                 }
1902
1903         image_background_set_color(imd, color);
1904 }
1905
1906 void image_color_profile_set(ImageWindow *imd,
1907                              gint input_type,
1908                              gboolean use_image)
1909 {
1910         if (!imd) return;
1911
1912         if (input_type < 0 || input_type >= COLOR_PROFILE_FILE + COLOR_PROFILE_INPUTS)
1913                 {
1914                 return;
1915                 }
1916
1917         imd->color_profile_input = input_type;
1918         imd->color_profile_use_image = use_image;
1919 }
1920
1921 gboolean image_color_profile_get(ImageWindow *imd,
1922                                  gint *input_type,
1923                                  gboolean *use_image)
1924 {
1925         if (!imd) return FALSE;
1926
1927         if (input_type) *input_type = imd->color_profile_input;
1928         if (use_image) *use_image = imd->color_profile_use_image;
1929
1930         return TRUE;
1931 }
1932
1933 void image_color_profile_set_use(ImageWindow *imd, gboolean enable)
1934 {
1935         if (!imd) return;
1936
1937         if (imd->color_profile_enable == enable) return;
1938
1939         imd->color_profile_enable = enable;
1940 }
1941
1942 gboolean image_color_profile_get_use(ImageWindow *imd)
1943 {
1944         if (!imd) return FALSE;
1945
1946         return imd->color_profile_enable;
1947 }
1948
1949 gboolean image_color_profile_get_status(ImageWindow *imd, gchar **image_profile, gchar **screen_profile)
1950 {
1951         ColorMan *cm;
1952         if (!imd) return FALSE;
1953
1954         cm = static_cast<ColorMan *>(imd->cm);
1955         if (!cm) return FALSE;
1956         return color_man_get_status(cm, image_profile, screen_profile);
1957
1958 }
1959
1960 void image_set_delay_flip(ImageWindow *imd, gboolean delay)
1961 {
1962         if (!imd ||
1963             imd->delay_flip == delay) return;
1964
1965         imd->delay_flip = delay;
1966
1967         g_object_set(G_OBJECT(imd->pr), "delay_flip", delay, NULL);
1968
1969         if (!imd->delay_flip && imd->il)
1970                 {
1971                 PixbufRenderer *pr;
1972
1973                 pr = PIXBUF_RENDERER(imd->pr);
1974                 if (pr->pixbuf) g_object_unref(pr->pixbuf);
1975                 pr->pixbuf = nullptr;
1976
1977                 image_load_pixbuf_ready(imd);
1978                 }
1979 }
1980
1981 void image_to_root_window(ImageWindow *, gboolean)
1982 {
1983 }
1984
1985 void image_select(ImageWindow *imd, gboolean select)
1986 {
1987         if (!imd->has_frame) return;
1988
1989         if (select)
1990                 {
1991                 gtk_widget_set_state(imd->widget, GTK_STATE_SELECTED);
1992                 gtk_widget_set_state(imd->pr, GTK_STATE_NORMAL); /* do not propagate */
1993                 }
1994         else
1995                 gtk_widget_set_state(imd->widget, GTK_STATE_NORMAL);
1996 }
1997
1998 void image_set_selectable(ImageWindow *imd, gboolean selectable)
1999 {
2000         if (!imd->has_frame) return;
2001
2002         gtk_frame_set_shadow_type(GTK_FRAME(imd->frame), GTK_SHADOW_NONE);
2003         gtk_container_set_border_width(GTK_CONTAINER(imd->frame), selectable ? 4 : 0);
2004 }
2005
2006 void image_grab_focus(ImageWindow *imd)
2007 {
2008         if (imd->has_frame)
2009                 {
2010                 gtk_widget_grab_focus(imd->frame);
2011                 }
2012         else
2013                 {
2014                 gtk_widget_grab_focus(imd->widget);
2015                 }
2016 }
2017
2018
2019 /*
2020  *-------------------------------------------------------------------
2021  * prefs sync
2022  *-------------------------------------------------------------------
2023  */
2024
2025 static void image_options_set(ImageWindow *imd)
2026 {
2027         g_object_set(G_OBJECT(imd->pr), "zoom_quality", options->image.zoom_quality,
2028                                         "zoom_2pass", options->image.zoom_2pass,
2029                                         "zoom_expand", options->image.zoom_to_fit_allow_expand,
2030                                         "scroll_reset", options->image.scroll_reset_method,
2031                                         "cache_display", options->image.tile_cache_max,
2032                                         "window_fit", (imd->top_window_sync && options->image.fit_window_to_image),
2033                                         "window_limit", options->image.limit_window_size,
2034                                         "window_limit_value", options->image.max_window_size,
2035                                         "autofit_limit", options->image.limit_autofit_size,
2036                                         "autofit_limit_value", options->image.max_autofit_size,
2037                                         "enlargement_limit_value", options->image.max_enlargement_size,
2038
2039                                         NULL);
2040
2041         pixbuf_renderer_set_parent(reinterpret_cast<PixbufRenderer *>(imd->pr), reinterpret_cast<GtkWindow *>(imd->top_window));
2042
2043         image_stereo_set(imd, options->stereo.mode);
2044         pixbuf_renderer_stereo_fixed_set(reinterpret_cast<PixbufRenderer *>(imd->pr),
2045                                         options->stereo.fixed_w, options->stereo.fixed_h,
2046                                         options->stereo.fixed_x1, options->stereo.fixed_y1,
2047                                         options->stereo.fixed_x2, options->stereo.fixed_y2);
2048 }
2049
2050 void image_options_sync()
2051 {
2052         GList *work;
2053
2054         work = image_list;
2055         while (work)
2056                 {
2057                 ImageWindow *imd;
2058
2059                 imd = static_cast<ImageWindow *>(work->data);
2060                 work = work->next;
2061
2062                 image_options_set(imd);
2063                 }
2064 }
2065
2066 /*
2067  *-------------------------------------------------------------------
2068  * init / destroy
2069  *-------------------------------------------------------------------
2070  */
2071
2072 static void image_free(ImageWindow *imd)
2073 {
2074         image_list = g_list_remove(image_list, imd);
2075
2076         if (imd->auto_refresh && imd->image_fd)
2077                 file_data_unregister_real_time_monitor(imd->image_fd);
2078
2079         file_data_unregister_notify_func(image_notify_cb, imd);
2080
2081         image_reset(imd);
2082
2083         image_read_ahead_cancel(imd);
2084
2085         file_data_unref(imd->image_fd);
2086         g_free(imd->title);
2087         g_free(imd->title_right);
2088         g_free(imd);
2089 }
2090
2091 static void image_destroy_cb(GtkWidget *, gpointer data)
2092 {
2093         auto imd = static_cast<ImageWindow *>(data);
2094         image_free(imd);
2095 }
2096
2097 gboolean selectable_frame_draw_cb(GtkWidget *widget, cairo_t *cr, gpointer)
2098 {
2099         GtkAllocation allocation;
2100         gtk_widget_get_allocation(widget, &allocation);
2101         gtk_paint_flat_box(gtk_widget_get_style(widget),
2102                            cr,
2103                            gtk_widget_get_state(widget),
2104                            gtk_frame_get_shadow_type(GTK_FRAME(widget)),
2105                            widget,
2106                            nullptr,
2107                            allocation.x + 3, allocation.y + 3,
2108                            allocation.width - 6, allocation.height - 6);
2109
2110         if (gtk_widget_has_focus(widget))
2111                 {
2112                 gtk_paint_focus(gtk_widget_get_style(widget), cr, GTK_STATE_ACTIVE,
2113                                 widget, "image_window",
2114                                 allocation.x, allocation.y,
2115                                 allocation.width - 1, allocation.height - 1);
2116                 }
2117         else
2118                 {
2119                 gtk_paint_shadow(gtk_widget_get_style(widget), cr, GTK_STATE_NORMAL, GTK_SHADOW_IN,
2120                                  widget, "image_window",
2121                                  allocation.x, allocation.y,
2122                                  allocation.width - 1, allocation.height - 1);
2123                 }
2124         return FALSE;
2125 }
2126
2127 void image_set_frame(ImageWindow *imd, gboolean frame)
2128 {
2129         frame = !!frame;
2130
2131         if (frame == imd->has_frame) return;
2132
2133         gtk_widget_hide(imd->pr);
2134
2135         if (frame)
2136                 {
2137                 imd->frame = gtk_frame_new(nullptr);
2138                 DEBUG_NAME(imd->frame);
2139                 g_object_ref(imd->pr);
2140                 if (imd->has_frame != -1) gtk_container_remove(GTK_CONTAINER(imd->widget), imd->pr);
2141                 gtk_container_add(GTK_CONTAINER(imd->frame), imd->pr);
2142
2143                 g_object_unref(imd->pr);
2144                 gtk_widget_set_can_focus(imd->frame, TRUE);
2145                 gtk_widget_set_app_paintable(imd->frame, TRUE);
2146
2147                 g_signal_connect(G_OBJECT(imd->frame), "draw",
2148                                  G_CALLBACK(selectable_frame_draw_cb), NULL);
2149                 g_signal_connect(G_OBJECT(imd->frame), "focus_in_event",
2150                                  G_CALLBACK(image_focus_in_cb), imd);
2151
2152                 gtk_box_pack_start(GTK_BOX(imd->widget), imd->frame, TRUE, TRUE, 0);
2153                 gtk_widget_show(imd->frame);
2154                 }
2155         else
2156                 {
2157                 g_object_ref(imd->pr);
2158                 if (imd->frame)
2159                         {
2160                         gtk_container_remove(GTK_CONTAINER(imd->frame), imd->pr);
2161                         gtk_widget_destroy(imd->frame);
2162                         imd->frame = nullptr;
2163                         }
2164                 gtk_box_pack_start(GTK_BOX(imd->widget), imd->pr, TRUE, TRUE, 0);
2165
2166                 g_object_unref(imd->pr);
2167                 }
2168
2169         gtk_widget_show(imd->pr);
2170
2171         imd->has_frame = frame;
2172 }
2173
2174 ImageWindow *image_new(gboolean frame)
2175 {
2176         ImageWindow *imd;
2177
2178         imd = g_new0(ImageWindow, 1);
2179
2180         imd->unknown = TRUE;
2181         imd->has_frame = -1; /* not initialized; for image_set_frame */
2182         imd->delay_alter_type = ALTER_NONE;
2183         imd->state = IMAGE_STATE_NONE;
2184         imd->color_profile_from_image = COLOR_PROFILE_NONE;
2185         imd->orientation = 1;
2186
2187         imd->pr = GTK_WIDGET(pixbuf_renderer_new());
2188         DEBUG_NAME(imd->pr);
2189
2190         image_options_set(imd);
2191
2192         imd->widget = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
2193         DEBUG_NAME(imd->widget);
2194
2195         image_set_frame(imd, frame);
2196
2197         image_set_selectable(imd, 0);
2198
2199         g_signal_connect(G_OBJECT(imd->pr), "clicked",
2200                          G_CALLBACK(image_click_cb), imd);
2201         g_signal_connect(G_OBJECT(imd->pr), "button_press_event",
2202                          G_CALLBACK(image_press_cb), imd);
2203         g_signal_connect(G_OBJECT(imd->pr), "scroll_notify",
2204                          G_CALLBACK(image_scroll_notify_cb), imd);
2205
2206         g_signal_connect(G_OBJECT(imd->pr), "scroll_event",
2207                          G_CALLBACK(image_scroll_cb), imd);
2208
2209         g_signal_connect(G_OBJECT(imd->pr), "destroy",
2210                          G_CALLBACK(image_destroy_cb), imd);
2211
2212         g_signal_connect(G_OBJECT(imd->pr), "zoom",
2213                          G_CALLBACK(image_zoom_cb), imd);
2214         g_signal_connect(G_OBJECT(imd->pr), "render_complete",
2215                          G_CALLBACK(image_render_complete_cb), imd);
2216         g_signal_connect(G_OBJECT(imd->pr), "drag",
2217                          G_CALLBACK(image_drag_cb), imd);
2218
2219         file_data_register_notify_func(image_notify_cb, imd, NOTIFY_PRIORITY_LOW);
2220
2221         image_list = g_list_append(image_list, imd);
2222
2223         return imd;
2224 }
2225
2226 void image_get_rectangle(gint *x1, gint *y1, gint *x2, gint *y2)
2227 {
2228         *x1 = rect_x1;
2229         *y1 = rect_y1;
2230         *x2 = rect_x2;
2231         *y2 = rect_y2;
2232 }
2233
2234 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */