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