comparison src/color-man.h @ 113:55166d93498d

Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net> * configure.in: Add test for lcms (little cms). * Makefile.am: Add color-man.[ch]: * color-man.[ch]: New files for color management support. * globals.c, gqview.h, main.c, rcfile.c, typedefs.h: Add color profile variables and option saving. * image.[ch]: Add color profile functions. * layout.c, layout_image.[ch]: Add color profile icon, popup menu, and fix sort menu to use radio buttons. * menu.c: Use radio buttons for sort menu when appropriate. * preferences.c: Add color profile options to preferences. * ui_menu.[ch]: Add menu_item_add_radio() for radio item menus. * ui_misc.c: Fix gtk_table_attach() arg for vertical expansion. * view_file_icon.c, view_file_list.c: Check for active state in sort menu callbacks. * README: Add info about lcms, and how to disable.
author gqview
date Sat, 25 Nov 2006 03:00:33 +0000
parents
children 50fc73e08550
comparison
equal deleted inserted replaced
112:b15d4c18168f 113:55166d93498d
1 /*
2 * GQview
3 * (C) 2006 John Ellis
4 *
5 * Author: John Ellis
6 *
7 * This software is released under the GNU General Public License (GNU GPL).
8 * Please read the included file COPYING for more information.
9 * This software comes with no warranty of any kind, use at your own risk!
10 */
11
12
13 #ifndef COLOR_MAN_H
14 #define COLOR_MAN_H
15
16 typedef enum {
17 COLOR_PROFILE_NONE = 0,
18 COLOR_PROFILE_FILE,
19 COLOR_PROFILE_SRGB,
20 } ColorManProfileType;
21
22 typedef enum {
23 COLOR_RETURN_SUCCESS = 0,
24 COLOR_RETURN_ERROR,
25 COLOR_RETURN_IMAGE_CHANGED
26 } ColorManReturnType;
27
28 typedef struct _ColorMan ColorMan;
29 typedef void (* ColorManDoneFunc)(ColorMan *cm, ColorManReturnType success, gpointer data);
30
31
32 struct _ColorMan {
33 ImageWindow *imd;
34 GdkPixbuf *pixbuf;
35 gint row;
36
37 gpointer profile;
38
39 gint idle_id;
40
41 ColorManDoneFunc func_done;
42 gpointer func_done_data;
43 };
44
45
46 ColorMan *color_man_new(ImageWindow *imd,
47 ColorManProfileType input_type, const gchar *input_file,
48 ColorManProfileType screen_type, const gchar *screen_file,
49 ColorManDoneFunc done_func, gpointer done_data);
50 void color_man_free(ColorMan *cm);
51
52 void color_man_update(void);
53
54
55 #endif
56