Use util_clip_triangle() in pan_item_tri_new()
[geeqie.git] / src / color-man.h
index 2082330..55ff086 100644 (file)
@@ -1,38 +1,49 @@
 /*
- * Geeqie
- * (C) 2006 John Ellis
- * Copyright (C) 2008 - 2012 The Geeqie Team
+ * Copyright (C) 2006 John Ellis
+ * Copyright (C) 2008 - 2016 The Geeqie Team
  *
  * Author: John Ellis
  *
- * This software is released under the GNU General Public License (GNU GPL).
- * Please read the included file COPYING for more information.
- * This software comes with no warranty of any kind, use at your own risk!
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-
 #ifndef COLOR_MAN_H
 #define COLOR_MAN_H
 
-typedef enum {
+#include <gdk-pixbuf/gdk-pixbuf.h>
+#include <glib.h>
+
+struct FileData;
+struct ImageWindow;
+
+enum ColorManProfileType {
        COLOR_PROFILE_NONE = -1,
        COLOR_PROFILE_MEM = -2,
        COLOR_PROFILE_SRGB = 0,
        COLOR_PROFILE_ADOBERGB,
        COLOR_PROFILE_FILE,
-} ColorManProfileType;
+};
 
-typedef enum {
+enum ColorManReturnType {
        COLOR_RETURN_SUCCESS = 0,
        COLOR_RETURN_ERROR,
        COLOR_RETURN_IMAGE_CHANGED
-} ColorManReturnType;
-
-typedef struct _ColorMan ColorMan;
-typedef void (* ColorManDoneFunc)(ColorMan *cm, ColorManReturnType success, gpointer data);
+};
 
 
-struct _ColorMan {
+struct ColorMan {
        ImageWindow *imd;
        GdkPixbuf *pixbuf;
        gint incremental_sync;
@@ -42,7 +53,8 @@ struct _ColorMan {
 
        guint idle_id; /* event source id */
 
-       ColorManDoneFunc func_done;
+       using DoneFunc = void (*)(ColorMan *, ColorManReturnType, gpointer);
+       DoneFunc func_done;
        gpointer func_done_data;
 };
 
@@ -57,13 +69,12 @@ ColorMan *color_man_new_embedded(ImageWindow *imd, GdkPixbuf *pixbuf,
                                 guchar *screen_data, guint screen_data_len);
 void color_man_free(ColorMan *cm);
 
-void color_man_update(void);
+void color_man_update();
 
 void color_man_correct_region(ColorMan *cm, GdkPixbuf *pixbuf, gint x, gint y, gint w, gint h);
 
-void color_man_start_bg(ColorMan *cm, ColorManDoneFunc don_func, gpointer done_data);
-
 gboolean color_man_get_status(ColorMan *cm, gchar **image_profile, gchar **screen_profile);
 
+guchar *heif_color_profile(FileData *fd, guint *profile_len);
 #endif
 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */