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