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