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