Move third-party sources to separate sub-directory
[geeqie.git] / src / color-man.h
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 #ifndef COLOR_MAN_H
23 #define COLOR_MAN_H
24
25 #include <gdk-pixbuf/gdk-pixbuf.h>
26 #include <glib.h>
27
28 struct FileData;
29 struct ImageWindow;
30
31 enum ColorManProfileType {
32         COLOR_PROFILE_NONE = -1,
33         COLOR_PROFILE_MEM = -2,
34         COLOR_PROFILE_SRGB = 0,
35         COLOR_PROFILE_ADOBERGB,
36         COLOR_PROFILE_FILE,
37 };
38
39 enum ColorManReturnType {
40         COLOR_RETURN_SUCCESS = 0,
41         COLOR_RETURN_ERROR,
42         COLOR_RETURN_IMAGE_CHANGED
43 };
44
45
46 struct ColorMan {
47         ImageWindow *imd;
48         GdkPixbuf *pixbuf;
49         gint incremental_sync;
50         gint row;
51
52         gpointer profile;
53
54         guint idle_id; /* event source id */
55
56         using DoneFunc = void (*)(ColorMan *, ColorManReturnType, gpointer);
57         DoneFunc func_done;
58         gpointer func_done_data;
59 };
60
61
62 ColorMan *color_man_new(ImageWindow *imd, GdkPixbuf *pixbuf,
63                         ColorManProfileType input_type, const gchar *input_file,
64                         ColorManProfileType screen_type, const gchar *screen_file,
65                         guchar *screen_data, guint screen_data_len);
66 ColorMan *color_man_new_embedded(ImageWindow *imd, GdkPixbuf *pixbuf,
67                                  guchar *input_data, guint input_data_len,
68                                  ColorManProfileType screen_type, const gchar *screen_file,
69                                  guchar *screen_data, guint screen_data_len);
70 void color_man_free(ColorMan *cm);
71
72 void color_man_update();
73
74 void color_man_correct_region(ColorMan *cm, GdkPixbuf *pixbuf, gint x, gint y, gint w, gint h);
75
76 gboolean color_man_get_status(ColorMan *cm, gchar **image_profile, gchar **screen_profile);
77
78 guchar *heif_color_profile(FileData *fd, guint *profile_len);
79 #endif
80 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */