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