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