comparison src/gqview.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 d063f97503b7
children 9009856628f7
comparison
equal deleted inserted replaced
112:b15d4c18168f 113:55166d93498d
76 #define SCROLL_RESET_NOCHANGE 2 76 #define SCROLL_RESET_NOCHANGE 2
77 77
78 #define MOUSEWHEEL_SCROLL_SIZE 20 78 #define MOUSEWHEEL_SCROLL_SIZE 20
79 79
80 #define GQVIEW_EDITOR_SLOTS 10 80 #define GQVIEW_EDITOR_SLOTS 10
81
82 #define COLOR_PROFILE_INPUTS 4
81 83
82 /* 84 /*
83 *---------------------------------------------------------------------------- 85 *----------------------------------------------------------------------------
84 * globals 86 * globals
85 *---------------------------------------------------------------------------- 87 *----------------------------------------------------------------------------
192 194
193 extern gint lazy_image_sync; 195 extern gint lazy_image_sync;
194 extern gint update_on_time_change; 196 extern gint update_on_time_change;
195 extern gint exif_rotate_enable; 197 extern gint exif_rotate_enable;
196 198
199 extern gint color_profile_enabled;
200 extern gint color_profile_input_type;
201 extern gchar *color_profile_input_file[];
202 extern gchar *color_profile_input_name[];
203 extern gint color_profile_screen_type;
204 extern gchar *color_profile_screen_file;
205 extern gint color_profile_use_image;
206
197 /* 207 /*
198 *---------------------------------------------------------------------------- 208 *----------------------------------------------------------------------------
199 * main.c 209 * main.c
200 *---------------------------------------------------------------------------- 210 *----------------------------------------------------------------------------
201 */ 211 */