Mercurial > geeqie
annotate src/preferences.c @ 629:1fa2cb6d9d65
Rename options:
startup_path_enable -> startup.restore_path
startup_path -> startup.path
Geeqie is still able to read old options.
author | zas_ |
---|---|
date | Sun, 11 May 2008 12:23:26 +0000 |
parents | 076e6f7e9ecb |
children | 83d3ded39e49 |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
26
diff
changeset
|
3 * (C) 2006 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
281 | 14 #include "main.h" |
9 | 15 #include "preferences.h" |
16 | |
17 #include "cache_maint.h" | |
507 | 18 #include "debug.h" |
9 | 19 #include "editors.h" |
586 | 20 #include "filedata.h" |
21 #include "filefilter.h" | |
9 | 22 #include "fullscreen.h" |
26
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
23 #include "image.h" |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
24 #include "image-overlay.h" |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
413
diff
changeset
|
25 #include "color-man.h" |
9 | 26 #include "img-view.h" |
27 #include "layout_config.h" | |
28 #include "layout_util.h" | |
29 #include "pixbuf_util.h" | |
30 #include "slideshow.h" | |
597 | 31 #include "trash.h" |
9 | 32 #include "utilops.h" |
33 #include "ui_fileops.h" | |
34 #include "ui_misc.h" | |
35 #include "ui_tabcomp.h" | |
36 #include "ui_utildlg.h" | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
37 #include "bar_exif.h" |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
38 #include "exif.h" |
9 | 39 |
40 #include <math.h> | |
41 | |
42 | |
43 #define EDITOR_NAME_MAX_LENGTH 32 | |
44 #define EDITOR_COMMAND_MAX_LENGTH 1024 | |
45 | |
46 | |
47 typedef struct _ThumbSize ThumbSize; | |
48 struct _ThumbSize | |
49 { | |
50 gint w; | |
51 gint h; | |
52 }; | |
53 | |
54 static ThumbSize thumb_size_list[] = | |
55 { | |
56 { 24, 24 }, | |
57 { 32, 32 }, | |
58 { 48, 48 }, | |
59 { 64, 64 }, | |
60 { 96, 72 }, | |
61 { 96, 96 }, | |
62 { 128, 96 }, | |
63 { 128, 128 }, | |
64 { 160, 120 }, | |
65 { 160, 160 }, | |
66 { 192, 144 }, | |
67 { 192, 192 }, | |
68 { 256, 192 }, | |
69 { 256, 256 } | |
70 }; | |
71 | |
72 enum { | |
73 FE_ENABLE, | |
74 FE_EXTENSION, | |
75 FE_DESCRIPTION | |
76 }; | |
77 | |
78 /* config memory values */ | |
321 | 79 static ConfOptions *c_options = NULL; |
9 | 80 |
81 | |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
82 #ifdef DEBUG |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
83 static gint debug_c; |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
84 #endif |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
85 |
9 | 86 static GtkWidget *configwindow = NULL; |
87 static GtkWidget *startup_path_entry; | |
88 static GtkListStore *filter_store = NULL; | |
283 | 89 static GtkWidget *editor_name_entry[GQ_EDITOR_SLOTS]; |
90 static GtkWidget *editor_command_entry[GQ_EDITOR_SLOTS]; | |
9 | 91 |
92 static GtkWidget *layout_widget; | |
93 | |
94 static GtkWidget *safe_delete_path_entry; | |
95 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
96 static GtkWidget *color_profile_input_file_entry[COLOR_PROFILE_INPUTS]; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
97 static GtkWidget *color_profile_input_name_entry[COLOR_PROFILE_INPUTS]; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
98 static GtkWidget *color_profile_screen_file_entry; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
99 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
100 static GtkWidget *sidecar_ext_entry; |
225
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
101 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
102 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
103 #define CONFIG_WINDOW_DEF_WIDTH 700 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
104 #define CONFIG_WINDOW_DEF_HEIGHT 500 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
105 |
9 | 106 /* |
107 *----------------------------------------------------------------------------- | |
108 * option widget callbacks (private) | |
109 *----------------------------------------------------------------------------- | |
442 | 110 */ |
9 | 111 |
112 static void startup_path_set_current(GtkWidget *widget, gpointer data) | |
113 { | |
114 gtk_entry_set_text(GTK_ENTRY(startup_path_entry), layout_get_path(NULL)); | |
115 } | |
116 | |
117 static void zoom_mode_original_cb(GtkWidget *widget, gpointer data) | |
118 { | |
119 if (GTK_TOGGLE_BUTTON (widget)->active) | |
334 | 120 c_options->image.zoom_mode = ZOOM_RESET_ORIGINAL; |
9 | 121 } |
122 | |
123 static void zoom_mode_fit_cb(GtkWidget *widget, gpointer data) | |
124 { | |
125 if (GTK_TOGGLE_BUTTON (widget)->active) | |
334 | 126 c_options->image.zoom_mode = ZOOM_RESET_FIT_WINDOW; |
9 | 127 } |
128 | |
129 static void zoom_mode_none_cb(GtkWidget *widget, gpointer data) | |
130 { | |
131 if (GTK_TOGGLE_BUTTON (widget)->active) | |
334 | 132 c_options->image.zoom_mode = ZOOM_RESET_NONE; |
9 | 133 } |
134 | |
135 static void zoom_increment_cb(GtkWidget *spin, gpointer data) | |
136 { | |
334 | 137 c_options->image.zoom_increment = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) * 10.0 + 0.01); |
9 | 138 } |
139 | |
140 static void slideshow_delay_cb(GtkWidget *spin, gpointer data) | |
141 { | |
326 | 142 c_options->slideshow.delay = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) * |
9 | 143 (double)SLIDESHOW_SUBSECOND_PRECISION + 0.01); |
144 } | |
145 | |
146 /* | |
147 *----------------------------------------------------------------------------- | |
148 * sync progam to config window routine (private) | |
149 *----------------------------------------------------------------------------- | |
442 | 150 */ |
9 | 151 |
152 static void config_window_apply(void) | |
153 { | |
154 const gchar *buf; | |
155 gint new_style; | |
156 gint i; | |
157 gint refresh = FALSE; | |
158 | |
517 | 159 for (i = 0; i < GQ_EDITOR_SLOTS; i++) |
9 | 160 { |
283 | 161 if (i < GQ_EDITOR_GENERIC_SLOTS) |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
162 { |
318 | 163 g_free(options->editor_name[i]); |
164 options->editor_name[i] = NULL; | |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
165 buf = gtk_entry_get_text(GTK_ENTRY(editor_name_entry[i])); |
318 | 166 if (buf && strlen(buf) > 0) options->editor_name[i] = g_strdup(buf); |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
167 } |
9 | 168 |
318 | 169 g_free(options->editor_command[i]); |
170 options->editor_command[i] = NULL; | |
9 | 171 buf = gtk_entry_get_text(GTK_ENTRY(editor_command_entry[i])); |
318 | 172 if (buf && strlen(buf) > 0) options->editor_command[i] = g_strdup(buf); |
9 | 173 } |
174 layout_edit_update_all(); | |
175 | |
629 | 176 g_free(options->startup.path); |
177 options->startup.path = NULL; | |
9 | 178 buf = gtk_entry_get_text(GTK_ENTRY(startup_path_entry)); |
629 | 179 if (buf && strlen(buf) > 0) options->startup.path = remove_trailing_slash(buf); |
9 | 180 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
181 g_free(options->file_ops.safe_delete_path); |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
182 options->file_ops.safe_delete_path = NULL; |
9 | 183 buf = gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry)); |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
184 if (buf && strlen(buf) > 0) options->file_ops.safe_delete_path = remove_trailing_slash(buf); |
9 | 185 |
356 | 186 if (options->file_filter.show_hidden_files != c_options->file_filter.show_hidden_files) refresh = TRUE; |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
187 if (options->file_filter.show_dot_directory != c_options->file_filter.show_dot_directory) refresh = TRUE; |
329 | 188 if (options->file_sort.case_sensitive != c_options->file_sort.case_sensitive) refresh = TRUE; |
332 | 189 if (options->file_filter.disable != c_options->file_filter.disable) refresh = TRUE; |
9 | 190 |
629 | 191 options->startup.restore_path = c_options->startup.restore_path; |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
192 options->file_ops.confirm_delete = c_options->file_ops.confirm_delete; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
193 options->file_ops.enable_delete_key = c_options->file_ops.enable_delete_key; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
194 options->file_ops.safe_delete_enable = c_options->file_ops.safe_delete_enable; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
195 options->file_ops.safe_delete_folder_maxsize = c_options->file_ops.safe_delete_folder_maxsize; |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
196 options->layout.tools_restore_state = c_options->layout.tools_restore_state; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
197 options->layout.save_window_positions = c_options->layout.save_window_positions; |
334 | 198 options->image.zoom_mode = c_options->image.zoom_mode; |
199 options->image.zoom_2pass = c_options->image.zoom_2pass; | |
200 options->image.fit_window_to_image = c_options->image.fit_window_to_image; | |
201 options->image.limit_window_size = c_options->image.limit_window_size; | |
202 options->image.zoom_to_fit_allow_expand = c_options->image.zoom_to_fit_allow_expand; | |
203 options->image.max_window_size = c_options->image.max_window_size; | |
204 options->image.limit_autofit_size = c_options->image.limit_autofit_size; | |
205 options->image.max_autofit_size = c_options->image.max_autofit_size; | |
321 | 206 options->progressive_key_scrolling = c_options->progressive_key_scrolling; |
333 | 207 options->thumbnails.max_width = c_options->thumbnails.max_width; |
208 options->thumbnails.max_height = c_options->thumbnails.max_height; | |
209 options->thumbnails.enable_caching = c_options->thumbnails.enable_caching; | |
210 options->thumbnails.cache_into_dirs = c_options->thumbnails.cache_into_dirs; | |
211 options->thumbnails.fast = c_options->thumbnails.fast; | |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
212 #if 0 |
333 | 213 options->thumbnails.use_xvpics = c_options->thumbnails.use_xvpics; |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
214 #endif |
333 | 215 options->thumbnails.spec_standard = c_options->thumbnails.spec_standard; |
321 | 216 options->enable_metadata_dirs = c_options->enable_metadata_dirs; |
356 | 217 options->file_filter.show_hidden_files = c_options->file_filter.show_hidden_files; |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
218 options->file_filter.show_dot_directory = c_options->file_filter.show_dot_directory; |
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
219 |
329 | 220 options->file_sort.case_sensitive = c_options->file_sort.case_sensitive; |
332 | 221 options->file_filter.disable = c_options->file_filter.disable; |
9 | 222 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
223 sidecar_ext_parse(gtk_entry_get_text(GTK_ENTRY(sidecar_ext_entry)), FALSE); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
224 |
326 | 225 options->slideshow.random = c_options->slideshow.random; |
226 options->slideshow.repeat = c_options->slideshow.repeat; | |
227 options->slideshow.delay = c_options->slideshow.delay; | |
9 | 228 |
321 | 229 options->mousewheel_scrolls = c_options->mousewheel_scrolls; |
9 | 230 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
231 options->file_ops.enable_in_place_rename = c_options->file_ops.enable_in_place_rename; |
9 | 232 |
330 | 233 options->collections.rectangular_selection = c_options->collections.rectangular_selection; |
9 | 234 |
334 | 235 options->image.tile_cache_max = c_options->image.tile_cache_max; |
442 | 236 |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
237 options->image.read_buffer_size = c_options->image.read_buffer_size; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
238 options->image.idle_read_loop_count = c_options->image.idle_read_loop_count; |
9 | 239 |
333 | 240 options->thumbnails.quality = c_options->thumbnails.quality; |
334 | 241 options->image.zoom_quality = c_options->image.zoom_quality; |
9 | 242 |
334 | 243 options->image.zoom_increment = c_options->image.zoom_increment; |
9 | 244 |
334 | 245 options->image.enable_read_ahead = c_options->image.enable_read_ahead; |
9 | 246 |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
247 if (options->image.use_custom_border_color != c_options->image.use_custom_border_color |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
248 || !gdk_color_equal(&options->image.border_color, &c_options->image.border_color)) |
9 | 249 { |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
250 options->image.use_custom_border_color = c_options->image.use_custom_border_color; |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
251 options->image.border_color = c_options->image.border_color; |
9 | 252 layout_colors_update(); |
253 view_window_colors_update(); | |
254 } | |
255 | |
322 | 256 options->fullscreen.screen = c_options->fullscreen.screen; |
257 options->fullscreen.clean_flip = c_options->fullscreen.clean_flip; | |
258 options->fullscreen.disable_saver = c_options->fullscreen.disable_saver; | |
259 options->fullscreen.above = c_options->fullscreen.above; | |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
260 options->image_overlay.common.show_at_startup = c_options->image_overlay.common.show_at_startup; |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
261 if (c_options->image_overlay.common.template_string) |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
262 { |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
263 g_free(options->image_overlay.common.template_string); |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
264 options->image_overlay.common.template_string = g_strdup(c_options->image_overlay.common.template_string); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
265 } |
9 | 266 |
321 | 267 options->update_on_time_change = c_options->update_on_time_change; |
334 | 268 options->image.exif_rotate_enable = c_options->image.exif_rotate_enable; |
9 | 269 |
342
07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents:
341
diff
changeset
|
270 options->duplicates_similarity_threshold = c_options->duplicates_similarity_threshold; |
9 | 271 |
321 | 272 options->tree_descend_subdirs = c_options->tree_descend_subdirs; |
441
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
273 |
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
274 options->open_recent_list_maxsize = c_options->open_recent_list_maxsize; |
458
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
446
diff
changeset
|
275 options->dnd_icon_size = c_options->dnd_icon_size; |
497 | 276 |
277 if (options->show_copy_path != c_options->show_copy_path) | |
278 { | |
279 options->show_copy_path = c_options->show_copy_path; | |
280 layout_copy_path_update_all(); | |
281 } | |
441
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
282 |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
283 options->save_metadata_in_image_file = c_options->save_metadata_in_image_file; |
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
284 |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
285 #ifdef DEBUG |
507 | 286 set_debug_level(debug_c); |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
287 #endif |
9 | 288 |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
289 #ifdef HAVE_LCMS |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
290 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
291 { |
327 | 292 g_free(options->color_profile.input_name[i]); |
293 options->color_profile.input_name[i] = NULL; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
294 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_name_entry[i])); |
327 | 295 if (buf && strlen(buf) > 0) options->color_profile.input_name[i] = g_strdup(buf); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
296 |
327 | 297 g_free(options->color_profile.input_file[i]); |
298 options->color_profile.input_file[i] = NULL; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
299 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_input_file_entry[i])); |
327 | 300 if (buf && strlen(buf) > 0) options->color_profile.input_file[i] = g_strdup(buf); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
301 } |
327 | 302 g_free(options->color_profile.screen_file); |
303 options->color_profile.screen_file = NULL; | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
304 buf = gtk_entry_get_text(GTK_ENTRY(color_profile_screen_file_entry)); |
327 | 305 if (buf && strlen(buf) > 0) options->color_profile.screen_file = g_strdup(buf); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
306 #endif |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
307 |
520 | 308 for (i = 0; ExifUIList[i].key; i++) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
309 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
310 ExifUIList[i].current = ExifUIList[i].temp; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
311 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
312 |
375 | 313 { |
314 gchar *layout_order = layout_config_get(layout_widget, &new_style); | |
9 | 315 |
327 | 316 if (new_style != options->layout.style || |
375 | 317 (layout_order == NULL) != (options->layout.order == NULL) || |
327 | 318 !options->layout.order || |
375 | 319 strcmp(layout_order, options->layout.order) != 0) |
9 | 320 { |
321 if (refresh) filter_rebuild(); | |
322 refresh = FALSE; | |
323 | |
327 | 324 g_free(options->layout.order); |
375 | 325 options->layout.order = layout_order; |
326 layout_order = NULL; /* g_free() later */ | |
9 | 327 |
327 | 328 options->layout.style = new_style; |
9 | 329 |
330 layout_styles_update(); | |
331 } | |
332 | |
375 | 333 g_free(layout_order); |
334 } | |
9 | 335 |
26
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
336 image_options_sync(); |
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
337 |
9 | 338 if (refresh) |
339 { | |
340 filter_rebuild(); | |
341 layout_refresh(NULL); | |
342 } | |
343 } | |
344 | |
345 /* | |
346 *----------------------------------------------------------------------------- | |
347 * config window main button callbacks (private) | |
348 *----------------------------------------------------------------------------- | |
442 | 349 */ |
9 | 350 |
351 static void config_window_close_cb(GtkWidget *widget, gpointer data) | |
352 { | |
353 gtk_widget_destroy(configwindow); | |
354 configwindow = NULL; | |
355 filter_store = NULL; | |
356 } | |
357 | |
358 static gint config_window_delete(GtkWidget *w, GdkEventAny *event, gpointer data) | |
359 { | |
360 config_window_close_cb(NULL, NULL); | |
361 return TRUE; | |
362 } | |
363 | |
364 static void config_window_ok_cb(GtkWidget *widget, gpointer data) | |
365 { | |
366 config_window_apply(); | |
367 config_window_close_cb(NULL, NULL); | |
368 } | |
369 | |
370 static void config_window_apply_cb(GtkWidget *widget, gpointer data) | |
371 { | |
372 config_window_apply(); | |
373 } | |
374 | |
375 /* | |
376 *----------------------------------------------------------------------------- | |
377 * config window setup (private) | |
378 *----------------------------------------------------------------------------- | |
442 | 379 */ |
9 | 380 |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
381 static void exif_item_cb(GtkWidget *combo, gpointer data) |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
382 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
383 gint *option = data; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
384 *option = gtk_combo_box_get_active(GTK_COMBO_BOX(combo)); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
385 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
386 |
442 | 387 static void exif_item(GtkWidget *table, gint column, gint row, |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
388 const gchar *text, gint option, gint *option_c) |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
389 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
390 GtkWidget *combo; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
391 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
392 *option_c = option; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
393 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
394 pref_table_label(table, column, row, text, 0.0); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
395 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
396 combo = gtk_combo_box_new_text(); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
397 |
442 | 398 /* note: the order is important, it must match the values of |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
399 * EXIF_UI_OFF, _IFSET, _ON */ |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
400 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Never")); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
401 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("If set")); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
402 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Always")); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
403 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
404 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), option); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
405 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
406 g_signal_connect(G_OBJECT(combo), "changed", |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
407 G_CALLBACK(exif_item_cb), option_c); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
408 |
442 | 409 gtk_table_attach(GTK_TABLE(table), combo, |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
410 column + 1, column + 2, row, row + 1, |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
411 GTK_EXPAND | GTK_FILL, 0, 0, 0); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
412 gtk_widget_show(combo); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
413 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
414 |
9 | 415 static void quality_menu_cb(GtkWidget *combo, gpointer data) |
416 { | |
417 gint *option = data; | |
418 | |
419 switch (gtk_combo_box_get_active(GTK_COMBO_BOX(combo))) | |
420 { | |
421 case 0: | |
422 default: | |
423 *option = GDK_INTERP_NEAREST; | |
424 break; | |
425 case 1: | |
426 *option = GDK_INTERP_TILES; | |
427 break; | |
428 case 2: | |
429 *option = GDK_INTERP_BILINEAR; | |
430 break; | |
431 case 3: | |
432 *option = GDK_INTERP_HYPER; | |
433 break; | |
434 } | |
435 } | |
436 | |
437 static void add_quality_menu(GtkWidget *table, gint column, gint row, const gchar *text, | |
438 gint option, gint *option_c) | |
439 { | |
440 GtkWidget *combo; | |
441 gint current = 0; | |
442 | |
443 *option_c = option; | |
444 | |
445 pref_table_label(table, column, row, text, 0.0); | |
446 | |
447 combo = gtk_combo_box_new_text(); | |
448 | |
449 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Nearest (worst, but fastest)")); | |
450 if (option == GDK_INTERP_NEAREST) current = 0; | |
451 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Tiles")); | |
452 if (option == GDK_INTERP_TILES) current = 1; | |
453 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Bilinear")); | |
454 if (option == GDK_INTERP_BILINEAR) current = 2; | |
455 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Hyper (best, but slowest)")); | |
456 if (option == GDK_INTERP_HYPER) current = 3; | |
457 | |
458 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current); | |
459 | |
460 g_signal_connect(G_OBJECT(combo), "changed", | |
461 G_CALLBACK(quality_menu_cb), option_c); | |
462 | |
463 gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1, | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
464 GTK_EXPAND | GTK_FILL, 0, 0, 0); |
9 | 465 gtk_widget_show(combo); |
466 } | |
467 | |
468 #if 0 | |
469 static void add_dither_menu(gint option, gint *option_c, gchar *text, GtkWidget *box) | |
470 { | |
471 GtkWidget *hbox; | |
472 GtkWidget *omenu; | |
473 GtkWidget *menu; | |
474 | |
475 *option_c = option; | |
476 | |
477 hbox = pref_box_new(box, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
478 pref_label_new(hbox, text); | |
479 | |
480 omenu = gtk_option_menu_new(); | |
481 menu = gtk_menu_new(); | |
482 | |
483 add_menu_item(menu, _("None"), option_c, (gint)GDK_RGB_DITHER_NONE); | |
484 add_menu_item(menu, _("Normal"), option_c, (gint)GDK_RGB_DITHER_NORMAL); | |
485 add_menu_item(menu, _("Best"), option_c, (gint)GDK_RGB_DITHER_MAX); | |
486 | |
487 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
488 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), *option_c); | |
489 | |
490 gtk_box_pack_start(GTK_BOX(hbox), omenu, FALSE, FALSE, 0); | |
491 gtk_widget_show(omenu); | |
492 } | |
493 #endif | |
494 | |
495 static void thumb_size_menu_cb(GtkWidget *combo, gpointer data) | |
496 { | |
497 gint n; | |
498 | |
499 n = gtk_combo_box_get_active(GTK_COMBO_BOX(combo)); | |
500 | |
501 if (n >= 0 && n < sizeof(thumb_size_list) / sizeof(ThumbSize)) | |
502 { | |
333 | 503 c_options->thumbnails.max_width = thumb_size_list[n].w; |
504 c_options->thumbnails.max_height = thumb_size_list[n].h; | |
9 | 505 } |
506 else if (n > 0) | |
507 { | |
333 | 508 c_options->thumbnails.max_width = options->thumbnails.max_width; |
509 c_options->thumbnails.max_height = options->thumbnails.max_height; | |
9 | 510 } |
511 } | |
512 | |
513 static void add_thumb_size_menu(GtkWidget *table, gint column, gint row, gchar *text) | |
514 { | |
515 GtkWidget *combo; | |
516 gint current; | |
517 gint i; | |
518 | |
333 | 519 c_options->thumbnails.max_width = options->thumbnails.max_width; |
520 c_options->thumbnails.max_height = options->thumbnails.max_height; | |
9 | 521 |
522 pref_table_label(table, column, row, text, 0.0); | |
523 | |
524 combo = gtk_combo_box_new_text(); | |
525 | |
526 current = -1; | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
527 for (i = 0; i < sizeof(thumb_size_list) / sizeof(ThumbSize); i++) |
9 | 528 { |
529 gint w, h; | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
530 gchar *buf; |
9 | 531 |
532 w = thumb_size_list[i].w; | |
533 h = thumb_size_list[i].h; | |
534 | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
535 buf = g_strdup_printf("%d x %d", w, h); |
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
536 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf); |
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
537 g_free(buf); |
442 | 538 |
333 | 539 if (w == options->thumbnails.max_width && h == options->thumbnails.max_height) current = i; |
9 | 540 } |
541 | |
542 if (current == -1) | |
543 { | |
544 gchar *buf; | |
545 | |
333 | 546 buf = g_strdup_printf("%s %d x %d", _("Custom"), options->thumbnails.max_width, options->thumbnails.max_height); |
9 | 547 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf); |
548 g_free(buf); | |
549 | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
550 current = i; |
9 | 551 } |
552 | |
553 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current); | |
554 g_signal_connect(G_OBJECT(combo), "changed", | |
555 G_CALLBACK(thumb_size_menu_cb), NULL); | |
556 | |
557 gtk_table_attach(GTK_TABLE(table), combo, column + 1, column + 2, row, row + 1, | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
558 GTK_EXPAND | GTK_FILL, 0, 0, 0); |
9 | 559 gtk_widget_show(combo); |
560 } | |
561 | |
562 static void filter_store_populate(void) | |
563 { | |
564 GList *work; | |
565 | |
566 if (!filter_store) return; | |
567 | |
568 gtk_list_store_clear(filter_store); | |
569 | |
570 work = filter_get_list(); | |
571 while (work) | |
572 { | |
573 FilterEntry *fe; | |
574 GtkTreeIter iter; | |
575 | |
576 fe = work->data; | |
577 work = work->next; | |
578 | |
579 gtk_list_store_append(filter_store, &iter); | |
580 gtk_list_store_set(filter_store, &iter, 0, fe, -1); | |
581 } | |
582 } | |
583 | |
584 static void filter_store_ext_edit_cb(GtkCellRendererText *cell, gchar *path_str, | |
585 gchar *new_text, gpointer data) | |
586 { | |
587 GtkWidget *model = data; | |
588 FilterEntry *fe = data; | |
589 GtkTreePath *tpath; | |
590 GtkTreeIter iter; | |
591 | |
592 if (!new_text || strlen(new_text) < 1) return; | |
593 | |
594 tpath = gtk_tree_path_new_from_string(path_str); | |
595 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
596 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
597 | |
598 g_free(fe->extensions); | |
599 fe->extensions = g_strdup(new_text); | |
600 | |
601 gtk_tree_path_free(tpath); | |
602 filter_rebuild(); | |
603 } | |
604 | |
605 static void filter_store_desc_edit_cb(GtkCellRendererText *cell, gchar *path_str, | |
606 gchar *new_text, gpointer data) | |
607 { | |
608 GtkWidget *model = data; | |
609 FilterEntry *fe; | |
610 GtkTreePath *tpath; | |
611 GtkTreeIter iter; | |
612 | |
613 if (!new_text || strlen(new_text) < 1) return; | |
614 | |
615 tpath = gtk_tree_path_new_from_string(path_str); | |
616 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
617 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
618 | |
619 g_free(fe->description); | |
620 fe->description = g_strdup(new_text); | |
621 | |
622 gtk_tree_path_free(tpath); | |
623 } | |
624 | |
625 static void filter_store_enable_cb(GtkCellRendererToggle *renderer, | |
626 gchar *path_str, gpointer data) | |
627 { | |
628 GtkWidget *model = data; | |
629 FilterEntry *fe; | |
630 GtkTreePath *tpath; | |
631 GtkTreeIter iter; | |
632 | |
633 tpath = gtk_tree_path_new_from_string(path_str); | |
634 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
635 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
636 | |
637 fe->enabled = !fe->enabled; | |
638 | |
639 gtk_tree_path_free(tpath); | |
640 filter_rebuild(); | |
641 } | |
642 | |
643 static void filter_set_func(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, | |
644 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
645 { | |
646 FilterEntry *fe; | |
647 | |
648 gtk_tree_model_get(tree_model, iter, 0, &fe, -1); | |
649 | |
650 switch(GPOINTER_TO_INT(data)) | |
651 { | |
652 case FE_ENABLE: | |
653 g_object_set(GTK_CELL_RENDERER(cell), | |
654 "active", fe->enabled, NULL); | |
655 break; | |
656 case FE_EXTENSION: | |
657 g_object_set(GTK_CELL_RENDERER(cell), | |
658 "text", fe->extensions, NULL); | |
659 break; | |
660 case FE_DESCRIPTION: | |
661 g_object_set(GTK_CELL_RENDERER(cell), | |
662 "text", fe->description, NULL); | |
663 break; | |
664 } | |
665 } | |
666 | |
667 static void filter_add_cb(GtkWidget *widget, gpointer data) | |
668 { | |
212
c7021159079d
differentiate among normal image, raw image and metadata
nadvornik
parents:
211
diff
changeset
|
669 filter_add_unique("description", ".new", FORMAT_CLASS_IMAGE, TRUE); |
9 | 670 filter_store_populate(); |
671 | |
672 /* FIXME: implement the scroll to/select row stuff for tree view */ | |
673 } | |
674 | |
675 static void filter_remove_cb(GtkWidget *widget, gpointer data) | |
676 { | |
677 GtkWidget *filter_view = data; | |
678 GtkTreeSelection *selection; | |
679 GtkTreeIter iter; | |
680 FilterEntry *fe; | |
681 | |
682 if (!filter_store) return; | |
683 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view)); | |
684 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) return; | |
685 gtk_tree_model_get(GTK_TREE_MODEL(filter_store), &iter, 0, &fe, -1); | |
686 if (!fe) return; | |
687 | |
688 filter_remove_entry(fe); | |
689 filter_rebuild(); | |
690 filter_store_populate(); | |
691 } | |
692 | |
693 static void filter_default_ok_cb(GenericDialog *gd, gpointer data) | |
694 { | |
695 filter_reset(); | |
696 filter_add_defaults(); | |
697 filter_rebuild(); | |
698 filter_store_populate(); | |
699 } | |
700 | |
701 static void dummy_cancel_cb(GenericDialog *gd, gpointer data) | |
702 { | |
703 /* no op, only so cancel button appears */ | |
704 } | |
705 | |
706 static void filter_default_cb(GtkWidget *widget, gpointer data) | |
707 { | |
708 GenericDialog *gd; | |
709 | |
710 gd = generic_dialog_new(_("Reset filters"), | |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
231
diff
changeset
|
711 GQ_WMCLASS, "reset_filter", widget, TRUE, |
9 | 712 dummy_cancel_cb, NULL); |
713 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset filters"), | |
714 _("This will reset the file filters to the defaults.\nContinue?")); | |
715 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, filter_default_ok_cb, TRUE); | |
716 gtk_widget_show(gd->dialog); | |
717 } | |
718 | |
719 static void filter_disable_cb(GtkWidget* widget, gpointer data) | |
720 { | |
721 GtkWidget *frame = data; | |
722 | |
723 gtk_widget_set_sensitive(frame, | |
724 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))); | |
725 } | |
726 | |
727 static void editor_default_ok_cb(GenericDialog *gd, gpointer data) | |
728 { | |
729 gint i; | |
730 | |
731 editor_reset_defaults(); | |
732 if (!configwindow) return; | |
733 | |
283 | 734 for (i = 0; i < GQ_EDITOR_SLOTS; i++) |
9 | 735 { |
283 | 736 if (i < GQ_EDITOR_GENERIC_SLOTS) |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
737 gtk_entry_set_text(GTK_ENTRY(editor_name_entry[i]), |
318 | 738 (options->editor_name[i]) ? options->editor_name[i] : ""); |
9 | 739 gtk_entry_set_text(GTK_ENTRY(editor_command_entry[i]), |
318 | 740 (options->editor_command[i]) ? options->editor_command[i] : ""); |
9 | 741 } |
742 } | |
743 | |
744 static void editor_default_cb(GtkWidget *widget, gpointer data) | |
745 { | |
746 GenericDialog *gd; | |
747 | |
748 gd = generic_dialog_new(_("Reset editors"), | |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
231
diff
changeset
|
749 GQ_WMCLASS, "reset_filter", widget, TRUE, |
9 | 750 dummy_cancel_cb, NULL); |
751 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset editors"), | |
752 _("This will reset the edit commands to the defaults.\nContinue?")); | |
753 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, editor_default_ok_cb, TRUE); | |
754 gtk_widget_show(gd->dialog); | |
755 } | |
756 | |
757 static void editor_help_cb(GtkWidget *widget, gpointer data) | |
758 { | |
759 help_window_show("editors"); | |
760 } | |
761 | |
762 static void safe_delete_view_cb(GtkWidget* widget, gpointer data) | |
763 { | |
764 layout_set_path(NULL, gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry))); | |
765 } | |
766 | |
767 static void safe_delete_clear_ok_cb(GenericDialog *gd, gpointer data) | |
768 { | |
769 file_util_trash_clear(); | |
770 } | |
771 | |
772 static void safe_delete_clear_cb(GtkWidget* widget, gpointer data) | |
773 { | |
774 GenericDialog *gd; | |
775 GtkWidget *entry; | |
776 gd = generic_dialog_new(_("Clear trash"), | |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
231
diff
changeset
|
777 GQ_WMCLASS, "clear_trash", widget, TRUE, |
9 | 778 dummy_cancel_cb, NULL); |
779 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear trash"), | |
780 _("This will remove the trash contents.")); | |
781 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, safe_delete_clear_ok_cb, TRUE); | |
782 entry = gtk_entry_new(); | |
783 GTK_WIDGET_UNSET_FLAGS(entry, GTK_CAN_FOCUS); | |
784 gtk_editable_set_editable(GTK_EDITABLE(entry), FALSE); | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
785 if (options->file_ops.safe_delete_path) gtk_entry_set_text(GTK_ENTRY(entry), options->file_ops.safe_delete_path); |
9 | 786 gtk_box_pack_start(GTK_BOX(gd->vbox), entry, FALSE, FALSE, 0); |
787 gtk_widget_show(entry); | |
788 gtk_widget_show(gd->dialog); | |
789 } | |
790 | |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
791 static void image_overlay_template_view_changed_cb(GtkWidget* widget, gpointer data) |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
792 { |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
793 GtkWidget *pTextView; |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
794 GtkTextBuffer* pTextBuffer; |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
795 GtkTextIter iStart; |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
796 GtkTextIter iEnd; |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
797 |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
798 pTextView = GTK_WIDGET(data); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
799 |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
800 pTextBuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(pTextView)); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
801 gtk_text_buffer_get_start_iter(pTextBuffer, &iStart); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
802 gtk_text_buffer_get_end_iter(pTextBuffer, &iEnd); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
803 |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
804 if (c_options->image_overlay.common.template_string) g_free(c_options->image_overlay.common.template_string); |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
805 c_options->image_overlay.common.template_string = gtk_text_buffer_get_text(pTextBuffer, &iStart, &iEnd, TRUE); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
806 } |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
807 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
808 static void image_overlay_default_template_ok_cb(GenericDialog *gd, gpointer data) |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
809 { |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
810 GtkTextView *text_view = data; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
811 GtkTextBuffer *buffer; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
812 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
813 set_default_image_overlay_template_string(options); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
814 if (!configwindow) return; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
815 |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
816 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view)); |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
817 gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
818 } |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
819 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
820 static void image_overlay_default_template_cb(GtkWidget *widget, gpointer data) |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
821 { |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
822 GenericDialog *gd; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
823 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
824 gd = generic_dialog_new(_("Reset image overlay template string"), |
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
825 GQ_WMCLASS, "reset_image_overlay_template_string", widget, TRUE, |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
826 dummy_cancel_cb, data); |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
827 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset image overlay template string"), |
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
828 _("This will reset the image overlay template string to the default.\nContinue?")); |
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
829 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, image_overlay_default_template_ok_cb, TRUE); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
830 gtk_widget_show(gd->dialog); |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
831 } |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
832 |
625
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
833 static void image_overlay_help_cb(GtkWidget *widget, gpointer data) |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
834 { |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
835 help_window_show("overlay"); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
836 } |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
837 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
838 /* general options tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
839 static void config_tab_general(GtkWidget *notebook) |
9 | 840 { |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
841 GtkWidget *label; |
9 | 842 GtkWidget *hbox; |
843 GtkWidget *vbox; | |
844 GtkWidget *group; | |
845 GtkWidget *subgroup; | |
846 GtkWidget *button; | |
847 GtkWidget *tabcomp; | |
848 GtkWidget *ct_button; | |
849 GtkWidget *table; | |
850 GtkWidget *spin; | |
851 | |
852 vbox = gtk_vbox_new(FALSE, 0); | |
853 gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER); | |
854 gtk_widget_show(vbox); | |
855 label = gtk_label_new(_("General")); | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
856 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label); |
9 | 857 |
858 group = pref_group_new(vbox, FALSE, _("Startup"), GTK_ORIENTATION_VERTICAL); | |
859 | |
860 button = pref_checkbox_new_int(group, _("Change to folder:"), | |
629 | 861 options->startup.restore_path, &c_options->startup.restore_path); |
9 | 862 |
863 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
864 pref_checkbox_link_sensitivity(button, hbox); | |
865 | |
629 | 866 tabcomp = tab_completion_new(&startup_path_entry, options->startup.path, NULL, NULL); |
9 | 867 tab_completion_add_select_button(startup_path_entry, NULL, TRUE); |
868 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0); | |
869 gtk_widget_show(tabcomp); | |
870 | |
871 button = pref_button_new(hbox, NULL, _("Use current"), FALSE, | |
872 G_CALLBACK(startup_path_set_current), NULL); | |
873 | |
874 group = pref_group_new(vbox, FALSE, _("Thumbnails"), GTK_ORIENTATION_VERTICAL); | |
875 | |
876 table = pref_table_new(group, 2, 2, FALSE, FALSE); | |
877 add_thumb_size_menu(table, 0, 0, _("Size:")); | |
333 | 878 add_quality_menu(table, 0, 1, _("Quality:"), options->thumbnails.quality, &c_options->thumbnails.quality); |
9 | 879 |
880 ct_button = pref_checkbox_new_int(group, _("Cache thumbnails"), | |
333 | 881 options->thumbnails.enable_caching, &c_options->thumbnails.enable_caching); |
9 | 882 |
883 subgroup = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
884 pref_checkbox_link_sensitivity(ct_button, subgroup); | |
885 | |
886 button = pref_checkbox_new_int(subgroup, _("Use shared thumbnail cache"), | |
333 | 887 options->thumbnails.spec_standard, &c_options->thumbnails.spec_standard); |
9 | 888 |
889 subgroup = pref_box_new(subgroup, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
890 pref_checkbox_link_sensitivity_swap(button, subgroup); | |
891 | |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
892 pref_checkbox_new_int(subgroup, _("Cache thumbnails into .thumbnails"), |
333 | 893 options->thumbnails.cache_into_dirs, &c_options->thumbnails.cache_into_dirs); |
9 | 894 |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
895 #if 0 |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
896 pref_checkbox_new_int(subgroup, _("Use xvpics thumbnails when found (read only)"), |
333 | 897 options->thumbnails.use_xvpics, &c_options->thumbnails.use_xvpics); |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
898 #endif |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
899 |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
900 pref_checkbox_new_int(group, _("Faster jpeg thumbnailing (may reduce quality)"), |
333 | 901 options->thumbnails.fast, &c_options->thumbnails.fast); |
9 | 902 |
903 group = pref_group_new(vbox, FALSE, _("Slide show"), GTK_ORIENTATION_VERTICAL); | |
904 | |
326 | 905 c_options->slideshow.delay = options->slideshow.delay; |
9 | 906 spin = pref_spin_new(group, _("Delay between image change:"), _("seconds"), |
907 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS, 1.0, 1, | |
326 | 908 options->slideshow.delay ? (double)options->slideshow.delay / SLIDESHOW_SUBSECOND_PRECISION : 10.0, |
9 | 909 G_CALLBACK(slideshow_delay_cb), NULL); |
910 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS); | |
911 | |
326 | 912 pref_checkbox_new_int(group, _("Random"), options->slideshow.random, &c_options->slideshow.random); |
913 pref_checkbox_new_int(group, _("Repeat"), options->slideshow.repeat, &c_options->slideshow.repeat); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
914 } |
9 | 915 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
916 /* image tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
917 static void config_tab_image(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
918 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
919 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
920 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
921 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
922 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
923 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
924 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
925 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
926 GtkWidget *spin; |
9 | 927 |
928 vbox = gtk_vbox_new(FALSE, 0); | |
929 gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER); | |
930 gtk_widget_show(vbox); | |
931 label = gtk_label_new(_("Image")); | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
932 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label); |
9 | 933 |
934 group = pref_group_new(vbox, FALSE, _("Zoom"), GTK_ORIENTATION_VERTICAL); | |
935 | |
936 #if 0 | |
334 | 937 add_dither_menu(dither_quality, &c_options->image.dither_quality, _("Dithering method:"), group); |
9 | 938 #endif |
939 table = pref_table_new(group, 2, 1, FALSE, FALSE); | |
334 | 940 add_quality_menu(table, 0, 0, _("Quality:"), options->image.zoom_quality, &c_options->image.zoom_quality); |
9 | 941 |
942 pref_checkbox_new_int(group, _("Two pass zooming"), | |
334 | 943 options->image.zoom_2pass, &c_options->image.zoom_2pass); |
9 | 944 |
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
26
diff
changeset
|
945 pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"), |
334 | 946 options->image.zoom_to_fit_allow_expand, &c_options->image.zoom_to_fit_allow_expand); |
9 | 947 |
209
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
948 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); |
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
949 ct_button = pref_checkbox_new_int(hbox, _("Limit image size when autofitting (%):"), |
334 | 950 options->image.limit_autofit_size, &c_options->image.limit_autofit_size); |
209
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
951 spin = pref_spin_new_int(hbox, NULL, NULL, |
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
952 10, 150, 1, |
334 | 953 options->image.max_autofit_size, &c_options->image.max_autofit_size); |
209
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
954 pref_checkbox_link_sensitivity(ct_button, spin); |
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
955 |
334 | 956 c_options->image.zoom_increment = options->image.zoom_increment; |
9 | 957 spin = pref_spin_new(group, _("Zoom increment:"), NULL, |
334 | 958 0.1, 4.0, 0.1, 1, (double)options->image.zoom_increment / 10.0, |
9 | 959 G_CALLBACK(zoom_increment_cb), NULL); |
960 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS); | |
961 | |
962 group = pref_group_new(vbox, FALSE, _("When new image is selected:"), GTK_ORIENTATION_VERTICAL); | |
963 | |
334 | 964 c_options->image.zoom_mode = options->image.zoom_mode; |
9 | 965 button = pref_radiobutton_new(group, NULL, _("Zoom to original size"), |
334 | 966 (options->image.zoom_mode == ZOOM_RESET_ORIGINAL), |
9 | 967 G_CALLBACK(zoom_mode_original_cb), NULL); |
968 button = pref_radiobutton_new(group, button, _("Fit image to window"), | |
334 | 969 (options->image.zoom_mode == ZOOM_RESET_FIT_WINDOW), |
9 | 970 G_CALLBACK(zoom_mode_fit_cb), NULL); |
971 button = pref_radiobutton_new(group, button, _("Leave Zoom at previous setting"), | |
334 | 972 (options->image.zoom_mode == ZOOM_RESET_NONE), |
9 | 973 G_CALLBACK(zoom_mode_none_cb), NULL); |
974 | |
975 group = pref_group_new(vbox, FALSE, _("Appearance"), GTK_ORIENTATION_VERTICAL); | |
976 | |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
977 pref_checkbox_new_int(group, _("Custom border color"), |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
978 options->image.use_custom_border_color, &c_options->image.use_custom_border_color); |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
199
diff
changeset
|
979 |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
980 pref_color_button_new(group, _("Border color"), &options->image.border_color, |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
981 G_CALLBACK(pref_color_button_set_cb), &c_options->image.border_color); |
9 | 982 |
983 group = pref_group_new(vbox, FALSE, _("Convenience"), GTK_ORIENTATION_VERTICAL); | |
984 | |
985 pref_checkbox_new_int(group, _("Refresh on file change"), | |
321 | 986 options->update_on_time_change, &c_options->update_on_time_change); |
9 | 987 pref_checkbox_new_int(group, _("Preload next image"), |
334 | 988 options->image.enable_read_ahead, &c_options->image.enable_read_ahead); |
9 | 989 pref_checkbox_new_int(group, _("Auto rotate image using Exif information"), |
334 | 990 options->image.exif_rotate_enable, &c_options->image.exif_rotate_enable); |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
991 } |
9 | 992 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
993 /* windows tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
994 static void config_tab_windows(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
995 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
996 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
997 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
998 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
999 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1000 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1001 GtkWidget *spin; |
9 | 1002 |
1003 vbox = gtk_vbox_new(FALSE, 0); | |
1004 gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER); | |
1005 gtk_widget_show(vbox); | |
1006 label = gtk_label_new(_("Windows")); | |
1007 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label); | |
1008 | |
1009 group = pref_group_new(vbox, FALSE, _("State"), GTK_ORIENTATION_VERTICAL); | |
1010 | |
1011 pref_checkbox_new_int(group, _("Remember window positions"), | |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1012 options->layout.save_window_positions, &c_options->layout.save_window_positions); |
9 | 1013 pref_checkbox_new_int(group, _("Remember tool state (float/hidden)"), |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
1014 options->layout.tools_restore_state, &c_options->layout.tools_restore_state); |
9 | 1015 |
1016 group = pref_group_new(vbox, FALSE, _("Size"), GTK_ORIENTATION_VERTICAL); | |
1017 | |
1018 pref_checkbox_new_int(group, _("Fit window to image when tools are hidden/floating"), | |
334 | 1019 options->image.fit_window_to_image, &c_options->image.fit_window_to_image); |
9 | 1020 |
1021 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
1022 ct_button = pref_checkbox_new_int(hbox, _("Limit size when auto-sizing window (%):"), | |
334 | 1023 options->image.limit_window_size, &c_options->image.limit_window_size); |
9 | 1024 spin = pref_spin_new_int(hbox, NULL, NULL, |
1025 10, 150, 1, | |
334 | 1026 options->image.max_window_size, &c_options->image.max_window_size); |
9 | 1027 pref_checkbox_link_sensitivity(ct_button, spin); |
1028 | |
1029 group = pref_group_new(vbox, FALSE, _("Layout"), GTK_ORIENTATION_VERTICAL); | |
1030 | |
1031 layout_widget = layout_config_new(); | |
327 | 1032 layout_config_set(layout_widget, options->layout.style, options->layout.order); |
9 | 1033 gtk_box_pack_start(GTK_BOX(group), layout_widget, FALSE, FALSE, 0); |
1034 gtk_widget_show(layout_widget); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1035 } |
9 | 1036 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1037 /* filtering tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1038 static void config_tab_filtering(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1039 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1040 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1041 GtkWidget *frame; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1042 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1043 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1044 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1045 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1046 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1047 GtkWidget *scrolled; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1048 GtkWidget *filter_view; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1049 GtkCellRenderer *renderer; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1050 GtkTreeSelection *selection; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1051 GtkTreeViewColumn *column; |
9 | 1052 |
1053 vbox = gtk_vbox_new(FALSE, 0); | |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1054 gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER); |
9 | 1055 gtk_widget_show(vbox); |
1056 label = gtk_label_new(_("Filtering")); | |
1057 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label); | |
1058 | |
1059 group = pref_box_new(vbox, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
1060 | |
356 | 1061 pref_checkbox_new_int(group, _("Show hidden files or folders"), |
1062 options->file_filter.show_hidden_files, &c_options->file_filter.show_hidden_files); | |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
1063 pref_checkbox_new_int(group, _("Show dot directory"), |
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
1064 options->file_filter.show_dot_directory, &c_options->file_filter.show_dot_directory); |
9 | 1065 pref_checkbox_new_int(group, _("Case sensitive sort"), |
329 | 1066 options->file_sort.case_sensitive, &c_options->file_sort.case_sensitive); |
9 | 1067 |
1068 ct_button = pref_checkbox_new_int(group, _("Disable File Filtering"), | |
332 | 1069 options->file_filter.disable, &c_options->file_filter.disable); |
9 | 1070 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1071 |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1072 group = pref_group_new(vbox, FALSE, _("Grouping sidecar extensions"), GTK_ORIENTATION_VERTICAL); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1073 |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1074 sidecar_ext_entry = gtk_entry_new(); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1075 gtk_entry_set_text(GTK_ENTRY(sidecar_ext_entry), sidecar_ext_to_string()); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1076 gtk_box_pack_start(GTK_BOX(group), sidecar_ext_entry, FALSE, FALSE, 0); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1077 gtk_widget_show(sidecar_ext_entry); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1078 |
9 | 1079 group = pref_group_new(vbox, TRUE, _("File types"), GTK_ORIENTATION_VERTICAL); |
1080 | |
1081 frame = pref_group_parent(group); | |
1082 g_signal_connect(G_OBJECT(ct_button), "toggled", | |
1083 G_CALLBACK(filter_disable_cb), frame); | |
332 | 1084 gtk_widget_set_sensitive(frame, !options->file_filter.disable); |
9 | 1085 |
1086 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1087 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1088 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
9 | 1089 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 0); |
1090 gtk_widget_show(scrolled); | |
1091 | |
1092 filter_store = gtk_list_store_new(1, G_TYPE_POINTER); | |
1093 filter_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(filter_store)); | |
1094 g_object_unref(filter_store); | |
1095 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view)); | |
1096 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE); | |
1097 | |
1098 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(filter_view), FALSE); | |
1099 | |
1100 column = gtk_tree_view_column_new(); | |
1101 gtk_tree_view_column_set_title(column, _("Filter")); | |
1102 gtk_tree_view_column_set_resizable(column, TRUE); | |
1103 | |
1104 renderer = gtk_cell_renderer_toggle_new(); | |
1105 g_signal_connect(G_OBJECT(renderer), "toggled", | |
1106 G_CALLBACK(filter_store_enable_cb), filter_store); | |
1107 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1108 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1109 GINT_TO_POINTER(FE_ENABLE), NULL); | |
442 | 1110 |
9 | 1111 renderer = gtk_cell_renderer_text_new(); |
1112 g_signal_connect(G_OBJECT(renderer), "edited", | |
1113 G_CALLBACK(filter_store_ext_edit_cb), filter_store); | |
1114 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1115 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL); | |
1116 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1117 GINT_TO_POINTER(FE_EXTENSION), NULL); | |
1118 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); | |
1119 | |
1120 column = gtk_tree_view_column_new(); | |
1121 gtk_tree_view_column_set_title(column, _("Description")); | |
1122 gtk_tree_view_column_set_resizable(column, TRUE); | |
1123 renderer = gtk_cell_renderer_text_new(); | |
1124 g_signal_connect(G_OBJECT(renderer), "edited", | |
1125 G_CALLBACK(filter_store_desc_edit_cb), filter_store); | |
1126 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL); | |
1127 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1128 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1129 GINT_TO_POINTER(FE_DESCRIPTION), NULL); | |
1130 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); | |
1131 | |
1132 filter_store_populate(); | |
1133 gtk_container_add(GTK_CONTAINER(scrolled), filter_view); | |
1134 gtk_widget_show(filter_view); | |
1135 | |
1136 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1137 | |
1138 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, | |
1139 G_CALLBACK(filter_default_cb), NULL); | |
1140 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1141 gtk_widget_show(button); | |
1142 | |
1143 button = pref_button_new(NULL, GTK_STOCK_REMOVE, NULL, FALSE, | |
1144 G_CALLBACK(filter_remove_cb), filter_view); | |
1145 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1146 gtk_widget_show(button); | |
1147 | |
1148 button = pref_button_new(NULL, GTK_STOCK_ADD, NULL, FALSE, | |
1149 G_CALLBACK(filter_add_cb), NULL); | |
1150 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1151 gtk_widget_show(button); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1152 } |
9 | 1153 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1154 /* editors tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1155 static void config_tab_editors(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1156 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1157 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1158 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1159 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1160 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1161 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1162 gint i; |
9 | 1163 |
1164 vbox = gtk_vbox_new(FALSE, PREF_PAD_GAP); | |
1165 gtk_container_set_border_width(GTK_CONTAINER(vbox), PREF_PAD_BORDER); | |
1166 gtk_widget_show(vbox); | |
1167 label = gtk_label_new(_("Editors")); | |
1168 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox, label); | |
1169 | |
1170 table = pref_table_new(vbox, 3, 9, FALSE, FALSE); | |
1171 gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP); | |
1172 | |
1173 label = pref_table_label(table, 0, 0, _("#"), 1.0); | |
1174 pref_label_bold(label, TRUE, FALSE); | |
1175 | |
1176 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0); | |
1177 pref_label_bold(label, TRUE, FALSE); | |
1178 | |
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
26
diff
changeset
|
1179 label = pref_table_label(table, 2, 0, _("Command Line"), 0.0); |
9 | 1180 pref_label_bold(label, TRUE, FALSE); |
1181 | |
283 | 1182 for (i = 0; i < GQ_EDITOR_SLOTS; i++) |
9 | 1183 { |
224 | 1184 GtkWidget *entry; |
9 | 1185 |
283 | 1186 if (i < GQ_EDITOR_GENERIC_SLOTS) |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1187 { |
224 | 1188 gchar *buf; |
442 | 1189 |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1190 buf = g_strdup_printf("%d", i+1); |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1191 pref_table_label(table, 0, i+1, buf, 1.0); |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1192 g_free(buf); |
224 | 1193 entry = gtk_entry_new(); |
1194 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH); | |
1195 gtk_widget_set_size_request(entry, 80, -1); | |
318 | 1196 if (options->editor_name[i]) |
1197 gtk_entry_set_text(GTK_ENTRY(entry), options->editor_name[i]); | |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1198 } |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1199 else |
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1200 { |
318 | 1201 entry = gtk_label_new(options->editor_name[i]); |
225
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
1202 gtk_misc_set_alignment(GTK_MISC(entry), 0.0, 0.5); |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
1203 } |
442 | 1204 |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1205 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i+1, i+2, |
225
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
1206 GTK_FILL | GTK_SHRINK, 0, 0, 0); |
224 | 1207 gtk_widget_show(entry); |
1208 editor_name_entry[i] = entry; | |
9 | 1209 |
224 | 1210 entry = gtk_entry_new(); |
1211 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_COMMAND_MAX_LENGTH); | |
1212 gtk_widget_set_size_request(entry, 160, -1); | |
1213 tab_completion_add_to_entry(entry, NULL, NULL); | |
318 | 1214 if (options->editor_command[i]) |
1215 gtk_entry_set_text(GTK_ENTRY(entry), options->editor_command[i]); | |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1216 gtk_table_attach(GTK_TABLE(table), entry, 2, 3, i+1, i+2, |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1217 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
224 | 1218 gtk_widget_show(entry); |
1219 editor_command_entry[i] = entry; | |
9 | 1220 } |
1221 | |
1222 hbox = pref_box_new(vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1223 | |
1224 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, | |
1225 G_CALLBACK(editor_default_cb), NULL); | |
1226 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1227 gtk_widget_show(button); | |
1228 | |
1229 button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE, | |
1230 G_CALLBACK(editor_help_cb), NULL); | |
1231 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1232 gtk_widget_show(button); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1233 } |
9 | 1234 |
256
088b335f2d67
Rename exif preferences tab to "Properties", and name the
zas_
parents:
254
diff
changeset
|
1235 /* properties tab */ |
088b335f2d67
Rename exif preferences tab to "Properties", and name the
zas_
parents:
254
diff
changeset
|
1236 static void config_tab_properties(GtkWidget *notebook) |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1237 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1238 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1239 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1240 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1241 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1242 GtkWidget *scrolled; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1243 GtkWidget *viewport; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1244 gint i; |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1245 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1246 scrolled = gtk_scrolled_window_new(NULL, NULL); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1247 gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1248 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1249 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1250 |
256
088b335f2d67
Rename exif preferences tab to "Properties", and name the
zas_
parents:
254
diff
changeset
|
1251 label = gtk_label_new(_("Properties")); |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1252 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1253 gtk_widget_show(scrolled); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1254 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1255 viewport = gtk_viewport_new(NULL, NULL); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1256 gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1257 gtk_container_add(GTK_CONTAINER(scrolled), viewport); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1258 gtk_widget_show(viewport); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1259 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1260 vbox = gtk_vbox_new(FALSE, 0); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1261 gtk_container_add(GTK_CONTAINER(viewport), vbox); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1262 gtk_widget_show(vbox); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1263 |
442 | 1264 group = pref_group_new(vbox, FALSE, _("Exif"), |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1265 GTK_ORIENTATION_VERTICAL); |
442 | 1266 |
1267 | |
257
c5422b69b40e
Re-add "What to show in properties dialog:" label before the table.
zas_
parents:
256
diff
changeset
|
1268 pref_spacer(group, PREF_PAD_INDENT - PREF_PAD_SPACE); |
c5422b69b40e
Re-add "What to show in properties dialog:" label before the table.
zas_
parents:
256
diff
changeset
|
1269 label = pref_label_new(group, _("What to show in properties dialog:")); |
c5422b69b40e
Re-add "What to show in properties dialog:" label before the table.
zas_
parents:
256
diff
changeset
|
1270 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); |
c5422b69b40e
Re-add "What to show in properties dialog:" label before the table.
zas_
parents:
256
diff
changeset
|
1271 |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1272 table = pref_table_new(group, 2, 2, FALSE, FALSE); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1273 |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1274 for (i = 0; ExifUIList[i].key; i++) |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1275 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1276 const gchar *title; |
442 | 1277 |
1278 title = exif_get_description_by_key(ExifUIList[i].key); | |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1279 exif_item(table, 0, i, title, ExifUIList[i].current, |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1280 &ExifUIList[i].temp); |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1281 } |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1282 } |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1283 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1284 /* advanced entry tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1285 static void config_tab_advanced(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1286 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1287 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1288 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1289 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1290 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1291 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1292 GtkWidget *tabcomp; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1293 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1294 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1295 GtkWidget *spin; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1296 GtkWidget *scrolled; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1297 GtkWidget *viewport; |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1298 GtkWidget *image_overlay_template_view; |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1299 GtkTextBuffer *buffer; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1300 gint i; |
9 | 1301 |
1302 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1303 gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER); | |
1304 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
1305 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); | |
1306 label = gtk_label_new(_("Advanced")); | |
1307 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label); | |
1308 gtk_widget_show(scrolled); | |
1309 | |
1310 viewport = gtk_viewport_new(NULL, NULL); | |
1311 gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE); | |
1312 gtk_container_add(GTK_CONTAINER(scrolled), viewport); | |
1313 gtk_widget_show(viewport); | |
1314 | |
1315 vbox = gtk_vbox_new(FALSE, 0); | |
1316 gtk_container_add(GTK_CONTAINER(viewport), vbox); | |
1317 gtk_widget_show(vbox); | |
1318 | |
1319 group = pref_group_new(vbox, FALSE, _("Full screen"), GTK_ORIENTATION_VERTICAL); | |
1320 | |
322 | 1321 c_options->fullscreen.screen = options->fullscreen.screen; |
1322 c_options->fullscreen.above = options->fullscreen.above; | |
1323 hbox = fullscreen_prefs_selection_new(_("Location:"), &c_options->fullscreen.screen, &c_options->fullscreen.above); | |
9 | 1324 gtk_box_pack_start(GTK_BOX(group), hbox, FALSE, FALSE, 0); |
1325 gtk_widget_show(hbox); | |
1326 | |
1327 pref_checkbox_new_int(group, _("Smooth image flip"), | |
322 | 1328 options->fullscreen.clean_flip, &c_options->fullscreen.clean_flip); |
9 | 1329 pref_checkbox_new_int(group, _("Disable screen saver"), |
322 | 1330 options->fullscreen.disable_saver, &c_options->fullscreen.disable_saver); |
625
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1331 |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1332 |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1333 group = pref_group_new(vbox, FALSE, _("Overlay Screen Display"), GTK_ORIENTATION_VERTICAL); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1334 |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1335 pref_checkbox_new_int(group, _("Always show image overlay at startup"), |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1336 options->image_overlay.common.show_at_startup, &c_options->image_overlay.common.show_at_startup); |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1337 pref_label_new(group, _("Image overlay template")); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1338 |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1339 scrolled = gtk_scrolled_window_new(NULL, NULL); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1340 gtk_widget_set_size_request(scrolled, 200, 150); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1341 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1342 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1343 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1344 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 5); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1345 gtk_widget_show(scrolled); |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1346 |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1347 image_overlay_template_view = gtk_text_view_new(); |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
257
diff
changeset
|
1348 |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
257
diff
changeset
|
1349 #if GTK_CHECK_VERSION(2,12,0) |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1350 gtk_widget_set_tooltip_markup(image_overlay_template_view, |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1351 _("<i>%name%</i> results in the filename of the picture.\n" |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1352 "Also available: <i>%collection%</i>, <i>%number%</i>, <i>%total%</i>, <i>%date%</i>,\n" |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1353 "<i>%size%</i> (filesize), <i>%width%</i>, <i>%height%</i>, <i>%res%</i> (resolution)\n" |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
520
diff
changeset
|
1354 "To access exif data use the exif name, e. g. <i>%formatted.Camera%</i> is the formatted camera name,\n" |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1355 "<i>%Exif.Photo.DateTimeOriginal%</i> the date of the original shot.\n" |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
520
diff
changeset
|
1356 "<i>%formatted.Camera:20</i> notation will truncate the displayed data to 20 characters and will add 3 dots at the end to denote the truncation.\n" |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1357 "If two or more variables are connected with the |-sign, it prints available variables with a separator.\n" |
566
db08ccd54169
Change the prefix of formatted exif tags to a more explicit "formatted." prefix
zas_
parents:
520
diff
changeset
|
1358 "<i>%formatted.ShutterSpeed%</i>|<i>%formatted.ISOSpeedRating%</i>|<i>%formatted.FocalLength%</i> could show \"1/20s - 400 - 80 mm\" or \"1/200 - 80 mm\",\n" |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1359 "if there's no ISO information in the Exif data.\n" |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1360 "If a line is empty, it is removed. This allows to add lines that totally disappear when no data is available.\n" |
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1361 )); |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
257
diff
changeset
|
1362 #endif |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1363 gtk_container_add(GTK_CONTAINER(scrolled), image_overlay_template_view); |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1364 gtk_widget_show(image_overlay_template_view); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1365 |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1366 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1367 |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1368 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
1369 G_CALLBACK(image_overlay_default_template_cb), image_overlay_template_view); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1370 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1371 gtk_widget_show(button); |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
1372 |
625
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1373 button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE, |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1374 G_CALLBACK(image_overlay_help_cb), NULL); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1375 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1376 gtk_widget_show(button); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
1377 |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1378 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(image_overlay_template_view)); |
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1379 if (options->image_overlay.common.template_string) gtk_text_buffer_set_text(buffer, options->image_overlay.common.template_string, -1); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1380 g_signal_connect(G_OBJECT(buffer), "changed", |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
1381 G_CALLBACK(image_overlay_template_view_changed_cb), image_overlay_template_view); |
218
f4a0555794a9
Customizable info overlay in fullscreen, based on the patch posted to gqview-devel list by Timo on 2007-09-10.
zas_
parents:
212
diff
changeset
|
1382 |
9 | 1383 group = pref_group_new(vbox, FALSE, _("Delete"), GTK_ORIENTATION_VERTICAL); |
1384 | |
1385 pref_checkbox_new_int(group, _("Confirm file delete"), | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1386 options->file_ops.confirm_delete, &c_options->file_ops.confirm_delete); |
9 | 1387 pref_checkbox_new_int(group, _("Enable Delete key"), |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1388 options->file_ops.enable_delete_key, &c_options->file_ops.enable_delete_key); |
9 | 1389 |
1390 ct_button = pref_checkbox_new_int(group, _("Safe delete"), | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1391 options->file_ops.safe_delete_enable, &c_options->file_ops.safe_delete_enable); |
9 | 1392 |
1393 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
1394 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1395 | |
1396 pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_SPACE); | |
1397 pref_label_new(hbox, _("Folder:")); | |
1398 | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1399 tabcomp = tab_completion_new(&safe_delete_path_entry, options->file_ops.safe_delete_path, NULL, NULL); |
9 | 1400 tab_completion_add_select_button(safe_delete_path_entry, NULL, TRUE); |
1401 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0); | |
1402 gtk_widget_show(tabcomp); | |
1403 | |
1404 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1405 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1406 | |
1407 pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_GAP); | |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
222
diff
changeset
|
1408 spin = pref_spin_new_int(hbox, _("Maximum size:"), _("MB"), |
442 | 1409 0, 2048, 1, options->file_ops.safe_delete_folder_maxsize, &c_options->file_ops.safe_delete_folder_maxsize); |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
257
diff
changeset
|
1410 #if GTK_CHECK_VERSION(2,12,0) |
223
73efc1ba150f
Setting no limit size to trash directory is now possible using zero as value.
zas_
parents:
222
diff
changeset
|
1411 gtk_widget_set_tooltip_markup(spin, _("Set to 0 for unlimited size")); |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
257
diff
changeset
|
1412 #endif |
9 | 1413 button = pref_button_new(NULL, NULL, _("View"), FALSE, |
1414 G_CALLBACK(safe_delete_view_cb), NULL); | |
1415 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1416 gtk_widget_show(button); | |
1417 | |
1418 button = pref_button_new(NULL, GTK_STOCK_CLEAR, NULL, FALSE, | |
1419 G_CALLBACK(safe_delete_clear_cb), NULL); | |
1420 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1421 gtk_widget_show(button); | |
1422 | |
497 | 1423 |
9 | 1424 group = pref_group_new(vbox, FALSE, _("Behavior"), GTK_ORIENTATION_VERTICAL); |
1425 | |
1426 pref_checkbox_new_int(group, _("Rectangular selection in icon view"), | |
330 | 1427 options->collections.rectangular_selection, &c_options->collections.rectangular_selection); |
9 | 1428 |
1429 pref_checkbox_new_int(group, _("Descend folders in tree view"), | |
321 | 1430 options->tree_descend_subdirs, &c_options->tree_descend_subdirs); |
9 | 1431 |
1432 pref_checkbox_new_int(group, _("In place renaming"), | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1433 options->file_ops.enable_in_place_rename, &c_options->file_ops.enable_in_place_rename); |
9 | 1434 |
497 | 1435 pref_checkbox_new_int(group, _("Show \"Copy path\" menu item which write the path of selected files to clipboard"), |
1436 options->show_copy_path, &c_options->show_copy_path); | |
1437 | |
441
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
1438 pref_spin_new_int(group, _("Open recent list maximum size"), NULL, |
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
1439 1, 50, 1, options->open_recent_list_maxsize, &c_options->open_recent_list_maxsize); |
458
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
446
diff
changeset
|
1440 |
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
446
diff
changeset
|
1441 pref_spin_new_int(group, _("Drag'n drop icon size"), NULL, |
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
446
diff
changeset
|
1442 16, 256, 16, options->dnd_icon_size, &c_options->dnd_icon_size); |
441
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
1443 |
9 | 1444 group = pref_group_new(vbox, FALSE, _("Navigation"), GTK_ORIENTATION_VERTICAL); |
1445 | |
1446 pref_checkbox_new_int(group, _("Progressive keyboard scrolling"), | |
321 | 1447 options->progressive_key_scrolling, &c_options->progressive_key_scrolling); |
9 | 1448 pref_checkbox_new_int(group, _("Mouse wheel scrolls image"), |
321 | 1449 options->mousewheel_scrolls, &c_options->mousewheel_scrolls); |
9 | 1450 |
1451 group = pref_group_new(vbox, FALSE, _("Miscellaneous"), GTK_ORIENTATION_VERTICAL); | |
1452 | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
1453 pref_checkbox_new_int(group, _("Store metadata and cache files in source image's directory"), |
321 | 1454 options->enable_metadata_dirs, &c_options->enable_metadata_dirs); |
9 | 1455 |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
1456 pref_checkbox_new_int(group, _("Store keywords and comments as XMP tags in image files"), |
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
1457 options->save_metadata_in_image_file, &c_options->save_metadata_in_image_file); |
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
1458 |
9 | 1459 pref_spin_new_int(group, _("Custom similarity threshold:"), NULL, |
342
07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents:
341
diff
changeset
|
1460 0, 100, 1, options->duplicates_similarity_threshold, &c_options->duplicates_similarity_threshold); |
9 | 1461 |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1462 group = pref_group_new(vbox, FALSE, _("Image loading and caching"), GTK_ORIENTATION_VERTICAL); |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1463 |
9 | 1464 pref_spin_new_int(group, _("Offscreen cache size (Mb per image):"), NULL, |
334 | 1465 0, 128, 1, options->image.tile_cache_max, &c_options->image.tile_cache_max); |
442 | 1466 |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1467 pref_spin_new_int(group, _("Image read buffer size (bytes):"), NULL, |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1468 IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX, 512, |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1469 options->image.read_buffer_size, &c_options->image.read_buffer_size); |
442 | 1470 |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1471 pref_spin_new_int(group, _("Image idle loop read count:"), NULL, |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1472 IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX, 1, |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1473 options->image.idle_read_loop_count, &c_options->image.idle_read_loop_count); |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
410
diff
changeset
|
1474 |
9 | 1475 |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1476 group = pref_group_new(vbox, FALSE, _("Color profiles"), GTK_ORIENTATION_VERTICAL); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1477 #ifndef HAVE_LCMS |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1478 gtk_widget_set_sensitive(pref_group_parent(group), FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1479 #endif |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1480 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1481 table = pref_table_new(group, 3, COLOR_PROFILE_INPUTS + 2, FALSE, FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1482 gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1483 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1484 label = pref_table_label(table, 0, 0, _("Type"), 0.0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1485 pref_label_bold(label, TRUE, FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1486 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1487 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1488 pref_label_bold(label, TRUE, FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1489 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1490 label = pref_table_label(table, 2, 0, _("File"), 0.0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1491 pref_label_bold(label, TRUE, FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1492 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1493 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1494 { |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1495 GtkWidget *entry; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1496 gchar *buf; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1497 |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
413
diff
changeset
|
1498 buf = g_strdup_printf("Input %d:", i + COLOR_PROFILE_FILE); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1499 pref_table_label(table, 0, i + 1, buf, 1.0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1500 g_free(buf); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1501 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1502 entry = gtk_entry_new(); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1503 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1504 gtk_widget_set_size_request(editor_name_entry[i], 30, -1); |
327 | 1505 if (options->color_profile.input_name[i]) |
320 | 1506 { |
327 | 1507 gtk_entry_set_text(GTK_ENTRY(entry), options->color_profile.input_name[i]); |
320 | 1508 } |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1509 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i + 1, i + 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1510 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1511 gtk_widget_show(entry); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1512 color_profile_input_name_entry[i] = entry; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1513 |
327 | 1514 tabcomp = tab_completion_new(&entry, options->color_profile.input_file[i], NULL, NULL); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1515 tab_completion_add_select_button(entry, _("Select color profile"), FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1516 gtk_widget_set_size_request(entry, 160, -1); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1517 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, i + 1, i + 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1518 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1519 gtk_widget_show(tabcomp); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1520 color_profile_input_file_entry[i] = entry; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1521 } |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1522 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1523 pref_table_label(table, 0, COLOR_PROFILE_INPUTS + 1, _("Screen:"), 1.0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1524 tabcomp = tab_completion_new(&color_profile_screen_file_entry, |
327 | 1525 options->color_profile.screen_file, NULL, NULL); |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1526 tab_completion_add_select_button(color_profile_screen_file_entry, _("Select color profile"), FALSE); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1527 gtk_widget_set_size_request(color_profile_screen_file_entry, 160, -1); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1528 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1529 COLOR_PROFILE_INPUTS + 1, COLOR_PROFILE_INPUTS + 2, |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1530 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1531 gtk_widget_show(tabcomp); |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1532 |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1533 #ifdef DEBUG |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1534 group = pref_group_new(vbox, FALSE, _("Debugging"), GTK_ORIENTATION_VERTICAL); |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1535 |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1536 pref_spin_new_int(group, _("Debug level:"), NULL, |
507 | 1537 DEBUG_LEVEL_MIN, DEBUG_LEVEL_MAX, 1, get_debug_level(), &debug_c); |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1538 #endif |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1539 } |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1540 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1541 /* Main preferences window */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1542 static void config_window_create(void) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1543 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1544 GtkWidget *win_vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1545 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1546 GtkWidget *notebook; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1547 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1548 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1549 |
321 | 1550 if (!c_options) c_options = init_options(NULL); |
318 | 1551 |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
1552 configwindow = window_new(GTK_WINDOW_TOPLEVEL, "preferences", PIXBUF_INLINE_ICON_CONFIG, NULL, _("Preferences")); |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1553 gtk_window_set_type_hint(GTK_WINDOW(configwindow), GDK_WINDOW_TYPE_HINT_DIALOG); |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1554 g_signal_connect(G_OBJECT(configwindow), "delete_event", |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1555 G_CALLBACK(config_window_delete), NULL); |
442 | 1556 gtk_window_set_default_size(GTK_WINDOW(configwindow), CONFIG_WINDOW_DEF_WIDTH, CONFIG_WINDOW_DEF_HEIGHT); |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1557 gtk_window_set_resizable(GTK_WINDOW(configwindow), TRUE); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1558 gtk_container_set_border_width(GTK_CONTAINER(configwindow), PREF_PAD_BORDER); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1559 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1560 win_vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1561 gtk_container_add(GTK_CONTAINER(configwindow), win_vbox); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1562 gtk_widget_show(win_vbox); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1563 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1564 hbox = gtk_hbutton_box_new(); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1565 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1566 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1567 gtk_box_pack_end(GTK_BOX(win_vbox), hbox, FALSE, FALSE, 0); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1568 gtk_widget_show(hbox); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1569 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1570 button = pref_button_new(NULL, GTK_STOCK_OK, NULL, FALSE, |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1571 G_CALLBACK(config_window_ok_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1572 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1573 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1574 gtk_widget_grab_default(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1575 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1576 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1577 ct_button = button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1578 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1579 button = pref_button_new(NULL, GTK_STOCK_APPLY, NULL, FALSE, |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1580 G_CALLBACK(config_window_apply_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1581 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1582 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1583 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1584 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1585 button = pref_button_new(NULL, GTK_STOCK_CANCEL, NULL, FALSE, |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1586 G_CALLBACK(config_window_close_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1587 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1588 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1589 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1590 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1591 if (!generic_dialog_get_alternative_button_order(configwindow)) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1592 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1593 gtk_box_reorder_child(GTK_BOX(hbox), ct_button, -1); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1594 } |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1595 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1596 notebook = gtk_notebook_new(); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
1597 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook), GTK_POS_TOP); |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1598 gtk_box_pack_start(GTK_BOX(win_vbox), notebook, TRUE, TRUE, 0); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1599 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1600 config_tab_general(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1601 config_tab_image(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1602 config_tab_windows(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1603 config_tab_filtering(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1604 config_tab_editors(notebook); |
256
088b335f2d67
Rename exif preferences tab to "Properties", and name the
zas_
parents:
254
diff
changeset
|
1605 config_tab_properties(notebook); |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1606 config_tab_advanced(notebook); |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1607 |
9 | 1608 gtk_widget_show(notebook); |
1609 | |
1610 gtk_widget_show(configwindow); | |
1611 } | |
1612 | |
1613 /* | |
1614 *----------------------------------------------------------------------------- | |
1615 * config window show (public) | |
1616 *----------------------------------------------------------------------------- | |
442 | 1617 */ |
9 | 1618 |
1619 void show_config_window(void) | |
1620 { | |
1621 if (configwindow) | |
1622 { | |
1623 gtk_window_present(GTK_WINDOW(configwindow)); | |
1624 return; | |
1625 } | |
1626 | |
1627 config_window_create(); | |
1628 } | |
1629 | |
1630 /* | |
1631 *----------------- | |
1632 * about window | |
1633 *----------------- | |
1634 */ | |
1635 | |
1636 static GtkWidget *about = NULL; | |
1637 | |
1638 static gint about_delete_cb(GtkWidget *widget, GdkEventAny *event, gpointer data) | |
1639 { | |
1640 gtk_widget_destroy(about); | |
1641 about = NULL; | |
1642 | |
1643 return TRUE; | |
1644 } | |
1645 | |
1646 static void about_window_close(GtkWidget *widget, gpointer data) | |
1647 { | |
1648 if (!about) return; | |
1649 | |
1650 gtk_widget_destroy(about); | |
1651 about = NULL; | |
1652 } | |
1653 | |
1654 static void about_credits_cb(GtkWidget *widget, gpointer data) | |
1655 { | |
1656 help_window_show("credits"); | |
1657 } | |
1658 | |
1659 void show_about_window(void) | |
1660 { | |
1661 GtkWidget *vbox; | |
1662 GtkWidget *hbox; | |
1663 GtkWidget *label; | |
1664 GtkWidget *button; | |
1665 GdkPixbuf *pixbuf; | |
1666 | |
1667 gchar *buf; | |
1668 | |
1669 if (about) | |
1670 { | |
1671 gtk_window_present(GTK_WINDOW(about)); | |
1672 return; | |
1673 } | |
1674 | |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
1675 about = window_new(GTK_WINDOW_TOPLEVEL, "about", NULL, NULL, _("About")); |
9 | 1676 gtk_window_set_type_hint(GTK_WINDOW(about), GDK_WINDOW_TYPE_HINT_DIALOG); |
1677 g_signal_connect(G_OBJECT(about), "delete_event", | |
1678 G_CALLBACK(about_delete_cb), NULL); | |
1679 | |
1680 gtk_container_set_border_width(GTK_CONTAINER(about), PREF_PAD_BORDER); | |
1681 | |
1682 vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); | |
1683 gtk_container_add(GTK_CONTAINER(about), vbox); | |
1684 gtk_widget_show(vbox); | |
1685 | |
1686 pixbuf = pixbuf_inline(PIXBUF_INLINE_LOGO); | |
1687 button = gtk_image_new_from_pixbuf(pixbuf); | |
1688 g_object_unref(pixbuf); | |
1689 gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0); | |
1690 gtk_widget_show(button); | |
1691 | |
475 | 1692 buf = g_strdup_printf(_("%s %s\n\nCopyright (c) 2006 John Ellis\nCopyright (c) %s The Geeqie Team\nwebsite: %s\nemail: %s\n\nReleased under the GNU General Public License"), |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1693 GQ_APPNAME, |
9 | 1694 VERSION, |
475 | 1695 "2008", |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1696 GQ_WEBSITE, |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
1697 GQ_EMAIL_ADDRESS); |
9 | 1698 label = gtk_label_new(buf); |
1699 g_free(buf); | |
1700 | |
1701 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER); | |
1702 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); | |
1703 gtk_widget_show(label); | |
1704 | |
1705 hbox = gtk_hbutton_box_new(); | |
1706 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); | |
1707 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP); | |
1708 gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
1709 gtk_widget_show(hbox); | |
1710 | |
1711 button = pref_button_new(NULL, NULL, _("Credits..."), FALSE, | |
1712 G_CALLBACK(about_credits_cb), NULL); | |
1713 gtk_container_add(GTK_CONTAINER(hbox), button); | |
1714 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
1715 gtk_widget_show(button); | |
1716 | |
1717 button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE, | |
1718 G_CALLBACK(about_window_close), NULL); | |
1719 gtk_container_add(GTK_CONTAINER(hbox), button); | |
1720 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
1721 gtk_widget_grab_default(button); | |
1722 gtk_widget_show(button); | |
1723 | |
1724 gtk_widget_show(about); | |
1725 } |