Mercurial > geeqie.yaz
annotate src/preferences.c @ 1625:922d7508febd
Change the order of columns for editors dialogue
author | mow |
---|---|
date | Thu, 04 Jun 2009 16:07:16 +0000 |
parents | b70603e03eb6 |
children | 56115e934133 |
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 |
1284 | 4 * Copyright (C) 2008 - 2009 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" |
1600 | 18 #include "cache.h" |
9 | 19 #include "cache_maint.h" |
20 #include "editors.h" | |
648
e34c1002e553
Move some functions from main.[ch] to new window.[ch].
zas_
parents:
630
diff
changeset
|
21 #include "exif.h" |
586 | 22 #include "filedata.h" |
23 #include "filefilter.h" | |
9 | 24 #include "fullscreen.h" |
26
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
25 #include "image.h" |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
26 #include "image-overlay.h" |
426
9fe0ca1b5263
show the AdobeRGB profile in the menu, indicate input profile from image
nadvornik
parents:
413
diff
changeset
|
27 #include "color-man.h" |
9 | 28 #include "img-view.h" |
29 #include "layout_config.h" | |
30 #include "layout_util.h" | |
31 #include "pixbuf_util.h" | |
32 #include "slideshow.h" | |
597 | 33 #include "trash.h" |
9 | 34 #include "utilops.h" |
35 #include "ui_fileops.h" | |
36 #include "ui_misc.h" | |
37 #include "ui_tabcomp.h" | |
38 #include "ui_utildlg.h" | |
648
e34c1002e553
Move some functions from main.[ch] to new window.[ch].
zas_
parents:
630
diff
changeset
|
39 #include "window.h" |
9 | 40 |
41 #include <math.h> | |
42 | |
43 | |
44 #define EDITOR_NAME_MAX_LENGTH 32 | |
45 #define EDITOR_COMMAND_MAX_LENGTH 1024 | |
46 | |
47 | |
48 typedef struct _ThumbSize ThumbSize; | |
49 struct _ThumbSize | |
50 { | |
51 gint w; | |
52 gint h; | |
53 }; | |
54 | |
55 static ThumbSize thumb_size_list[] = | |
56 { | |
57 { 24, 24 }, | |
58 { 32, 32 }, | |
59 { 48, 48 }, | |
60 { 64, 64 }, | |
61 { 96, 72 }, | |
62 { 96, 96 }, | |
63 { 128, 96 }, | |
64 { 128, 128 }, | |
65 { 160, 120 }, | |
66 { 160, 160 }, | |
67 { 192, 144 }, | |
68 { 192, 192 }, | |
69 { 256, 192 }, | |
70 { 256, 256 } | |
71 }; | |
72 | |
73 enum { | |
74 FE_ENABLE, | |
75 FE_EXTENSION, | |
1216 | 76 FE_DESCRIPTION, |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
77 FE_CLASS, |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
78 FE_WRITABLE, |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
79 FE_ALLOW_SIDECAR |
9 | 80 }; |
81 | |
1601 | 82 enum { |
83 AE_ACTION, | |
84 AE_KEY, | |
85 AE_TOOLTIP, | |
86 AE_ACCEL | |
87 }; | |
1216 | 88 |
89 static gchar *format_class_list[] = { | |
90 N_("Unknown"), | |
91 N_("Image"), | |
92 N_("RAW Image"), | |
93 N_("Metadata") | |
94 }; | |
95 | |
9 | 96 /* config memory values */ |
321 | 97 static ConfOptions *c_options = NULL; |
9 | 98 |
99 | |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
100 #ifdef DEBUG |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
101 static gint debug_c; |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
102 #endif |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
103 |
9 | 104 static GtkWidget *configwindow = NULL; |
105 static GtkListStore *filter_store = NULL; | |
1601 | 106 static GtkTreeStore *accel_store = NULL; |
9 | 107 |
108 static GtkWidget *safe_delete_path_entry; | |
109 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
110 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
|
111 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
|
112 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
|
113 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
114 static GtkWidget *sidecar_ext_entry; |
225
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
115 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
116 |
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
117 #define CONFIG_WINDOW_DEF_WIDTH 700 |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
118 #define CONFIG_WINDOW_DEF_HEIGHT 600 |
225
649f7cb544e0
Make the preferences window resizeable, and try to improve
zas_
parents:
224
diff
changeset
|
119 |
9 | 120 /* |
121 *----------------------------------------------------------------------------- | |
122 * option widget callbacks (private) | |
123 *----------------------------------------------------------------------------- | |
442 | 124 */ |
9 | 125 |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
126 static void zoom_mode_cb(GtkWidget *widget, gpointer data) |
9 | 127 { |
128 if (GTK_TOGGLE_BUTTON (widget)->active) | |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
129 c_options->image.zoom_mode = GPOINTER_TO_INT(data); |
9 | 130 } |
131 | |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
132 static void scroll_reset_cb(GtkWidget *widget, gpointer data) |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
133 { |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
134 if (GTK_TOGGLE_BUTTON (widget)->active) |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
135 c_options->image.scroll_reset_method = GPOINTER_TO_INT(data); |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
136 } |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
137 |
9 | 138 static void zoom_increment_cb(GtkWidget *spin, gpointer data) |
139 { | |
334 | 140 c_options->image.zoom_increment = (gint)(gtk_spin_button_get_value(GTK_SPIN_BUTTON(spin)) * 10.0 + 0.01); |
9 | 141 } |
142 | |
143 static void slideshow_delay_cb(GtkWidget *spin, gpointer data) | |
144 { | |
326 | 145 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
|
146 (gdouble)SLIDESHOW_SUBSECOND_PRECISION + 0.01); |
9 | 147 } |
148 | |
149 /* | |
150 *----------------------------------------------------------------------------- | |
151 * sync progam to config window routine (private) | |
152 *----------------------------------------------------------------------------- | |
442 | 153 */ |
9 | 154 |
1436
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1400
diff
changeset
|
155 void config_entry_to_option(GtkWidget *entry, gchar **option, gchar *(*func)(const gchar *)) |
9 | 156 { |
157 const gchar *buf; | |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
158 |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
159 g_free(*option); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
160 *option = NULL; |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
161 buf = gtk_entry_get_text(GTK_ENTRY(entry)); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
162 if (buf && strlen(buf) > 0) |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
163 { |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
164 if (func) |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
165 *option = func(buf); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
166 else |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
167 *option = g_strdup(buf); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
168 } |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
169 } |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
170 |
1272 | 171 #if 0 |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
172 static void config_parse_editor_entries(GtkWidget **editor_name_entry, GtkWidget **editor_command_entry) |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
173 { |
9 | 174 gint i; |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
175 const gchar *buf; |
670 | 176 GString *errmsg = g_string_new(""); |
177 | |
517 | 178 for (i = 0; i < GQ_EDITOR_SLOTS; i++) |
9 | 179 { |
768
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
180 gchar *command = NULL; |
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
181 |
283 | 182 if (i < GQ_EDITOR_GENERIC_SLOTS) |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
183 { |
768
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
184 gchar *name = NULL; |
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
185 |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
186 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
|
187 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
|
188 editor_set_name(i, name); |
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
189 g_free(name); |
134
9009856628f7
started implementation of external commands; external Delete should work
nadvornik
parents:
113
diff
changeset
|
190 } |
9 | 191 |
192 buf = gtk_entry_get_text(GTK_ENTRY(editor_command_entry[i])); | |
670 | 193 if (buf && strlen(buf) > 0) |
194 { | |
195 gint flags = editor_command_parse(buf, NULL, NULL); | |
196 | |
1400
67573155210c
Add helper macros EDITOR_ERRORS() and EDITOR_ERRORS_BUT_SKIPPED() to clean up the code a bit. Minor tidy up.
zas_
parents:
1353
diff
changeset
|
197 if (EDITOR_ERRORS(flags)) |
670 | 198 { |
199 if (errmsg->str[0]) g_string_append(errmsg, "\n\n"); | |
200 g_string_append_printf(errmsg, _("%s\n#%d \"%s\":\n%s"), editor_get_error_str(flags), | |
730 | 201 i+1, options->editor[i].name, buf); |
670 | 202 |
203 } | |
768
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
204 command = g_strdup(buf); |
670 | 205 } |
768
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
206 |
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
207 editor_set_command(i, command); |
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
736
diff
changeset
|
208 g_free(command); |
9 | 209 } |
670 | 210 |
211 if (errmsg->str[0]) | |
212 { | |
213 file_util_warning_dialog(_("Invalid editor command"), errmsg->str, GTK_STOCK_DIALOG_ERROR, NULL); | |
214 } | |
215 | |
216 g_string_free(errmsg, TRUE); | |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
217 } |
1272 | 218 #endif |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
219 |
1601 | 220 static gboolean accel_apply_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) |
221 { | |
222 gchar *accel_path, *accel; | |
223 | |
224 gtk_tree_model_get(model, iter, AE_ACCEL, &accel_path, AE_KEY, &accel, -1); | |
225 | |
226 if (accel_path && accel_path[0]) | |
227 { | |
228 GtkAccelKey key; | |
229 gtk_accelerator_parse(accel, &key.accel_key, &key.accel_mods); | |
230 gtk_accel_map_change_entry(accel_path, key.accel_key, key.accel_mods, TRUE); | |
231 } | |
232 | |
233 g_free(accel_path); | |
234 g_free(accel); | |
235 | |
236 return FALSE; | |
237 } | |
238 | |
239 | |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
240 static void config_window_apply(void) |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
241 { |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
242 gint i; |
1437 | 243 gboolean refresh = FALSE; |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
244 |
1272 | 245 // config_parse_editor_entries(editor_name_entry, editor_command_entry); |
246 // layout_edit_update_all(); | |
9 | 247 |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
248 config_entry_to_option(safe_delete_path_entry, &options->file_ops.safe_delete_path, remove_trailing_slash); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
249 |
356 | 250 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
|
251 if (options->file_filter.show_dot_directory != c_options->file_filter.show_dot_directory) refresh = TRUE; |
329 | 252 if (options->file_sort.case_sensitive != c_options->file_sort.case_sensitive) refresh = TRUE; |
332 | 253 if (options->file_filter.disable != c_options->file_filter.disable) refresh = TRUE; |
9 | 254 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
255 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
|
256 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
|
257 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
|
258 options->file_ops.safe_delete_folder_maxsize = c_options->file_ops.safe_delete_folder_maxsize; |
1436
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1400
diff
changeset
|
259 options->tools_restore_state = c_options->tools_restore_state; |
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1400
diff
changeset
|
260 options->save_window_positions = c_options->save_window_positions; |
334 | 261 options->image.zoom_mode = c_options->image.zoom_mode; |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
262 options->image.scroll_reset_method = c_options->image.scroll_reset_method; |
334 | 263 options->image.zoom_2pass = c_options->image.zoom_2pass; |
264 options->image.fit_window_to_image = c_options->image.fit_window_to_image; | |
265 options->image.limit_window_size = c_options->image.limit_window_size; | |
266 options->image.zoom_to_fit_allow_expand = c_options->image.zoom_to_fit_allow_expand; | |
267 options->image.max_window_size = c_options->image.max_window_size; | |
268 options->image.limit_autofit_size = c_options->image.limit_autofit_size; | |
269 options->image.max_autofit_size = c_options->image.max_autofit_size; | |
321 | 270 options->progressive_key_scrolling = c_options->progressive_key_scrolling; |
1506
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
271 if (options->thumbnails.max_width != c_options->thumbnails.max_width |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
272 || options->thumbnails.max_height != c_options->thumbnails.max_height |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
273 || options->thumbnails.quality != c_options->thumbnails.quality) |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
274 { |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
275 thumb_format_changed = TRUE; |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
276 refresh = TRUE; |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
277 options->thumbnails.max_width = c_options->thumbnails.max_width; |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
278 options->thumbnails.max_height = c_options->thumbnails.max_height; |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
279 options->thumbnails.quality = c_options->thumbnails.quality; |
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1443
diff
changeset
|
280 } |
333 | 281 options->thumbnails.enable_caching = c_options->thumbnails.enable_caching; |
282 options->thumbnails.cache_into_dirs = c_options->thumbnails.cache_into_dirs; | |
1060 | 283 options->thumbnails.use_exif = c_options->thumbnails.use_exif; |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
284 #if 0 |
333 | 285 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
|
286 #endif |
333 | 287 options->thumbnails.spec_standard = c_options->thumbnails.spec_standard; |
1208 | 288 options->metadata.enable_metadata_dirs = c_options->metadata.enable_metadata_dirs; |
356 | 289 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
|
290 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
|
291 |
329 | 292 options->file_sort.case_sensitive = c_options->file_sort.case_sensitive; |
332 | 293 options->file_filter.disable = c_options->file_filter.disable; |
9 | 294 |
1229
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1216
diff
changeset
|
295 config_entry_to_option(sidecar_ext_entry, &options->sidecar.ext, NULL); |
1327 | 296 sidecar_ext_parse(options->sidecar.ext); |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
297 |
326 | 298 options->slideshow.random = c_options->slideshow.random; |
299 options->slideshow.repeat = c_options->slideshow.repeat; | |
300 options->slideshow.delay = c_options->slideshow.delay; | |
9 | 301 |
321 | 302 options->mousewheel_scrolls = c_options->mousewheel_scrolls; |
9 | 303 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
304 options->file_ops.enable_in_place_rename = c_options->file_ops.enable_in_place_rename; |
9 | 305 |
330 | 306 options->collections.rectangular_selection = c_options->collections.rectangular_selection; |
9 | 307 |
334 | 308 options->image.tile_cache_max = c_options->image.tile_cache_max; |
848 | 309 options->image.image_cache_max = c_options->image.image_cache_max; |
442 | 310 |
334 | 311 options->image.zoom_quality = c_options->image.zoom_quality; |
9 | 312 |
334 | 313 options->image.zoom_increment = c_options->image.zoom_increment; |
9 | 314 |
334 | 315 options->image.enable_read_ahead = c_options->image.enable_read_ahead; |
9 | 316 |
1622
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
317 |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
318 if (options->image.use_custom_border_color != c_options->image.use_custom_border_color |
1622
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
319 || options->image.custom_border_fullscreen_only != c_options->image.custom_border_fullscreen_only |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
320 || !gdk_color_equal(&options->image.border_color, &c_options->image.border_color)) |
9 | 321 { |
1622
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
322 options->image.custom_border_fullscreen_only = c_options->image.custom_border_fullscreen_only; |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
323 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
|
324 options->image.border_color = c_options->image.border_color; |
9 | 325 layout_colors_update(); |
326 view_window_colors_update(); | |
327 } | |
328 | |
322 | 329 options->fullscreen.screen = c_options->fullscreen.screen; |
330 options->fullscreen.clean_flip = c_options->fullscreen.clean_flip; | |
331 options->fullscreen.disable_saver = c_options->fullscreen.disable_saver; | |
332 options->fullscreen.above = c_options->fullscreen.above; | |
1336 | 333 if (c_options->image_overlay.template_string) |
334 set_image_overlay_template_string(&options->image_overlay.template_string, | |
335 c_options->image_overlay.template_string); | |
733
57f759d012c7
Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents:
730
diff
changeset
|
336 |
321 | 337 options->update_on_time_change = c_options->update_on_time_change; |
334 | 338 options->image.exif_rotate_enable = c_options->image.exif_rotate_enable; |
9 | 339 |
342
07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents:
341
diff
changeset
|
340 options->duplicates_similarity_threshold = c_options->duplicates_similarity_threshold; |
9 | 341 |
321 | 342 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
|
343 |
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
344 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
|
345 options->dnd_icon_size = c_options->dnd_icon_size; |
497 | 346 |
1208 | 347 options->metadata.save_in_image_file = c_options->metadata.save_in_image_file; |
1213 | 348 options->metadata.save_legacy_IPTC = c_options->metadata.save_legacy_IPTC; |
349 options->metadata.warn_on_write_problems = c_options->metadata.warn_on_write_problems; | |
350 options->metadata.save_legacy_format = c_options->metadata.save_legacy_format; | |
351 options->metadata.sync_grouped_files = c_options->metadata.sync_grouped_files; | |
352 options->metadata.confirm_write = c_options->metadata.confirm_write; | |
353 options->metadata.confirm_timeout = c_options->metadata.confirm_timeout; | |
1244 | 354 options->metadata.confirm_after_timeout = c_options->metadata.confirm_after_timeout; |
1213 | 355 options->metadata.confirm_on_image_change = c_options->metadata.confirm_on_image_change; |
356 options->metadata.confirm_on_dir_change = c_options->metadata.confirm_on_dir_change; | |
1592
69abb57139f0
use "keywords" instead of "tags" in option name, it is more consistent
nadvornik
parents:
1587
diff
changeset
|
357 options->metadata.keywords_case_sensitive = c_options->metadata.keywords_case_sensitive; |
1567
c776b1310ca6
added an option to write image orientation to the metadata
nadvornik
parents:
1548
diff
changeset
|
358 options->metadata.write_orientation = c_options->metadata.write_orientation; |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
586
diff
changeset
|
359 |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
360 #ifdef DEBUG |
507 | 361 set_debug_level(debug_c); |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
362 #endif |
9 | 363 |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
364 #ifdef HAVE_LCMS |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
365 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
|
366 { |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
367 config_entry_to_option(color_profile_input_name_entry[i], &options->color_profile.input_name[i], NULL); |
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
368 config_entry_to_option(color_profile_input_file_entry[i], &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
|
369 } |
1042
e59a9c96d290
Shorten config_window_apply() a bit, reduce code redunancy.
zas_
parents:
1039
diff
changeset
|
370 config_entry_to_option(color_profile_screen_file_entry, &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
|
371 #endif |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
372 |
1353 | 373 #if 0 |
520 | 374 for (i = 0; ExifUIList[i].key; i++) |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
375 { |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
376 ExifUIList[i].current = ExifUIList[i].temp; |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
377 } |
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
378 |
1353 | 379 #endif |
26
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
380 image_options_sync(); |
acd9885ebd78
Mon Mar 28 20:23:34 2005 John Ellis <johne@verizon.net>
gqview
parents:
15
diff
changeset
|
381 |
9 | 382 if (refresh) |
383 { | |
384 filter_rebuild(); | |
385 layout_refresh(NULL); | |
386 } | |
1601 | 387 |
388 if (accel_store) gtk_tree_model_foreach(GTK_TREE_MODEL(accel_store), accel_apply_cb, NULL); | |
9 | 389 } |
390 | |
391 /* | |
392 *----------------------------------------------------------------------------- | |
393 * config window main button callbacks (private) | |
394 *----------------------------------------------------------------------------- | |
442 | 395 */ |
9 | 396 |
397 static void config_window_close_cb(GtkWidget *widget, gpointer data) | |
398 { | |
399 gtk_widget_destroy(configwindow); | |
400 configwindow = NULL; | |
401 filter_store = NULL; | |
402 } | |
403 | |
1443 | 404 static gboolean config_window_delete(GtkWidget *widget, GdkEventAny *event, gpointer data) |
9 | 405 { |
406 config_window_close_cb(NULL, NULL); | |
407 return TRUE; | |
408 } | |
409 | |
410 static void config_window_ok_cb(GtkWidget *widget, gpointer data) | |
411 { | |
412 config_window_apply(); | |
413 config_window_close_cb(NULL, NULL); | |
414 } | |
415 | |
416 static void config_window_apply_cb(GtkWidget *widget, gpointer data) | |
417 { | |
418 config_window_apply(); | |
419 } | |
420 | |
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
|
421 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
|
422 { |
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 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
|
424 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
|
425 } |
c92e5a5c3bfa
Add a Save button to Preferences dialog, which allow to save options to file without quitting the application.
zas_
parents:
1001
diff
changeset
|
426 |
9 | 427 /* |
428 *----------------------------------------------------------------------------- | |
429 * config window setup (private) | |
430 *----------------------------------------------------------------------------- | |
442 | 431 */ |
9 | 432 |
433 static void quality_menu_cb(GtkWidget *combo, gpointer data) | |
434 { | |
435 gint *option = data; | |
436 | |
437 switch (gtk_combo_box_get_active(GTK_COMBO_BOX(combo))) | |
438 { | |
439 case 0: | |
440 default: | |
441 *option = GDK_INTERP_NEAREST; | |
442 break; | |
443 case 1: | |
444 *option = GDK_INTERP_TILES; | |
445 break; | |
446 case 2: | |
447 *option = GDK_INTERP_BILINEAR; | |
448 break; | |
449 case 3: | |
450 *option = GDK_INTERP_HYPER; | |
451 break; | |
452 } | |
453 } | |
454 | |
455 static void add_quality_menu(GtkWidget *table, gint column, gint row, const gchar *text, | |
1188 | 456 guint option, guint *option_c) |
9 | 457 { |
458 GtkWidget *combo; | |
459 gint current = 0; | |
460 | |
461 *option_c = option; | |
462 | |
463 pref_table_label(table, column, row, text, 0.0); | |
464 | |
465 combo = gtk_combo_box_new_text(); | |
466 | |
467 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Nearest (worst, but fastest)")); | |
468 if (option == GDK_INTERP_NEAREST) current = 0; | |
469 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Tiles")); | |
470 if (option == GDK_INTERP_TILES) current = 1; | |
471 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Bilinear")); | |
472 if (option == GDK_INTERP_BILINEAR) current = 2; | |
473 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), _("Hyper (best, but slowest)")); | |
474 if (option == GDK_INTERP_HYPER) current = 3; | |
475 | |
476 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current); | |
477 | |
478 g_signal_connect(G_OBJECT(combo), "changed", | |
479 G_CALLBACK(quality_menu_cb), option_c); | |
480 | |
481 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
|
482 GTK_EXPAND | GTK_FILL, 0, 0, 0); |
9 | 483 gtk_widget_show(combo); |
484 } | |
485 | |
486 #if 0 | |
487 static void add_dither_menu(gint option, gint *option_c, gchar *text, GtkWidget *box) | |
488 { | |
489 GtkWidget *hbox; | |
490 GtkWidget *omenu; | |
491 GtkWidget *menu; | |
492 | |
493 *option_c = option; | |
494 | |
495 hbox = pref_box_new(box, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
496 pref_label_new(hbox, text); | |
497 | |
498 omenu = gtk_option_menu_new(); | |
499 menu = gtk_menu_new(); | |
500 | |
501 add_menu_item(menu, _("None"), option_c, (gint)GDK_RGB_DITHER_NONE); | |
502 add_menu_item(menu, _("Normal"), option_c, (gint)GDK_RGB_DITHER_NORMAL); | |
503 add_menu_item(menu, _("Best"), option_c, (gint)GDK_RGB_DITHER_MAX); | |
504 | |
505 gtk_option_menu_set_menu(GTK_OPTION_MENU(omenu), menu); | |
506 gtk_option_menu_set_history(GTK_OPTION_MENU(omenu), *option_c); | |
507 | |
508 gtk_box_pack_start(GTK_BOX(hbox), omenu, FALSE, FALSE, 0); | |
509 gtk_widget_show(omenu); | |
510 } | |
511 #endif | |
512 | |
513 static void thumb_size_menu_cb(GtkWidget *combo, gpointer data) | |
514 { | |
515 gint n; | |
516 | |
517 n = gtk_combo_box_get_active(GTK_COMBO_BOX(combo)); | |
736 | 518 if (n < 0) return; |
9 | 519 |
736 | 520 if ((guint) n < sizeof(thumb_size_list) / sizeof(ThumbSize)) |
9 | 521 { |
333 | 522 c_options->thumbnails.max_width = thumb_size_list[n].w; |
523 c_options->thumbnails.max_height = thumb_size_list[n].h; | |
9 | 524 } |
736 | 525 else |
9 | 526 { |
333 | 527 c_options->thumbnails.max_width = options->thumbnails.max_width; |
528 c_options->thumbnails.max_height = options->thumbnails.max_height; | |
9 | 529 } |
530 } | |
531 | |
532 static void add_thumb_size_menu(GtkWidget *table, gint column, gint row, gchar *text) | |
533 { | |
534 GtkWidget *combo; | |
535 gint current; | |
536 gint i; | |
537 | |
333 | 538 c_options->thumbnails.max_width = options->thumbnails.max_width; |
539 c_options->thumbnails.max_height = options->thumbnails.max_height; | |
9 | 540 |
541 pref_table_label(table, column, row, text, 0.0); | |
542 | |
543 combo = gtk_combo_box_new_text(); | |
544 | |
545 current = -1; | |
736 | 546 for (i = 0; (guint) i < sizeof(thumb_size_list) / sizeof(ThumbSize); i++) |
9 | 547 { |
548 gint w, h; | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
549 gchar *buf; |
9 | 550 |
551 w = thumb_size_list[i].w; | |
552 h = thumb_size_list[i].h; | |
553 | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
554 buf = g_strdup_printf("%d x %d", w, h); |
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
555 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
|
556 g_free(buf); |
442 | 557 |
333 | 558 if (w == options->thumbnails.max_width && h == options->thumbnails.max_height) current = i; |
9 | 559 } |
560 | |
561 if (current == -1) | |
562 { | |
563 gchar *buf; | |
564 | |
333 | 565 buf = g_strdup_printf("%s %d x %d", _("Custom"), options->thumbnails.max_width, options->thumbnails.max_height); |
9 | 566 gtk_combo_box_append_text(GTK_COMBO_BOX(combo), buf); |
567 g_free(buf); | |
568 | |
226
3c89da4aef95
Fix and simplify thumbnails size combo box related code.
zas_
parents:
225
diff
changeset
|
569 current = i; |
9 | 570 } |
571 | |
572 gtk_combo_box_set_active(GTK_COMBO_BOX(combo), current); | |
573 g_signal_connect(G_OBJECT(combo), "changed", | |
574 G_CALLBACK(thumb_size_menu_cb), NULL); | |
575 | |
576 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
|
577 GTK_EXPAND | GTK_FILL, 0, 0, 0); |
9 | 578 gtk_widget_show(combo); |
579 } | |
580 | |
581 static void filter_store_populate(void) | |
582 { | |
583 GList *work; | |
584 | |
585 if (!filter_store) return; | |
586 | |
587 gtk_list_store_clear(filter_store); | |
588 | |
589 work = filter_get_list(); | |
590 while (work) | |
591 { | |
592 FilterEntry *fe; | |
593 GtkTreeIter iter; | |
594 | |
595 fe = work->data; | |
596 work = work->next; | |
597 | |
598 gtk_list_store_append(filter_store, &iter); | |
599 gtk_list_store_set(filter_store, &iter, 0, fe, -1); | |
600 } | |
601 } | |
602 | |
603 static void filter_store_ext_edit_cb(GtkCellRendererText *cell, gchar *path_str, | |
604 gchar *new_text, gpointer data) | |
605 { | |
606 GtkWidget *model = data; | |
607 FilterEntry *fe = data; | |
608 GtkTreePath *tpath; | |
609 GtkTreeIter iter; | |
610 | |
611 if (!new_text || strlen(new_text) < 1) return; | |
612 | |
613 tpath = gtk_tree_path_new_from_string(path_str); | |
614 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
615 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
616 | |
617 g_free(fe->extensions); | |
618 fe->extensions = g_strdup(new_text); | |
619 | |
620 gtk_tree_path_free(tpath); | |
621 filter_rebuild(); | |
622 } | |
623 | |
1216 | 624 static void filter_store_class_edit_cb(GtkCellRendererText *cell, gchar *path_str, |
1443 | 625 gchar *new_text, gpointer data) |
1216 | 626 { |
627 GtkWidget *model = data; | |
628 FilterEntry *fe = data; | |
629 GtkTreePath *tpath; | |
630 GtkTreeIter iter; | |
631 gint i; | |
632 | |
1443 | 633 if (!new_text || !new_text[0]) return; |
1216 | 634 |
635 tpath = gtk_tree_path_new_from_string(path_str); | |
636 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
637 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
638 | |
639 for (i = 0; i < FILE_FORMAT_CLASSES; i++) | |
640 { | |
641 if (strcmp(new_text, _(format_class_list[i])) == 0) | |
642 { | |
643 fe->file_class = i; | |
644 break; | |
645 } | |
646 } | |
647 | |
648 gtk_tree_path_free(tpath); | |
649 filter_rebuild(); | |
650 } | |
651 | |
9 | 652 static void filter_store_desc_edit_cb(GtkCellRendererText *cell, gchar *path_str, |
653 gchar *new_text, gpointer data) | |
654 { | |
655 GtkWidget *model = data; | |
656 FilterEntry *fe; | |
657 GtkTreePath *tpath; | |
658 GtkTreeIter iter; | |
659 | |
1443 | 660 if (!new_text || !new_text[0]) return; |
9 | 661 |
662 tpath = gtk_tree_path_new_from_string(path_str); | |
663 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
664 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
665 | |
666 g_free(fe->description); | |
667 fe->description = g_strdup(new_text); | |
668 | |
669 gtk_tree_path_free(tpath); | |
670 } | |
671 | |
672 static void filter_store_enable_cb(GtkCellRendererToggle *renderer, | |
673 gchar *path_str, gpointer data) | |
674 { | |
675 GtkWidget *model = data; | |
676 FilterEntry *fe; | |
677 GtkTreePath *tpath; | |
678 GtkTreeIter iter; | |
679 | |
680 tpath = gtk_tree_path_new_from_string(path_str); | |
681 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); | |
682 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); | |
683 | |
684 fe->enabled = !fe->enabled; | |
685 | |
686 gtk_tree_path_free(tpath); | |
687 filter_rebuild(); | |
688 } | |
689 | |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
690 static void filter_store_writable_cb(GtkCellRendererToggle *renderer, |
1443 | 691 gchar *path_str, gpointer data) |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
692 { |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
693 GtkWidget *model = data; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
694 FilterEntry *fe; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
695 GtkTreePath *tpath; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
696 GtkTreeIter iter; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
697 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
698 tpath = gtk_tree_path_new_from_string(path_str); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
699 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
700 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
701 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
702 fe->writable = !fe->writable; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
703 if (fe->writable) fe->allow_sidecar = FALSE; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
704 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
705 gtk_tree_path_free(tpath); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
706 filter_rebuild(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
707 } |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
708 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
709 static void filter_store_sidecar_cb(GtkCellRendererToggle *renderer, |
1443 | 710 gchar *path_str, gpointer data) |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
711 { |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
712 GtkWidget *model = data; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
713 FilterEntry *fe; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
714 GtkTreePath *tpath; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
715 GtkTreeIter iter; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
716 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
717 tpath = gtk_tree_path_new_from_string(path_str); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
718 gtk_tree_model_get_iter(GTK_TREE_MODEL(model), &iter, tpath); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
719 gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, 0, &fe, -1); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
720 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
721 fe->allow_sidecar = !fe->allow_sidecar; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
722 if (fe->allow_sidecar) fe->writable = FALSE; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
723 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
724 gtk_tree_path_free(tpath); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
725 filter_rebuild(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
726 } |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
727 |
9 | 728 static void filter_set_func(GtkTreeViewColumn *tree_column, GtkCellRenderer *cell, |
729 GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) | |
730 { | |
731 FilterEntry *fe; | |
732 | |
733 gtk_tree_model_get(tree_model, iter, 0, &fe, -1); | |
734 | |
1347
79937bc55f3a
Add missing space between switch and first parenthesis.
zas_
parents:
1346
diff
changeset
|
735 switch (GPOINTER_TO_INT(data)) |
9 | 736 { |
737 case FE_ENABLE: | |
738 g_object_set(GTK_CELL_RENDERER(cell), | |
739 "active", fe->enabled, NULL); | |
740 break; | |
741 case FE_EXTENSION: | |
742 g_object_set(GTK_CELL_RENDERER(cell), | |
743 "text", fe->extensions, NULL); | |
744 break; | |
745 case FE_DESCRIPTION: | |
746 g_object_set(GTK_CELL_RENDERER(cell), | |
747 "text", fe->description, NULL); | |
748 break; | |
1216 | 749 case FE_CLASS: |
750 g_object_set(GTK_CELL_RENDERER(cell), | |
751 "text", _(format_class_list[fe->file_class]), NULL); | |
752 break; | |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
753 case FE_WRITABLE: |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
754 g_object_set(GTK_CELL_RENDERER(cell), |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
755 "active", fe->writable, NULL); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
756 break; |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
757 case FE_ALLOW_SIDECAR: |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
758 g_object_set(GTK_CELL_RENDERER(cell), |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
759 "active", fe->allow_sidecar, NULL); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
760 break; |
9 | 761 } |
762 } | |
763 | |
764 static void filter_add_cb(GtkWidget *widget, gpointer data) | |
765 { | |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
766 filter_add_unique("description", ".new", FORMAT_CLASS_IMAGE, TRUE, FALSE, TRUE); |
9 | 767 filter_store_populate(); |
768 | |
769 /* FIXME: implement the scroll to/select row stuff for tree view */ | |
770 } | |
771 | |
772 static void filter_remove_cb(GtkWidget *widget, gpointer data) | |
773 { | |
774 GtkWidget *filter_view = data; | |
775 GtkTreeSelection *selection; | |
776 GtkTreeIter iter; | |
777 FilterEntry *fe; | |
778 | |
779 if (!filter_store) return; | |
995 | 780 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view)); |
9 | 781 if (!gtk_tree_selection_get_selected(selection, NULL, &iter)) return; |
782 gtk_tree_model_get(GTK_TREE_MODEL(filter_store), &iter, 0, &fe, -1); | |
783 if (!fe) return; | |
784 | |
785 filter_remove_entry(fe); | |
786 filter_rebuild(); | |
787 filter_store_populate(); | |
788 } | |
789 | |
790 static void filter_default_ok_cb(GenericDialog *gd, gpointer data) | |
791 { | |
792 filter_reset(); | |
793 filter_add_defaults(); | |
794 filter_rebuild(); | |
795 filter_store_populate(); | |
796 } | |
797 | |
798 static void dummy_cancel_cb(GenericDialog *gd, gpointer data) | |
799 { | |
800 /* no op, only so cancel button appears */ | |
801 } | |
802 | |
803 static void filter_default_cb(GtkWidget *widget, gpointer data) | |
804 { | |
805 GenericDialog *gd; | |
806 | |
807 gd = generic_dialog_new(_("Reset filters"), | |
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1060
diff
changeset
|
808 "reset_filter", widget, TRUE, |
9 | 809 dummy_cancel_cb, NULL); |
810 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Reset filters"), | |
811 _("This will reset the file filters to the defaults.\nContinue?")); | |
812 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, filter_default_ok_cb, TRUE); | |
813 gtk_widget_show(gd->dialog); | |
814 } | |
815 | |
1001 | 816 static void filter_disable_cb(GtkWidget *widget, gpointer data) |
9 | 817 { |
818 GtkWidget *frame = data; | |
819 | |
820 gtk_widget_set_sensitive(frame, | |
821 !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))); | |
822 } | |
823 | |
1001 | 824 static void safe_delete_view_cb(GtkWidget *widget, gpointer data) |
9 | 825 { |
826 layout_set_path(NULL, gtk_entry_get_text(GTK_ENTRY(safe_delete_path_entry))); | |
827 } | |
828 | |
829 static void safe_delete_clear_ok_cb(GenericDialog *gd, gpointer data) | |
830 { | |
831 file_util_trash_clear(); | |
832 } | |
833 | |
1001 | 834 static void safe_delete_clear_cb(GtkWidget *widget, gpointer data) |
9 | 835 { |
836 GenericDialog *gd; | |
837 GtkWidget *entry; | |
838 gd = generic_dialog_new(_("Clear trash"), | |
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1060
diff
changeset
|
839 "clear_trash", widget, TRUE, |
9 | 840 dummy_cancel_cb, NULL); |
841 generic_dialog_add_message(gd, GTK_STOCK_DIALOG_QUESTION, _("Clear trash"), | |
842 _("This will remove the trash contents.")); | |
843 generic_dialog_add_button(gd, GTK_STOCK_OK, NULL, safe_delete_clear_ok_cb, TRUE); | |
844 entry = gtk_entry_new(); | |
845 GTK_WIDGET_UNSET_FLAGS(entry, GTK_CAN_FOCUS); | |
846 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
|
847 if (options->file_ops.safe_delete_path) gtk_entry_set_text(GTK_ENTRY(entry), options->file_ops.safe_delete_path); |
9 | 848 gtk_box_pack_start(GTK_BOX(gd->vbox), entry, FALSE, FALSE, 0); |
849 gtk_widget_show(entry); | |
850 gtk_widget_show(gd->dialog); | |
851 } | |
852 | |
1001 | 853 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
|
854 { |
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 GtkWidget *pTextView; |
1001 | 856 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
|
857 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
|
858 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
|
859 |
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
|
860 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
|
861 |
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
|
862 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
|
863 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
|
864 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
|
865 |
1336 | 866 set_image_overlay_template_string(&c_options->image_overlay.template_string, |
733
57f759d012c7
Modify set_default_image_overlay_template_string() to accept the pointer to
zas_
parents:
730
diff
changeset
|
867 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
|
868 } |
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
|
869 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
870 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
|
871 { |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
872 GtkTextView *text_view = data; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
873 GtkTextBuffer *buffer; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
874 |
1336 | 875 set_default_image_overlay_template_string(&options->image_overlay.template_string); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
876 if (!configwindow) return; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
877 |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
878 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_view)); |
1336 | 879 gtk_text_buffer_set_text(buffer, options->image_overlay.template_string, -1); |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
880 } |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
881 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
882 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
|
883 { |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
884 GenericDialog *gd; |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
885 |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
886 gd = generic_dialog_new(_("Reset image overlay template string"), |
1174
0bea79d87065
Drop useless wmclass stuff. Gtk will take care of it and as said in the documentation using gtk_window_set_wmclass() is sort of pointless.
zas_
parents:
1060
diff
changeset
|
887 "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
|
888 dummy_cancel_cb, data); |
469
a05c72927e23
Rename few functions and replace fullscreen info with image overlay template string.
zas_
parents:
468
diff
changeset
|
889 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
|
890 _("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
|
891 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
|
892 gtk_widget_show(gd->dialog); |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
893 } |
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
894 |
625
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
895 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
|
896 { |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
897 help_window_show("overlay"); |
076e6f7e9ecb
Add an help button to OSD info configuration in Preferences dialog.
zas_
parents:
597
diff
changeset
|
898 } |
354
5c82855feba7
Add a button to reset fullscreen info string to default value.
zas_
parents:
342
diff
changeset
|
899 |
1604 | 900 #if GTK_CHECK_VERSION(2, 10, 0) |
1601 | 901 static void accel_store_populate(void) |
902 { | |
903 LayoutWindow *lw; | |
904 GList *groups, *actions; | |
905 GtkAction *action; | |
906 const gchar *accel_path; | |
907 GtkAccelKey key; | |
908 GtkTreeIter iter; | |
909 | |
910 if (!accel_store || !layout_window_list || !layout_window_list->data) return; | |
911 | |
912 gtk_tree_store_clear(accel_store); | |
913 lw = layout_window_list->data; /* get the actions from the first window, it should not matter, they should be the same in all windows */ | |
914 | |
915 g_assert(lw && lw->ui_manager); | |
916 groups = gtk_ui_manager_get_action_groups(lw->ui_manager); | |
917 while (groups) | |
918 { | |
919 actions = gtk_action_group_list_actions(GTK_ACTION_GROUP(groups->data)); | |
920 while (actions) | |
921 { | |
922 action = GTK_ACTION(actions->data); | |
923 accel_path = gtk_action_get_accel_path(action); | |
924 if (accel_path && gtk_accel_map_lookup_entry(accel_path, &key)) | |
925 { | |
926 gchar *label, *label2, *tooltip, *accel; | |
927 g_object_get(action, | |
928 "tooltip", &tooltip, | |
929 "label", &label, | |
930 NULL); | |
931 | |
932 if (pango_parse_markup(label, -1, '_', NULL, &label2, NULL, NULL) && label2) | |
933 { | |
934 g_free(label); | |
935 label = label2; | |
936 } | |
937 | |
938 accel = gtk_accelerator_name(key.accel_key, key.accel_mods); | |
1624
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
939 |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
940 if (tooltip) |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
941 { |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
942 gtk_tree_store_append(accel_store, &iter, NULL); |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
943 gtk_tree_store_set(accel_store, &iter, |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
944 AE_ACTION, label, |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
945 AE_KEY, accel, |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
946 AE_TOOLTIP, tooltip ? tooltip : "", |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
947 AE_ACCEL, accel_path, |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
948 -1); |
b70603e03eb6
do not display menus ("FileMenu" etc.) in accelerator configuration
nadvornik
parents:
1622
diff
changeset
|
949 } |
1601 | 950 |
951 g_free(accel); | |
952 g_free(label); | |
953 g_free(tooltip); | |
954 } | |
955 actions = actions->next; | |
956 } | |
957 | |
958 groups = groups->next; | |
959 } | |
960 } | |
961 | |
962 static void accel_store_cleared_cb(GtkCellRendererAccel *accel, gchar *path_string, gpointer user_data) | |
963 { | |
964 | |
965 } | |
966 | |
967 static gboolean accel_remove_key_cb(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) | |
968 { | |
969 gchar *accel1 = data; | |
970 gchar *accel2; | |
971 GtkAccelKey key1; | |
972 GtkAccelKey key2; | |
973 | |
974 gtk_tree_model_get(model, iter, AE_KEY, &accel2, -1); | |
975 | |
976 gtk_accelerator_parse(accel1, &key1.accel_key, &key1.accel_mods); | |
977 gtk_accelerator_parse(accel2, &key2.accel_key, &key2.accel_mods); | |
978 | |
979 if (key1.accel_key == key2.accel_key && key1.accel_mods == key2.accel_mods) | |
980 { | |
981 gtk_tree_store_set(accel_store, iter, AE_KEY, "", -1); | |
982 DEBUG_1("accelerator key '%s' is already used, removing.", accel1); | |
983 } | |
984 | |
985 g_free(accel2); | |
986 | |
987 return FALSE; | |
988 } | |
989 | |
990 | |
991 static void accel_store_edited_cb(GtkCellRendererAccel *accel, gchar *path_string, guint accel_key, GdkModifierType accel_mods, guint hardware_keycode, gpointer user_data) | |
992 { | |
993 GtkTreeModel *model = (GtkTreeModel *)accel_store; | |
994 GtkTreeIter iter; | |
995 gchar *acc; | |
996 GtkTreePath *path = gtk_tree_path_new_from_string(path_string); | |
997 | |
998 gtk_tree_model_get_iter(model, &iter, path); | |
999 acc = gtk_accelerator_name(accel_key, accel_mods); | |
1000 | |
1001 gtk_tree_model_foreach(GTK_TREE_MODEL(accel_store), accel_remove_key_cb, acc); | |
1002 | |
1003 gtk_tree_store_set(accel_store, &iter, AE_KEY, acc, -1); | |
1004 gtk_tree_path_free(path); | |
1005 g_free(acc); | |
1006 } | |
1007 | |
1008 static void accel_default_cb(GtkWidget *widget, gpointer data) | |
1009 { | |
1010 accel_store_populate(); | |
1011 | |
1012 /* FIXME: implement the scroll to/select row stuff for tree view */ | |
1013 } | |
1014 | |
1015 void accel_remove_selection(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) | |
1016 { | |
1017 gtk_tree_store_set(accel_store, iter, AE_KEY, "", -1); | |
1018 } | |
1019 | |
1020 #if 0 | |
1021 static void accel_remove_cb(GtkWidget *widget, gpointer data) | |
1022 { | |
1023 GtkTreeSelection *selection; | |
1024 | |
1025 if (!accel_store) return; | |
1026 | |
1027 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(data)); | |
1028 gtk_tree_selection_selected_foreach(selection, &accel_remove_selection, NULL); | |
1029 } | |
1030 #endif | |
1031 | |
1032 void accel_reset_selection(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) | |
1033 { | |
1034 GtkAccelKey key; | |
1035 gchar *accel_path, *accel; | |
1036 | |
1037 gtk_tree_model_get(model, iter, AE_ACCEL, &accel_path, -1); | |
1038 gtk_accel_map_lookup_entry(accel_path, &key); | |
1039 accel = gtk_accelerator_name(key.accel_key, key.accel_mods); | |
1040 | |
1041 gtk_tree_model_foreach(GTK_TREE_MODEL(accel_store), accel_remove_key_cb, accel); | |
1042 | |
1043 gtk_tree_store_set(accel_store, iter, AE_KEY, accel, -1); | |
1044 g_free(accel_path); | |
1045 g_free(accel); | |
1046 } | |
1047 | |
1048 static void accel_reset_cb(GtkWidget *widget, gpointer data) | |
1049 { | |
1050 GtkTreeSelection *selection; | |
1051 | |
1052 if (!accel_store) return; | |
1053 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(data)); | |
1054 gtk_tree_selection_selected_foreach(selection, &accel_reset_selection, NULL); | |
1055 } | |
1056 | |
1057 | |
1058 #if 0 | |
1059 static void accel_alternate_activate_cb(GtkWidget *widget, gpointer data) | |
1060 { | |
1061 gtk_action_activate((GtkAction*)data); | |
1062 } | |
1063 | |
1064 #define DUPL "-alt-" | |
1065 | |
1066 void accel_add_alt_selection(GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer data) | |
1067 { | |
1068 LayoutWindow *lw; | |
1069 GList *groups, *actions; | |
1070 GtkAction *action; | |
1071 GtkAccelKey key, *key2; | |
1072 GtkAccelMap *map; | |
1073 gchar *accel_path2, *accel; | |
1074 const gchar *accel_path; | |
1075 gint freeduplnum = 1; | |
1076 gint len; | |
1077 GClosure* closure; | |
1078 GtkAccelGroup *group; | |
1079 GtkAction *action_new, *action_new2; | |
1080 gchar *name, *accel_path_new, *accel_path_new2; | |
1081 | |
1082 if (!accel_store || !layout_window_list || !layout_window_list->data) return; | |
1083 | |
1084 gtk_tree_model_get(model, iter, AE_ACCEL, &accel_path2, -1); | |
1085 len = strlen(accel_path2); | |
1086 | |
1087 gtk_tree_store_clear(accel_store); | |
1088 lw = layout_window_list->data; | |
1089 | |
1090 g_assert(lw && lw->ui_manager); | |
1091 groups = gtk_ui_manager_get_action_groups(lw->ui_manager); | |
1092 group = gtk_ui_manager_get_accel_group(lw->ui_manager); | |
1093 | |
1094 while (groups) | |
1095 { | |
1096 actions = gtk_action_group_list_actions(GTK_ACTION_GROUP(groups->data)); | |
1097 while (actions) | |
1098 { | |
1099 gchar *dupl; | |
1100 guint64 num; | |
1101 | |
1102 action = GTK_ACTION(actions->data); | |
1103 actions = actions->next; | |
1104 | |
1105 accel_path = gtk_action_get_accel_path(action); | |
1106 if (!accel_path) continue; | |
1107 | |
1108 dupl = g_strrstr(accel_path, DUPL); | |
1109 | |
1110 printf("D: %s %s %s\n", accel_path, accel_path2, dupl); | |
1111 | |
1112 if ((dupl && (len != (dupl - accel_path)) ) || | |
1113 g_ascii_strncasecmp(accel_path, accel_path2, len) != 0) | |
1114 continue; | |
1115 | |
1116 if (dupl && (num = g_ascii_strtoull(dupl + strlen(DUPL), NULL, 10)) > 0 && | |
1117 num > freeduplnum) | |
1118 { | |
1119 freeduplnum = num + 1; | |
1120 } | |
1121 else | |
1122 { | |
1123 closure = gtk_action_get_accel_closure(action); | |
1124 name = gtk_action_get_name(action); | |
1125 accel_path_new = g_strdup(accel_path); | |
1126 action_new2 = action; | |
1127 } | |
1128 } | |
1129 groups = groups->next; | |
1130 } | |
1131 | |
1132 action_new = gtk_action_new(name, NULL, NULL, NULL); | |
1133 gtk_action_set_accel_group(action_new, group); | |
1134 | |
1135 g_signal_connect(G_OBJECT(action_new), "activate", | |
1136 G_CALLBACK(accel_alternate_activate_cb), action_new2); | |
1137 | |
1138 // accel_path_new2 = g_strdup_printf("%s%s%d", accel_path_new, dupl, freeduplnum); | |
1139 g_free(accel_path_new); | |
1140 | |
1141 gtk_action_set_accel_path(action_new, accel_path_new); | |
1142 | |
1143 // gtk_tree_store_set(accel_store, iter, AE_KEY, "", -1); | |
1144 printf("D: %s\n", accel_path_new2); | |
1145 | |
1146 g_free(accel_path_new2); | |
1147 gtk_action_connect_accelerator(action_new); | |
1148 } | |
1149 | |
1150 static void accel_add_alt_cb(GtkWidget *widget, gpointer data) | |
1151 { | |
1152 GtkWidget *accel_view = data; | |
1153 GtkTreeSelection *selection; | |
1154 | |
1155 if (!accel_store) return; | |
1156 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(data)); | |
1157 gtk_tree_selection_selected_foreach(selection, &accel_add_alt_selection, NULL); | |
1158 } | |
1159 | |
1160 static void accel_default_ok_cb(GenericDialog *gd, gpointer data) | |
1161 { | |
1162 accel_store_populate(); | |
1163 } | |
1164 | |
1165 #endif | |
1604 | 1166 #endif |
1601 | 1167 |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1168 static GtkWidget *scrolled_notebook_page(GtkWidget *notebook, const gchar *title) |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1169 { |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1170 GtkWidget *label; |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1171 GtkWidget *vbox; |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1172 GtkWidget *scrolled; |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1173 GtkWidget *viewport; |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1174 |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1175 scrolled = gtk_scrolled_window_new(NULL, NULL); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1176 gtk_container_set_border_width(GTK_CONTAINER(scrolled), PREF_PAD_BORDER); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1177 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1178 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1179 label = gtk_label_new(title); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1180 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled, label); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1181 gtk_widget_show(scrolled); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1182 |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1183 viewport = gtk_viewport_new(NULL, NULL); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1184 gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1185 gtk_container_add(GTK_CONTAINER(scrolled), viewport); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1186 gtk_widget_show(viewport); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1187 |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1188 vbox = gtk_vbox_new(FALSE, 0); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1189 gtk_container_add(GTK_CONTAINER(viewport), vbox); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1190 gtk_widget_show(vbox); |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1191 |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1192 return vbox; |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1193 } |
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1194 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1195 /* general options tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1196 static void config_tab_general(GtkWidget *notebook) |
9 | 1197 { |
1198 GtkWidget *vbox; | |
1199 GtkWidget *group; | |
1200 GtkWidget *subgroup; | |
1201 GtkWidget *button; | |
1202 GtkWidget *ct_button; | |
1203 GtkWidget *table; | |
1204 GtkWidget *spin; | |
1205 | |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1206 vbox = scrolled_notebook_page(notebook, _("General")); |
9 | 1207 |
1208 group = pref_group_new(vbox, FALSE, _("Thumbnails"), GTK_ORIENTATION_VERTICAL); | |
1209 | |
1210 table = pref_table_new(group, 2, 2, FALSE, FALSE); | |
1211 add_thumb_size_menu(table, 0, 0, _("Size:")); | |
333 | 1212 add_quality_menu(table, 0, 1, _("Quality:"), options->thumbnails.quality, &c_options->thumbnails.quality); |
9 | 1213 |
1214 ct_button = pref_checkbox_new_int(group, _("Cache thumbnails"), | |
333 | 1215 options->thumbnails.enable_caching, &c_options->thumbnails.enable_caching); |
9 | 1216 |
1217 subgroup = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
1218 pref_checkbox_link_sensitivity(ct_button, subgroup); | |
1219 | |
1522 | 1220 button = pref_checkbox_new_int(subgroup, _("Use standard thumbnail cache, shared with other applications"), |
333 | 1221 options->thumbnails.spec_standard, &c_options->thumbnails.spec_standard); |
9 | 1222 |
1223 subgroup = pref_box_new(subgroup, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
1224 pref_checkbox_link_sensitivity_swap(button, subgroup); | |
1225 | |
1522 | 1226 pref_checkbox_new_int(subgroup, _("Store thumbnails in '.thumbnails' folder, local to image folder (non-standard)"), |
333 | 1227 options->thumbnails.cache_into_dirs, &c_options->thumbnails.cache_into_dirs); |
9 | 1228 |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
1229 #if 0 |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
1230 pref_checkbox_new_int(subgroup, _("Use xvpics thumbnails when found (read only)"), |
333 | 1231 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
|
1232 #endif |
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
1233 |
1522 | 1234 pref_checkbox_new_int(group, _("Use EXIF thumbnails when available (EXIF thumbnails may be outdated)"), |
1060 | 1235 options->thumbnails.use_exif, &c_options->thumbnails.use_exif); |
1236 | |
9 | 1237 group = pref_group_new(vbox, FALSE, _("Slide show"), GTK_ORIENTATION_VERTICAL); |
1238 | |
326 | 1239 c_options->slideshow.delay = options->slideshow.delay; |
9 | 1240 spin = pref_spin_new(group, _("Delay between image change:"), _("seconds"), |
1241 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
|
1242 options->slideshow.delay ? (gdouble)options->slideshow.delay / SLIDESHOW_SUBSECOND_PRECISION : 10.0, |
9 | 1243 G_CALLBACK(slideshow_delay_cb), NULL); |
1244 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS); | |
1245 | |
326 | 1246 pref_checkbox_new_int(group, _("Random"), options->slideshow.random, &c_options->slideshow.random); |
1247 pref_checkbox_new_int(group, _("Repeat"), options->slideshow.repeat, &c_options->slideshow.repeat); | |
1510 | 1248 |
1249 group = pref_group_new(vbox, FALSE, _("Image loading and caching"), GTK_ORIENTATION_VERTICAL); | |
1250 | |
1522 | 1251 #if 0 |
1510 | 1252 pref_spin_new_int(group, _("Offscreen cache size (Mb per image):"), NULL, |
1253 0, 128, 1, options->image.tile_cache_max, &c_options->image.tile_cache_max); | |
1522 | 1254 #endif |
1510 | 1255 |
1256 pref_spin_new_int(group, _("Decoded image cache size (Mb):"), NULL, | |
1257 0, 1024, 1, options->image.image_cache_max, &c_options->image.image_cache_max); | |
1522 | 1258 pref_checkbox_new_int(group, _("Preload next image"), |
1259 options->image.enable_read_ahead, &c_options->image.enable_read_ahead); | |
1260 | |
1261 pref_checkbox_new_int(group, _("Refresh on file change"), | |
1262 options->update_on_time_change, &c_options->update_on_time_change); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1263 } |
9 | 1264 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1265 /* image tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1266 static void config_tab_image(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1267 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1268 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1269 GtkWidget *vbox; |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1270 GtkWidget *vbox2; |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1271 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1272 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1273 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1274 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1275 GtkWidget *spin; |
9 | 1276 |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1277 vbox = scrolled_notebook_page(notebook, _("Image")); |
9 | 1278 |
1279 group = pref_group_new(vbox, FALSE, _("Zoom"), GTK_ORIENTATION_VERTICAL); | |
1280 | |
1281 #if 0 | |
334 | 1282 add_dither_menu(dither_quality, &c_options->image.dither_quality, _("Dithering method:"), group); |
9 | 1283 #endif |
1284 table = pref_table_new(group, 2, 1, FALSE, FALSE); | |
334 | 1285 add_quality_menu(table, 0, 0, _("Quality:"), options->image.zoom_quality, &c_options->image.zoom_quality); |
9 | 1286 |
1515
3e6cd9243162
disabled 2-pass rendering also affect color correction
nadvornik
parents:
1513
diff
changeset
|
1287 pref_checkbox_new_int(group, _("Two pass rendering (apply HQ zoom and color correction in second pass)"), |
334 | 1288 options->image.zoom_2pass, &c_options->image.zoom_2pass); |
9 | 1289 |
67
f63ecca6c087
Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net>
gqview
parents:
26
diff
changeset
|
1290 pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"), |
334 | 1291 options->image.zoom_to_fit_allow_expand, &c_options->image.zoom_to_fit_allow_expand); |
9 | 1292 |
209
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
1293 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
|
1294 ct_button = pref_checkbox_new_int(hbox, _("Limit image size when autofitting (%):"), |
334 | 1295 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
|
1296 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
|
1297 10, 150, 1, |
334 | 1298 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
|
1299 pref_checkbox_link_sensitivity(ct_button, spin); |
ad78ad18523a
configurable frame around image - geeqie_autofit_maxsize.patch by Laurent MONIN
nadvornik
parents:
208
diff
changeset
|
1300 |
334 | 1301 c_options->image.zoom_increment = options->image.zoom_increment; |
9 | 1302 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
|
1303 0.1, 4.0, 0.1, 1, (gdouble)options->image.zoom_increment / 10.0, |
9 | 1304 G_CALLBACK(zoom_increment_cb), NULL); |
1305 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(spin), GTK_UPDATE_ALWAYS); | |
1306 | |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1307 group = pref_group_new(vbox, FALSE, _("When new image is selected:"), GTK_ORIENTATION_HORIZONTAL); |
9 | 1308 |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1309 vbox2 = pref_box_new(group, TRUE, GTK_ORIENTATION_VERTICAL, PREF_PAD_SPACE); |
334 | 1310 c_options->image.zoom_mode = options->image.zoom_mode; |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1311 button = pref_radiobutton_new(vbox2, NULL, _("Zoom to original size"), |
334 | 1312 (options->image.zoom_mode == ZOOM_RESET_ORIGINAL), |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1313 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_ORIGINAL)); |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1314 button = pref_radiobutton_new(vbox2, button, _("Fit image to window"), |
334 | 1315 (options->image.zoom_mode == ZOOM_RESET_FIT_WINDOW), |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1316 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_FIT_WINDOW)); |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1317 button = pref_radiobutton_new(vbox2, button, _("Leave Zoom at previous setting"), |
334 | 1318 (options->image.zoom_mode == ZOOM_RESET_NONE), |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1319 G_CALLBACK(zoom_mode_cb), GINT_TO_POINTER(ZOOM_RESET_NONE)); |
9 | 1320 |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1321 vbox2 = pref_box_new(group, TRUE, GTK_ORIENTATION_VERTICAL, PREF_PAD_SPACE); |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1322 c_options->image.scroll_reset_method = options->image.scroll_reset_method; |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1323 button = pref_radiobutton_new(vbox2, NULL, _("Scroll to top left corner"), |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1324 (options->image.scroll_reset_method == SCROLL_RESET_TOPLEFT), |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1325 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_TOPLEFT)); |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1326 button = pref_radiobutton_new(vbox2, button, _("Scroll to image center"), |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1327 (options->image.scroll_reset_method == SCROLL_RESET_CENTER), |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1328 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_CENTER)); |
1516
c30965f99b3c
improved Scroll reset method in preferences dialog
nadvornik
parents:
1515
diff
changeset
|
1329 button = pref_radiobutton_new(vbox2, button, _("Keep the region from previous image"), |
1038
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1330 (options->image.scroll_reset_method == SCROLL_RESET_NOCHANGE), |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1331 G_CALLBACK(scroll_reset_cb), GINT_TO_POINTER(SCROLL_RESET_NOCHANGE)); |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1332 |
db720c5a9169
Allow to change image.scroll_reset_method in Preferences > Image.
zas_
parents:
1024
diff
changeset
|
1333 |
9 | 1334 group = pref_group_new(vbox, FALSE, _("Appearance"), GTK_ORIENTATION_VERTICAL); |
1335 | |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
1336 pref_checkbox_new_int(group, _("Custom border color"), |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
1337 options->image.use_custom_border_color, &c_options->image.use_custom_border_color); |
1622
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
1338 |
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
1339 pref_checkbox_new_int(group, _("Apply custom border to fullscreen mode only"), |
fee96b7345e8
Add an option to Image preferences to restrict custom border to fullscreen mode only. Bug 2798062.
zas_
parents:
1621
diff
changeset
|
1340 options->image.custom_border_fullscreen_only, &c_options->image.custom_border_fullscreen_only); |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
199
diff
changeset
|
1341 |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
1342 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
|
1343 G_CALLBACK(pref_color_button_set_cb), &c_options->image.border_color); |
9 | 1344 |
1345 group = pref_group_new(vbox, FALSE, _("Convenience"), GTK_ORIENTATION_VERTICAL); | |
1346 | |
1347 pref_checkbox_new_int(group, _("Auto rotate image using Exif information"), | |
334 | 1348 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
|
1349 } |
9 | 1350 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1351 /* windows tab */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1352 static void config_tab_windows(GtkWidget *notebook) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1353 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1354 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1355 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1356 GtkWidget *group; |
1510 | 1357 GtkWidget *button; |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1358 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1359 GtkWidget *spin; |
1510 | 1360 GtkWidget *image_overlay_template_view; |
1361 GtkWidget *scrolled; | |
1362 GtkTextBuffer *buffer; | |
9 | 1363 |
1039
9c8d7ba674cf
Allow all Preferences pages to scroll vertically. Reduce code redundancy.
zas_
parents:
1038
diff
changeset
|
1364 vbox = scrolled_notebook_page(notebook, _("Windows")); |
9 | 1365 |
1366 group = pref_group_new(vbox, FALSE, _("State"), GTK_ORIENTATION_VERTICAL); | |
1367 | |
1368 pref_checkbox_new_int(group, _("Remember window positions"), | |
1436
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1400
diff
changeset
|
1369 options->save_window_positions, &c_options->save_window_positions); |
9 | 1370 pref_checkbox_new_int(group, _("Remember tool state (float/hidden)"), |
1436
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1400
diff
changeset
|
1371 options->tools_restore_state, &c_options->tools_restore_state); |
9 | 1372 |
1373 group = pref_group_new(vbox, FALSE, _("Size"), GTK_ORIENTATION_VERTICAL); | |
1374 | |
1375 pref_checkbox_new_int(group, _("Fit window to image when tools are hidden/floating"), | |
334 | 1376 options->image.fit_window_to_image, &c_options->image.fit_window_to_image); |
9 | 1377 |
1378 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
1379 ct_button = pref_checkbox_new_int(hbox, _("Limit size when auto-sizing window (%):"), | |
334 | 1380 options->image.limit_window_size, &c_options->image.limit_window_size); |
9 | 1381 spin = pref_spin_new_int(hbox, NULL, NULL, |
1382 10, 150, 1, | |
334 | 1383 options->image.max_window_size, &c_options->image.max_window_size); |
9 | 1384 pref_checkbox_link_sensitivity(ct_button, spin); |
1510 | 1385 |
1386 group = pref_group_new(vbox, FALSE, _("Full screen"), GTK_ORIENTATION_VERTICAL); | |
1387 | |
1388 c_options->fullscreen.screen = options->fullscreen.screen; | |
1389 c_options->fullscreen.above = options->fullscreen.above; | |
1390 hbox = fullscreen_prefs_selection_new(_("Location:"), &c_options->fullscreen.screen, &c_options->fullscreen.above); | |
1391 gtk_box_pack_start(GTK_BOX(group), hbox, FALSE, FALSE, 0); | |
1392 gtk_widget_show(hbox); | |
1393 | |
1394 pref_checkbox_new_int(group, _("Smooth image flip"), | |
1395 options->fullscreen.clean_flip, &c_options->fullscreen.clean_flip); | |
1396 pref_checkbox_new_int(group, _("Disable screen saver"), | |
1397 options->fullscreen.disable_saver, &c_options->fullscreen.disable_saver); | |
1398 | |
1399 | |
1400 group = pref_group_new(vbox, FALSE, _("Overlay Screen Display"), GTK_ORIENTATION_VERTICAL); | |
1401 | |
1402 pref_label_new(group, _("Image overlay template")); | |
1403 | |
1404 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1405 gtk_widget_set_size_request(scrolled, 200, 150); | |
1406 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
1407 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
1408 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1409 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 5); | |
1410 gtk_widget_show(scrolled); | |
1411 | |
1412 image_overlay_template_view = gtk_text_view_new(); | |
1413 | |
1414 #if GTK_CHECK_VERSION(2,12,0) | |
1415 gtk_widget_set_tooltip_markup(image_overlay_template_view, | |
1416 _("<i>%name%</i> results in the filename of the picture.\n" | |
1417 "Also available: <i>%collection%</i>, <i>%number%</i>, <i>%total%</i>, <i>%date%</i>,\n" | |
1418 "<i>%size%</i> (filesize), <i>%width%</i>, <i>%height%</i>, <i>%res%</i> (resolution)\n" | |
1419 "To access exif data use the exif name, e. g. <i>%formatted.Camera%</i> is the formatted camera name,\n" | |
1420 "<i>%Exif.Photo.DateTimeOriginal%</i> the date of the original shot.\n" | |
1421 "<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" | |
1422 "If two or more variables are connected with the |-sign, it prints available variables with a separator.\n" | |
1423 "<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" | |
1424 "if there's no ISO information in the Exif data.\n" | |
1425 "If a line is empty, it is removed. This allows to add lines that totally disappear when no data is available.\n" | |
1426 )); | |
1427 #endif | |
1428 gtk_container_add(GTK_CONTAINER(scrolled), image_overlay_template_view); | |
1429 gtk_widget_show(image_overlay_template_view); | |
1430 | |
1431 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1432 | |
1433 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, | |
1434 G_CALLBACK(image_overlay_default_template_cb), image_overlay_template_view); | |
1435 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1436 gtk_widget_show(button); | |
1437 | |
1438 button = pref_button_new(NULL, GTK_STOCK_HELP, NULL, FALSE, | |
1439 G_CALLBACK(image_overlay_help_cb), NULL); | |
1440 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1441 gtk_widget_show(button); | |
1442 | |
1443 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(image_overlay_template_view)); | |
1444 if (options->image_overlay.template_string) gtk_text_buffer_set_text(buffer, options->image_overlay.template_string, -1); | |
1445 g_signal_connect(G_OBJECT(buffer), "changed", | |
1446 G_CALLBACK(image_overlay_template_view_changed_cb), image_overlay_template_view); | |
1447 | |
1448 | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1449 } |
9 | 1450 |
1216 | 1451 static GtkTreeModel *create_class_model(void) |
1452 { | |
1453 GtkListStore *model; | |
1454 GtkTreeIter iter; | |
1455 gint i; | |
1456 | |
1457 /* create list store */ | |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1336
diff
changeset
|
1458 model = gtk_list_store_new(1, G_TYPE_STRING); |
1216 | 1459 for (i = 0; i < FILE_FORMAT_CLASSES; i++) |
1460 { | |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1336
diff
changeset
|
1461 gtk_list_store_append(model, &iter); |
1216 | 1462 gtk_list_store_set(model, &iter, 0, _(format_class_list[i]), -1); |
1463 } | |
1464 return GTK_TREE_MODEL (model); | |
1465 } | |
1466 | |
1467 | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1468 /* filtering tab */ |
1522 | 1469 static void config_tab_files(GtkWidget *notebook) |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1470 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1471 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1472 GtkWidget *frame; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1473 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1474 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1475 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1476 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1477 GtkWidget *scrolled; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1478 GtkWidget *filter_view; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1479 GtkCellRenderer *renderer; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1480 GtkTreeSelection *selection; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1481 GtkTreeViewColumn *column; |
9 | 1482 |
1522 | 1483 vbox = scrolled_notebook_page(notebook, _("Files")); |
9 | 1484 |
1485 group = pref_box_new(vbox, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
1486 | |
356 | 1487 pref_checkbox_new_int(group, _("Show hidden files or folders"), |
1488 options->file_filter.show_hidden_files, &c_options->file_filter.show_hidden_files); | |
1522 | 1489 #if 0 |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
1490 pref_checkbox_new_int(group, _("Show dot directory"), |
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
1491 options->file_filter.show_dot_directory, &c_options->file_filter.show_dot_directory); |
1522 | 1492 #endif |
9 | 1493 pref_checkbox_new_int(group, _("Case sensitive sort"), |
329 | 1494 options->file_sort.case_sensitive, &c_options->file_sort.case_sensitive); |
9 | 1495 |
1496 ct_button = pref_checkbox_new_int(group, _("Disable File Filtering"), | |
332 | 1497 options->file_filter.disable, &c_options->file_filter.disable); |
9 | 1498 |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1499 |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1500 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
|
1501 |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1502 sidecar_ext_entry = gtk_entry_new(); |
1229
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1216
diff
changeset
|
1503 gtk_entry_set_text(GTK_ENTRY(sidecar_ext_entry), options->sidecar.ext); |
170
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1504 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
|
1505 gtk_widget_show(sidecar_ext_entry); |
9a56e3d13e67
basic sidecar files configuration via preferences dialog
nadvornik
parents:
134
diff
changeset
|
1506 |
9 | 1507 group = pref_group_new(vbox, TRUE, _("File types"), GTK_ORIENTATION_VERTICAL); |
1508 | |
1509 frame = pref_group_parent(group); | |
1510 g_signal_connect(G_OBJECT(ct_button), "toggled", | |
1511 G_CALLBACK(filter_disable_cb), frame); | |
332 | 1512 gtk_widget_set_sensitive(frame, !options->file_filter.disable); |
9 | 1513 |
1514 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1515 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
|
1516 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
9 | 1517 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 0); |
1518 gtk_widget_show(scrolled); | |
1519 | |
1520 filter_store = gtk_list_store_new(1, G_TYPE_POINTER); | |
1521 filter_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(filter_store)); | |
1522 g_object_unref(filter_store); | |
1523 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(filter_view)); | |
1524 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_SINGLE); | |
1525 | |
1526 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(filter_view), FALSE); | |
1527 | |
1528 column = gtk_tree_view_column_new(); | |
1529 gtk_tree_view_column_set_title(column, _("Filter")); | |
1530 gtk_tree_view_column_set_resizable(column, TRUE); | |
1531 | |
1532 renderer = gtk_cell_renderer_toggle_new(); | |
1533 g_signal_connect(G_OBJECT(renderer), "toggled", | |
1534 G_CALLBACK(filter_store_enable_cb), filter_store); | |
1535 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1536 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1537 GINT_TO_POINTER(FE_ENABLE), NULL); | |
442 | 1538 |
9 | 1539 renderer = gtk_cell_renderer_text_new(); |
1540 g_signal_connect(G_OBJECT(renderer), "edited", | |
1541 G_CALLBACK(filter_store_ext_edit_cb), filter_store); | |
1542 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1543 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL); | |
1544 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1545 GINT_TO_POINTER(FE_EXTENSION), NULL); | |
1546 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); | |
1547 | |
1548 column = gtk_tree_view_column_new(); | |
1549 gtk_tree_view_column_set_title(column, _("Description")); | |
1550 gtk_tree_view_column_set_resizable(column, TRUE); | |
1551 renderer = gtk_cell_renderer_text_new(); | |
1552 g_signal_connect(G_OBJECT(renderer), "edited", | |
1553 G_CALLBACK(filter_store_desc_edit_cb), filter_store); | |
1554 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, NULL); | |
1555 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1556 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1557 GINT_TO_POINTER(FE_DESCRIPTION), NULL); | |
1558 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); | |
1559 | |
1216 | 1560 column = gtk_tree_view_column_new(); |
1561 gtk_tree_view_column_set_title(column, _("Class")); | |
1562 gtk_tree_view_column_set_resizable(column, TRUE); | |
1563 renderer = gtk_cell_renderer_combo_new(); | |
1564 g_object_set(G_OBJECT(renderer), "editable", (gboolean)TRUE, | |
1565 "model", create_class_model(), | |
1566 "text-column", 0, | |
1567 "has-entry", FALSE, | |
1568 NULL); | |
1569 | |
1570 g_signal_connect(G_OBJECT(renderer), "edited", | |
1571 G_CALLBACK(filter_store_class_edit_cb), filter_store); | |
1572 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1573 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, | |
1574 GINT_TO_POINTER(FE_CLASS), NULL); | |
1575 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); | |
1576 | |
1239
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1577 column = gtk_tree_view_column_new(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1578 gtk_tree_view_column_set_title(column, _("Writable")); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1579 gtk_tree_view_column_set_resizable(column, FALSE); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1580 renderer = gtk_cell_renderer_toggle_new(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1581 g_signal_connect(G_OBJECT(renderer), "toggled", |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1582 G_CALLBACK(filter_store_writable_cb), filter_store); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1583 gtk_tree_view_column_pack_start(column, renderer, FALSE); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1584 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1585 GINT_TO_POINTER(FE_WRITABLE), NULL); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1586 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1587 |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1588 column = gtk_tree_view_column_new(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1589 gtk_tree_view_column_set_title(column, _("Sidecar is allowed")); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1590 gtk_tree_view_column_set_resizable(column, FALSE); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1591 renderer = gtk_cell_renderer_toggle_new(); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1592 g_signal_connect(G_OBJECT(renderer), "toggled", |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1593 G_CALLBACK(filter_store_sidecar_cb), filter_store); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1594 gtk_tree_view_column_pack_start(column, renderer, FALSE); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1595 gtk_tree_view_column_set_cell_data_func(column, renderer, filter_set_func, |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1596 GINT_TO_POINTER(FE_ALLOW_SIDECAR), NULL); |
254b09942e68
metadata write mode (direct or sidecar) made configurable for each file
nadvornik
parents:
1229
diff
changeset
|
1597 gtk_tree_view_append_column(GTK_TREE_VIEW(filter_view), column); |
1216 | 1598 |
1599 | |
9 | 1600 filter_store_populate(); |
1601 gtk_container_add(GTK_CONTAINER(scrolled), filter_view); | |
1602 gtk_widget_show(filter_view); | |
1603 | |
1604 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1605 | |
1606 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, | |
1607 G_CALLBACK(filter_default_cb), NULL); | |
1608 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1609 gtk_widget_show(button); | |
1610 | |
1611 button = pref_button_new(NULL, GTK_STOCK_REMOVE, NULL, FALSE, | |
1612 G_CALLBACK(filter_remove_cb), filter_view); | |
1613 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1614 gtk_widget_show(button); | |
1615 | |
1616 button = pref_button_new(NULL, GTK_STOCK_ADD, NULL, FALSE, | |
1617 G_CALLBACK(filter_add_cb), NULL); | |
1618 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1619 gtk_widget_show(button); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1620 } |
1510 | 1621 |
1622 /* metadata tab */ | |
1623 static void config_tab_metadata(GtkWidget *notebook) | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1624 { |
1510 | 1625 GtkWidget *vbox; |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1626 GtkWidget *hbox; |
1510 | 1627 GtkWidget *group; |
1628 GtkWidget *ct_button; | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1629 GtkWidget *label; |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1630 gchar *text; |
1510 | 1631 |
1632 vbox = scrolled_notebook_page(notebook, _("Metadata")); | |
1633 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1634 #ifndef HAVE_EXIV2 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1635 gtk_widget_set_sensitive(vbox, FALSE); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1636 #endif |
1510 | 1637 |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1638 group = pref_group_new(vbox, FALSE, _("Metadata writing process"), GTK_ORIENTATION_VERTICAL); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1639 label = pref_label_new(group, _("Metadata are written in the following order. The process ends after first success.")); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1640 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1641 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1642 ct_button = pref_checkbox_new_int(group, _("1) Save metadata in image files, resp. sidecar files, according to the XMP standard"), |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1643 options->metadata.save_in_image_file, &c_options->metadata.save_in_image_file); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1644 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1645 pref_checkbox_new_int(group, _("2) Save metadata in '.metadata' folder, local to image folder (non-standard)"), |
1510 | 1646 options->metadata.enable_metadata_dirs, &c_options->metadata.enable_metadata_dirs); |
1647 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1648 text = g_strdup_printf(_("3) Save metadata in Geeqie private directory '%s'"), get_metadata_cache_dir()); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1649 label = pref_label_new(group, text); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1650 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1651 g_free(text); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1652 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1653 group = pref_group_new(vbox, FALSE, _("Step 1: Write to image files"), GTK_ORIENTATION_VERTICAL); |
1510 | 1654 |
1655 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_VERTICAL, PREF_PAD_SPACE); | |
1656 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1657 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1658 pref_checkbox_new_int(hbox, _("Store metadata also in legacy IPTC tags (converted according to IPTC4XMP standard)"), |
1510 | 1659 options->metadata.save_legacy_IPTC, &c_options->metadata.save_legacy_IPTC); |
1660 | |
1661 pref_checkbox_new_int(hbox, _("Warn if the image files are unwritable"), | |
1662 options->metadata.warn_on_write_problems, &c_options->metadata.warn_on_write_problems); | |
1663 | |
1664 pref_checkbox_new_int(hbox, _("Ask before writing to image files"), | |
1665 options->metadata.confirm_write, &c_options->metadata.confirm_write); | |
1666 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1667 group = pref_group_new(vbox, FALSE, _("Step 2 and 3: write to Geeqie private files"), GTK_ORIENTATION_VERTICAL); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1668 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1669 pref_checkbox_new_int(group, _("Use GQview legacy metadata format (supports only keywords and comments) instead of XMP"), |
1510 | 1670 options->metadata.save_legacy_format, &c_options->metadata.save_legacy_format); |
1671 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1672 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1673 group = pref_group_new(vbox, FALSE, _("Miscellaneous"), GTK_ORIENTATION_VERTICAL); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1674 pref_checkbox_new_int(group, _("Write the same description tags (keywords, comment, etc.) to all files in a group"), |
1510 | 1675 options->metadata.sync_grouped_files, &c_options->metadata.sync_grouped_files); |
1676 | |
1597
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1677 pref_checkbox_new_int(group, _("Allow keywords to differ only in case"), |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1678 options->metadata.keywords_case_sensitive, &c_options->metadata.keywords_case_sensitive); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1679 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1680 pref_checkbox_new_int(group, _("Write altered image orientation to the metadata"), |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1681 options->metadata.write_orientation, &c_options->metadata.write_orientation); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1682 |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1683 group = pref_group_new(vbox, FALSE, _("Auto-save options"), GTK_ORIENTATION_VERTICAL); |
6657e7cf446e
added some structure to the metadata preferences dialog
nadvornik
parents:
1592
diff
changeset
|
1684 |
1510 | 1685 ct_button = pref_checkbox_new_int(group, _("Write metadata after timeout"), |
1686 options->metadata.confirm_after_timeout, &c_options->metadata.confirm_after_timeout); | |
1687 | |
1688 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
1689 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1690 | |
1691 pref_spin_new_int(hbox, _("Timeout (seconds):"), NULL, 0, 900, 1, | |
1692 options->metadata.confirm_timeout, &c_options->metadata.confirm_timeout); | |
1693 | |
1694 pref_checkbox_new_int(group, _("Write metadata on image change"), | |
1695 options->metadata.confirm_on_image_change, &c_options->metadata.confirm_on_image_change); | |
1696 | |
1697 pref_checkbox_new_int(group, _("Write metadata on directory change"), | |
1698 options->metadata.confirm_on_dir_change, &c_options->metadata.confirm_on_dir_change); | |
1699 } | |
1700 | |
1701 /* metadata tab */ | |
1702 static void config_tab_color(GtkWidget *notebook) | |
1703 { | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1704 GtkWidget *label; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1705 GtkWidget *vbox; |
1510 | 1706 GtkWidget *group; |
1707 GtkWidget *tabcomp; | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1708 GtkWidget *table; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1709 gint i; |
9 | 1710 |
1522 | 1711 vbox = scrolled_notebook_page(notebook, _("Color management")); |
9 | 1712 |
1586
c3416996fd97
Backed out changeset b5608391f479
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
1548
diff
changeset
|
1713 group = pref_group_new(vbox, FALSE, _("Color profiles"), GTK_ORIENTATION_VERTICAL); |
1510 | 1714 #ifndef HAVE_LCMS |
1715 gtk_widget_set_sensitive(pref_group_parent(group), FALSE); | |
1716 #endif | |
1717 | |
1586
c3416996fd97
Backed out changeset b5608391f479
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
1548
diff
changeset
|
1718 table = pref_table_new(group, 3, COLOR_PROFILE_INPUTS + 2, FALSE, FALSE); |
9 | 1719 gtk_table_set_col_spacings(GTK_TABLE(table), PREF_PAD_GAP); |
1720 | |
1510 | 1721 label = pref_table_label(table, 0, 0, _("Type"), 0.0); |
9 | 1722 pref_label_bold(label, TRUE, FALSE); |
1723 | |
1724 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0); | |
1725 pref_label_bold(label, TRUE, FALSE); | |
1726 | |
1510 | 1727 label = pref_table_label(table, 2, 0, _("File"), 0.0); |
9 | 1728 pref_label_bold(label, TRUE, FALSE); |
1729 | |
1510 | 1730 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
9 | 1731 { |
224 | 1732 GtkWidget *entry; |
1510 | 1733 gchar *buf; |
442 | 1734 |
1621 | 1735 buf = g_strdup_printf(_("Input %d:"), i + COLOR_PROFILE_FILE); |
1510 | 1736 pref_table_label(table, 0, i + 1, buf, 1.0); |
1737 g_free(buf); | |
9 | 1738 |
224 | 1739 entry = gtk_entry_new(); |
1510 | 1740 gtk_entry_set_max_length(GTK_ENTRY(entry), EDITOR_NAME_MAX_LENGTH); |
1741 // gtk_widget_set_size_request(editor_name_entry[i], 30, -1); | |
1742 if (options->color_profile.input_name[i]) | |
1743 { | |
1744 gtk_entry_set_text(GTK_ENTRY(entry), options->color_profile.input_name[i]); | |
1745 } | |
1746 gtk_table_attach(GTK_TABLE(table), entry, 1, 2, i + 1, i + 2, | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1747 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
224 | 1748 gtk_widget_show(entry); |
1510 | 1749 color_profile_input_name_entry[i] = entry; |
1750 | |
1751 tabcomp = tab_completion_new(&entry, options->color_profile.input_file[i], NULL, NULL); | |
1752 tab_completion_add_select_button(entry, _("Select color profile"), FALSE); | |
1753 gtk_widget_set_size_request(entry, 160, -1); | |
1754 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, i + 1, i + 2, | |
1755 GTK_FILL | GTK_EXPAND, 0, 0, 0); | |
1756 gtk_widget_show(tabcomp); | |
1757 color_profile_input_file_entry[i] = entry; | |
9 | 1758 } |
1759 | |
1586
c3416996fd97
Backed out changeset b5608391f479
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
1548
diff
changeset
|
1760 pref_table_label(table, 0, COLOR_PROFILE_INPUTS + 1, _("Screen:"), 1.0); |
1510 | 1761 tabcomp = tab_completion_new(&color_profile_screen_file_entry, |
1762 options->color_profile.screen_file, NULL, NULL); | |
1763 tab_completion_add_select_button(color_profile_screen_file_entry, _("Select color profile"), FALSE); | |
1764 gtk_widget_set_size_request(color_profile_screen_file_entry, 160, -1); | |
1586
c3416996fd97
Backed out changeset b5608391f479
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
1548
diff
changeset
|
1765 gtk_table_attach(GTK_TABLE(table), tabcomp, 2, 3, |
c3416996fd97
Backed out changeset b5608391f479
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
1548
diff
changeset
|
1766 COLOR_PROFILE_INPUTS + 1, COLOR_PROFILE_INPUTS + 2, |
1510 | 1767 GTK_FILL | GTK_EXPAND, 0, 0, 0); |
1768 gtk_widget_show(tabcomp); | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1769 } |
222
77f1bcc6c161
various exif improvements based on patch by Uwe Ohse
nadvornik
parents:
218
diff
changeset
|
1770 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1771 /* advanced entry tab */ |
1510 | 1772 static void config_tab_behavior(GtkWidget *notebook) |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1773 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1774 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1775 GtkWidget *vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1776 GtkWidget *group; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1777 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1778 GtkWidget *tabcomp; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1779 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1780 GtkWidget *spin; |
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
|
1781 |
1510 | 1782 vbox = scrolled_notebook_page(notebook, _("Behavior")); |
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
|
1783 |
1532 | 1784 group = pref_group_new(vbox, FALSE, pgettext("physical","Delete"), GTK_ORIENTATION_VERTICAL); |
9 | 1785 |
1786 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
|
1787 options->file_ops.confirm_delete, &c_options->file_ops.confirm_delete); |
9 | 1788 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
|
1789 options->file_ops.enable_delete_key, &c_options->file_ops.enable_delete_key); |
9 | 1790 |
1791 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
|
1792 options->file_ops.safe_delete_enable, &c_options->file_ops.safe_delete_enable); |
9 | 1793 |
1794 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_SPACE); | |
1795 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1796 | |
1797 pref_spacer(hbox, PREF_PAD_INDENT - PREF_PAD_SPACE); | |
1798 pref_label_new(hbox, _("Folder:")); | |
1799 | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
339
diff
changeset
|
1800 tabcomp = tab_completion_new(&safe_delete_path_entry, options->file_ops.safe_delete_path, NULL, NULL); |
9 | 1801 tab_completion_add_select_button(safe_delete_path_entry, NULL, TRUE); |
1802 gtk_box_pack_start(GTK_BOX(hbox), tabcomp, TRUE, TRUE, 0); | |
1803 gtk_widget_show(tabcomp); | |
1804 | |
1805 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1806 pref_checkbox_link_sensitivity(ct_button, hbox); | |
1807 | |
1808 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
|
1809 spin = pref_spin_new_int(hbox, _("Maximum size:"), _("MB"), |
442 | 1810 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
|
1811 #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
|
1812 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
|
1813 #endif |
9 | 1814 button = pref_button_new(NULL, NULL, _("View"), FALSE, |
1815 G_CALLBACK(safe_delete_view_cb), NULL); | |
1816 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1817 gtk_widget_show(button); | |
1818 | |
1819 button = pref_button_new(NULL, GTK_STOCK_CLEAR, NULL, FALSE, | |
1820 G_CALLBACK(safe_delete_clear_cb), NULL); | |
1821 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1822 gtk_widget_show(button); | |
1823 | |
497 | 1824 |
9 | 1825 group = pref_group_new(vbox, FALSE, _("Behavior"), GTK_ORIENTATION_VERTICAL); |
1826 | |
1827 pref_checkbox_new_int(group, _("Rectangular selection in icon view"), | |
330 | 1828 options->collections.rectangular_selection, &c_options->collections.rectangular_selection); |
9 | 1829 |
1830 pref_checkbox_new_int(group, _("Descend folders in tree view"), | |
321 | 1831 options->tree_descend_subdirs, &c_options->tree_descend_subdirs); |
9 | 1832 |
1833 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
|
1834 options->file_ops.enable_in_place_rename, &c_options->file_ops.enable_in_place_rename); |
9 | 1835 |
441
08eb7137cd94
Allow the user to change open_recent_list_maxsize option through
zas_
parents:
426
diff
changeset
|
1836 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
|
1837 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
|
1838 |
7a69309b91c8
Allow the user to set the drag'n drop icon size through
zas_
parents:
446
diff
changeset
|
1839 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
|
1840 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
|
1841 |
9 | 1842 group = pref_group_new(vbox, FALSE, _("Navigation"), GTK_ORIENTATION_VERTICAL); |
1843 | |
1844 pref_checkbox_new_int(group, _("Progressive keyboard scrolling"), | |
321 | 1845 options->progressive_key_scrolling, &c_options->progressive_key_scrolling); |
9 | 1846 pref_checkbox_new_int(group, _("Mouse wheel scrolls image"), |
321 | 1847 options->mousewheel_scrolls, &c_options->mousewheel_scrolls); |
9 | 1848 |
1213 | 1849 group = pref_group_new(vbox, FALSE, _("Miscellaneous"), GTK_ORIENTATION_VERTICAL); |
1850 | |
9 | 1851 pref_spin_new_int(group, _("Custom similarity threshold:"), NULL, |
1188 | 1852 0, 100, 1, options->duplicates_similarity_threshold, (int *)&c_options->duplicates_similarity_threshold); |
9 | 1853 |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
91
diff
changeset
|
1854 |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1855 #ifdef DEBUG |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1856 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
|
1857 |
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
1858 pref_spin_new_int(group, _("Debug level:"), NULL, |
507 | 1859 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
|
1860 #endif |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1861 } |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1862 |
1601 | 1863 /* accelerators tab */ |
1864 static void config_tab_accelerators(GtkWidget *notebook) | |
1865 { | |
1604 | 1866 #if GTK_CHECK_VERSION(2, 10, 0) |
1601 | 1867 GtkWidget *hbox; |
1868 GtkWidget *vbox; | |
1869 GtkWidget *group; | |
1870 GtkWidget *button; | |
1871 GtkWidget *scrolled; | |
1872 GtkWidget *accel_view; | |
1873 GtkCellRenderer *renderer; | |
1874 GtkTreeSelection *selection; | |
1875 GtkTreeViewColumn *column; | |
1876 | |
1877 vbox = scrolled_notebook_page(notebook, _("Keyboard")); | |
1878 | |
1879 group = pref_group_new(vbox, TRUE, _("Accelerators"), GTK_ORIENTATION_VERTICAL); | |
1880 | |
1881 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1882 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
1883 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); | |
1884 gtk_box_pack_start(GTK_BOX(group), scrolled, TRUE, TRUE, 0); | |
1885 gtk_widget_show(scrolled); | |
1886 | |
1887 accel_store = gtk_tree_store_new(4, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); | |
1888 | |
1889 accel_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(accel_store)); | |
1890 g_object_unref(accel_store); | |
1891 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(accel_view)); | |
1892 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_MULTIPLE); | |
1893 | |
1894 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(accel_view), FALSE); | |
1895 | |
1896 renderer = gtk_cell_renderer_text_new(); | |
1897 | |
1898 column = gtk_tree_view_column_new_with_attributes(_("Action"), | |
1899 renderer, | |
1900 "text", AE_ACTION, | |
1901 NULL); | |
1902 | |
1903 gtk_tree_view_column_set_sort_column_id(column, AE_ACTION); | |
1904 gtk_tree_view_column_set_resizable(column, TRUE); | |
1905 gtk_tree_view_append_column(GTK_TREE_VIEW(accel_view), column); | |
1906 | |
1907 | |
1908 renderer = gtk_cell_renderer_accel_new(); | |
1909 g_signal_connect(G_OBJECT(renderer), "accel-cleared", | |
1910 G_CALLBACK(accel_store_cleared_cb), accel_store); | |
1911 g_signal_connect(G_OBJECT(renderer), "accel-edited", | |
1912 G_CALLBACK(accel_store_edited_cb), accel_store); | |
1913 | |
1914 | |
1915 g_object_set (renderer, | |
1916 "editable", TRUE, | |
1917 "accel-mode", GTK_CELL_RENDERER_ACCEL_MODE_OTHER, | |
1918 NULL); | |
1919 | |
1920 column = gtk_tree_view_column_new_with_attributes(_("KEY"), | |
1921 renderer, | |
1922 "text", AE_KEY, | |
1923 NULL); | |
1924 | |
1925 gtk_tree_view_column_set_sort_column_id(column, AE_KEY); | |
1926 gtk_tree_view_column_set_resizable(column, TRUE); | |
1927 gtk_tree_view_append_column(GTK_TREE_VIEW(accel_view), column); | |
1928 | |
1929 renderer = gtk_cell_renderer_text_new(); | |
1930 | |
1931 column = gtk_tree_view_column_new_with_attributes(_("Tooltip"), | |
1932 renderer, | |
1933 "text", AE_TOOLTIP, | |
1934 NULL); | |
1935 | |
1936 gtk_tree_view_column_set_sort_column_id(column, AE_TOOLTIP); | |
1937 gtk_tree_view_column_set_resizable(column, TRUE); | |
1938 gtk_tree_view_append_column(GTK_TREE_VIEW(accel_view), column); | |
1939 | |
1940 renderer = gtk_cell_renderer_text_new(); | |
1941 | |
1942 column = gtk_tree_view_column_new_with_attributes("Accel", | |
1943 renderer, | |
1944 "text", AE_ACCEL, | |
1945 NULL); | |
1946 | |
1947 gtk_tree_view_column_set_sort_column_id(column, AE_ACCEL); | |
1948 gtk_tree_view_column_set_resizable(column, TRUE); | |
1949 gtk_tree_view_append_column(GTK_TREE_VIEW(accel_view), column); | |
1950 | |
1951 accel_store_populate(); | |
1952 gtk_container_add(GTK_CONTAINER(scrolled), accel_view); | |
1953 gtk_widget_show(accel_view); | |
1954 | |
1955 hbox = pref_box_new(group, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_BUTTON_GAP); | |
1956 | |
1957 button = pref_button_new(NULL, NULL, _("Defaults"), FALSE, | |
1958 G_CALLBACK(accel_default_cb), NULL); | |
1959 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1960 gtk_widget_show(button); | |
1961 | |
1962 #if 0 | |
1963 button = pref_button_new(NULL, GTK_STOCK_REMOVE, NULL, FALSE, | |
1964 G_CALLBACK(accel_remove_cb), accel_view); | |
1965 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1966 gtk_widget_show(button); | |
1967 #endif | |
1968 | |
1969 button = pref_button_new(NULL, NULL, _("Reset selected"), FALSE, | |
1970 G_CALLBACK(accel_reset_cb), accel_view); | |
1971 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1972 gtk_widget_show(button); | |
1973 | |
1974 #if 0 | |
1975 button = pref_button_new(NULL, _("Add Alt"), NULL, FALSE, | |
1976 G_CALLBACK(accel_add_alt_cb), accel_view); | |
1977 gtk_box_pack_end(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
1978 gtk_widget_show(button); | |
1979 #endif | |
1604 | 1980 #endif |
1601 | 1981 } |
1982 | |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1983 /* Main preferences window */ |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1984 static void config_window_create(void) |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1985 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1986 GtkWidget *win_vbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1987 GtkWidget *hbox; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1988 GtkWidget *notebook; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1989 GtkWidget *button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1990 GtkWidget *ct_button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
1991 |
321 | 1992 if (!c_options) c_options = init_options(NULL); |
318 | 1993 |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
1994 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
|
1995 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
|
1996 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
|
1997 G_CALLBACK(config_window_delete), NULL); |
442 | 1998 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
|
1999 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
|
2000 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
|
2001 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2002 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
|
2003 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
|
2004 gtk_widget_show(win_vbox); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2005 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2006 hbox = gtk_hbutton_box_new(); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2007 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
|
2008 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
|
2009 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
|
2010 gtk_widget_show(hbox); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2011 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2012 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
|
2013 G_CALLBACK(config_window_ok_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2014 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2015 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
|
2016 gtk_widget_grab_default(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2017 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2018 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2019 ct_button = button; |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2020 |
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
|
2021 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
|
2022 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
|
2023 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
|
2024 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
|
2025 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
|
2026 |
230
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2027 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
|
2028 G_CALLBACK(config_window_apply_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2029 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2030 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
|
2031 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2032 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2033 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
|
2034 G_CALLBACK(config_window_close_cb), NULL); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2035 gtk_container_add(GTK_CONTAINER(hbox), button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2036 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
|
2037 gtk_widget_show(button); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2038 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2039 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
|
2040 { |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2041 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
|
2042 } |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2043 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2044 notebook = gtk_notebook_new(); |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
2045 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
|
2046 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
|
2047 |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2048 config_tab_general(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2049 config_tab_image(notebook); |
4b2fbfafa511
Move tabs code from config_window_create() to new smaller functions.
zas_
parents:
227
diff
changeset
|
2050 config_tab_windows(notebook); |
1601 | 2051 config_tab_accelerators(notebook); |
1522 | 2052 config_tab_files(notebook); |
1510 | 2053 config_tab_metadata(notebook); |
2054 config_tab_color(notebook); | |
2055 config_tab_behavior(notebook); | |
227
41fc4bfc8b25
Add a debug level spinner at the end of Preferences > Advanced.
zas_
parents:
226
diff
changeset
|
2056 |
9 | 2057 gtk_widget_show(notebook); |
2058 | |
2059 gtk_widget_show(configwindow); | |
2060 } | |
2061 | |
2062 /* | |
2063 *----------------------------------------------------------------------------- | |
2064 * config window show (public) | |
2065 *----------------------------------------------------------------------------- | |
442 | 2066 */ |
9 | 2067 |
2068 void show_config_window(void) | |
2069 { | |
2070 if (configwindow) | |
2071 { | |
2072 gtk_window_present(GTK_WINDOW(configwindow)); | |
2073 return; | |
2074 } | |
2075 | |
2076 config_window_create(); | |
2077 } | |
2078 | |
2079 /* | |
2080 *----------------- | |
2081 * about window | |
2082 *----------------- | |
2083 */ | |
2084 | |
2085 static GtkWidget *about = NULL; | |
2086 | |
1443 | 2087 static gboolean about_delete_cb(GtkWidget *widget, GdkEventAny *event, gpointer data) |
9 | 2088 { |
2089 gtk_widget_destroy(about); | |
2090 about = NULL; | |
2091 | |
2092 return TRUE; | |
2093 } | |
2094 | |
2095 static void about_window_close(GtkWidget *widget, gpointer data) | |
2096 { | |
2097 if (!about) return; | |
2098 | |
2099 gtk_widget_destroy(about); | |
2100 about = NULL; | |
2101 } | |
2102 | |
2103 static void about_credits_cb(GtkWidget *widget, gpointer data) | |
2104 { | |
2105 help_window_show("credits"); | |
2106 } | |
2107 | |
2108 void show_about_window(void) | |
2109 { | |
2110 GtkWidget *vbox; | |
2111 GtkWidget *hbox; | |
2112 GtkWidget *label; | |
2113 GtkWidget *button; | |
2114 GdkPixbuf *pixbuf; | |
2115 | |
2116 gchar *buf; | |
2117 | |
2118 if (about) | |
2119 { | |
2120 gtk_window_present(GTK_WINDOW(about)); | |
2121 return; | |
2122 } | |
2123 | |
289
6a7298988a7a
Simplify and unify gtk_window creation with the help of
zas_
parents:
288
diff
changeset
|
2124 about = window_new(GTK_WINDOW_TOPLEVEL, "about", NULL, NULL, _("About")); |
9 | 2125 gtk_window_set_type_hint(GTK_WINDOW(about), GDK_WINDOW_TYPE_HINT_DIALOG); |
2126 g_signal_connect(G_OBJECT(about), "delete_event", | |
2127 G_CALLBACK(about_delete_cb), NULL); | |
2128 | |
2129 gtk_container_set_border_width(GTK_CONTAINER(about), PREF_PAD_BORDER); | |
2130 | |
2131 vbox = gtk_vbox_new(FALSE, PREF_PAD_SPACE); | |
2132 gtk_container_add(GTK_CONTAINER(about), vbox); | |
2133 gtk_widget_show(vbox); | |
2134 | |
2135 pixbuf = pixbuf_inline(PIXBUF_INLINE_LOGO); | |
2136 button = gtk_image_new_from_pixbuf(pixbuf); | |
2137 g_object_unref(pixbuf); | |
2138 gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0); | |
2139 gtk_widget_show(button); | |
2140 | |
475 | 2141 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
|
2142 GQ_APPNAME, |
9 | 2143 VERSION, |
1284 | 2144 "2008 - 2009", |
288
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
2145 GQ_WEBSITE, |
d1f74154463e
Replace occurences of Geeqie / geeqie by constants defined in main.h.
zas_
parents:
283
diff
changeset
|
2146 GQ_EMAIL_ADDRESS); |
9 | 2147 label = gtk_label_new(buf); |
2148 g_free(buf); | |
2149 | |
2150 gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_CENTER); | |
2151 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); | |
2152 gtk_widget_show(label); | |
2153 | |
2154 hbox = gtk_hbutton_box_new(); | |
2155 gtk_button_box_set_layout(GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END); | |
2156 gtk_box_set_spacing(GTK_BOX(hbox), PREF_PAD_BUTTON_GAP); | |
2157 gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); | |
2158 gtk_widget_show(hbox); | |
2159 | |
2160 button = pref_button_new(NULL, NULL, _("Credits..."), FALSE, | |
2161 G_CALLBACK(about_credits_cb), NULL); | |
2162 gtk_container_add(GTK_CONTAINER(hbox), button); | |
2163 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
2164 gtk_widget_show(button); | |
2165 | |
2166 button = pref_button_new(NULL, GTK_STOCK_CLOSE, NULL, FALSE, | |
2167 G_CALLBACK(about_window_close), NULL); | |
2168 gtk_container_add(GTK_CONTAINER(hbox), button); | |
2169 GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT); | |
2170 gtk_widget_grab_default(button); | |
2171 gtk_widget_show(button); | |
2172 | |
2173 gtk_widget_show(about); | |
2174 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1053
diff
changeset
|
2175 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |