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