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