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