Mercurial > geeqie.yaz
annotate src/layout_util.c @ 1273:1ac2baeb8dc9
fixed switch from single to split image
author | nadvornik |
---|---|
date | Sun, 01 Feb 2009 18:27:42 +0000 |
parents | e0e12512cde2 |
children | fa0e7b8e785e |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
281 | 14 #include "main.h" |
9 | 15 #include "layout_util.h" |
16 | |
1022
9962b24b6b43
Move miscellaneous functions to their own files (new misc.[ch]).
zas_
parents:
1004
diff
changeset
|
17 #include "bar_exif.h" |
9 | 18 #include "bar_info.h" |
19 #include "bar_sort.h" | |
20 #include "cache_maint.h" | |
21 #include "collect.h" | |
22 #include "collect-dlg.h" | |
457
5e9c24d3b3a8
Add a replacement for gtk_radio_action_set_current_value() which
zas_
parents:
454
diff
changeset
|
23 #include "compat.h" |
9 | 24 #include "dupe.h" |
25 #include "editors.h" | |
586 | 26 #include "filedata.h" |
902 | 27 #include "history_list.h" |
284 | 28 #include "image-overlay.h" |
94
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
29 #include "img-view.h" |
9 | 30 #include "info.h" |
31 #include "layout_image.h" | |
678
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
32 #include "logwindow.h" |
1022
9962b24b6b43
Move miscellaneous functions to their own files (new misc.[ch]).
zas_
parents:
1004
diff
changeset
|
33 #include "misc.h" |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
34 #include "pan-view.h" |
9 | 35 #include "pixbuf_util.h" |
36 #include "preferences.h" | |
37 #include "print.h" | |
38 #include "search.h" | |
39 #include "ui_fileops.h" | |
40 #include "ui_menu.h" | |
41 #include "ui_misc.h" | |
42 #include "ui_tabcomp.h" | |
1022
9962b24b6b43
Move miscellaneous functions to their own files (new misc.[ch]).
zas_
parents:
1004
diff
changeset
|
43 #include "utilops.h" |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
44 #include "view_dir.h" |
648
e34c1002e553
Move some functions from main.[ch] to new window.[ch].
zas_
parents:
601
diff
changeset
|
45 #include "window.h" |
1214
31402ecb2aed
write metadata after timeout, image change or dir change
nadvornik
parents:
1176
diff
changeset
|
46 #include "metadata.h" |
9 | 47 |
48 #include <gdk/gdkkeysyms.h> /* for keyboard values */ | |
49 | |
50 | |
51 #define MENU_EDIT_ACTION_OFFSET 16 | |
52 | |
53 | |
54 /* | |
55 *----------------------------------------------------------------------------- | |
56 * keyboard handler | |
57 *----------------------------------------------------------------------------- | |
58 */ | |
59 | |
60 static guint tree_key_overrides[] = { | |
61 GDK_Page_Up, GDK_KP_Page_Up, | |
62 GDK_Page_Down, GDK_KP_Page_Down, | |
63 GDK_Home, GDK_KP_Home, | |
64 GDK_End, GDK_KP_End | |
65 }; | |
66 | |
736 | 67 static gboolean layout_key_match(guint keyval) |
9 | 68 { |
736 | 69 guint i; |
9 | 70 |
71 for (i = 0; i < sizeof(tree_key_overrides) / sizeof(guint); i++) | |
72 { | |
73 if (keyval == tree_key_overrides[i]) return TRUE; | |
74 } | |
75 | |
76 return FALSE; | |
77 } | |
78 | |
160 | 79 gint layout_key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data) |
9 | 80 { |
81 LayoutWindow *lw = data; | |
82 gint stop_signal = FALSE; | |
83 gint x = 0; | |
84 gint y = 0; | |
85 | |
86 if (lw->path_entry && GTK_WIDGET_HAS_FOCUS(lw->path_entry)) | |
87 { | |
783 | 88 if (event->keyval == GDK_Escape && lw->dir_fd) |
9 | 89 { |
783 | 90 gtk_entry_set_text(GTK_ENTRY(lw->path_entry), lw->dir_fd->path); |
9 | 91 } |
92 | |
93 /* the gtkaccelgroup of the window is stealing presses before they get to the entry (and more), | |
94 * so when the some widgets have focus, give them priority (HACK) | |
95 */ | |
96 if (gtk_widget_event(lw->path_entry, (GdkEvent *)event)) | |
97 { | |
98 return TRUE; | |
99 } | |
100 } | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
101 if (lw->vd && lw->dir_view_type == DIRVIEW_TREE && GTK_WIDGET_HAS_FOCUS(lw->vd->view) && |
9 | 102 !layout_key_match(event->keyval) && |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
103 gtk_widget_event(lw->vd->view, (GdkEvent *)event)) |
9 | 104 { |
105 return TRUE; | |
106 } | |
107 if (lw->bar_info && | |
108 bar_info_event(lw->bar_info, (GdkEvent *)event)) | |
109 { | |
110 return TRUE; | |
111 } | |
112 | |
160 | 113 /* |
114 if (event->type == GDK_KEY_PRESS && lw->full_screen && | |
995 | 115 gtk_accel_groups_activate(G_OBJECT(lw->window), event->keyval, event->state)) |
160 | 116 return TRUE; |
117 */ | |
118 | |
9 | 119 if (lw->image && |
160 | 120 (GTK_WIDGET_HAS_FOCUS(lw->image->widget) || (lw->tools && widget == lw->window) || lw->full_screen) ) |
9 | 121 { |
84
ba3c39002a24
Fri Oct 20 08:00:08 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
122 stop_signal = TRUE; |
9 | 123 switch (event->keyval) |
124 { | |
125 case GDK_Left: case GDK_KP_Left: | |
126 x -= 1; | |
127 break; | |
128 case GDK_Right: case GDK_KP_Right: | |
129 x += 1; | |
130 break; | |
131 case GDK_Up: case GDK_KP_Up: | |
132 y -= 1; | |
133 break; | |
134 case GDK_Down: case GDK_KP_Down: | |
135 y += 1; | |
136 break; | |
84
ba3c39002a24
Fri Oct 20 08:00:08 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
137 default: |
ba3c39002a24
Fri Oct 20 08:00:08 2006 John Ellis <johne@verizon.net>
gqview
parents:
82
diff
changeset
|
138 stop_signal = FALSE; |
9 | 139 break; |
140 } | |
94
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
141 |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
142 if (!stop_signal && |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
143 !(event->state & GDK_CONTROL_MASK)) |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
144 { |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
145 stop_signal = TRUE; |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
146 switch (event->keyval) |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
147 { |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
148 case GDK_Menu: |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
149 layout_image_menu_popup(lw); |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
150 break; |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
151 default: |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
152 stop_signal = FALSE; |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
153 break; |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
154 } |
50dc5a14d37b
Thu Nov 2 17:51:31 2006 John Ellis <johne@verizon.net>
gqview
parents:
86
diff
changeset
|
155 } |
9 | 156 } |
157 | |
158 if (x != 0 || y!= 0) | |
159 { | |
160 keyboard_scroll_calc(&x, &y, event); | |
1047 | 161 layout_image_scroll(lw, x, y, (event->state & GDK_SHIFT_MASK)); |
9 | 162 } |
163 | |
164 return stop_signal; | |
165 } | |
166 | |
167 void layout_keyboard_init(LayoutWindow *lw, GtkWidget *window) | |
168 { | |
169 g_signal_connect(G_OBJECT(window), "key_press_event", | |
170 G_CALLBACK(layout_key_press_cb), lw); | |
171 } | |
172 | |
173 /* | |
174 *----------------------------------------------------------------------------- | |
175 * menu callbacks | |
176 *----------------------------------------------------------------------------- | |
177 */ | |
442 | 178 |
179 | |
160 | 180 static GtkWidget *layout_window(LayoutWindow *lw) |
181 { | |
182 return lw->full_screen ? lw->full_screen->window : lw->window; | |
183 } | |
9 | 184 |
894 | 185 static void layout_exit_fullscreen(LayoutWindow *lw) |
186 { | |
187 if (!lw->full_screen) return; | |
188 layout_image_full_screen_stop(lw); | |
189 } | |
190 | |
9 | 191 static void layout_menu_new_window_cb(GtkAction *action, gpointer data) |
192 { | |
193 LayoutWindow *lw = data; | |
194 LayoutWindow *nw; | |
195 | |
894 | 196 layout_exit_fullscreen(lw); |
160 | 197 |
9 | 198 nw = layout_new(NULL, FALSE, FALSE); |
329 | 199 layout_sort_set(nw, options->file_sort.method, options->file_sort.ascending); |
783 | 200 layout_set_fd(nw, lw->dir_fd); |
9 | 201 } |
202 | |
203 static void layout_menu_new_cb(GtkAction *action, gpointer data) | |
204 { | |
160 | 205 LayoutWindow *lw = data; |
894 | 206 |
207 layout_exit_fullscreen(lw); | |
9 | 208 collection_window_new(NULL); |
209 } | |
210 | |
211 static void layout_menu_open_cb(GtkAction *action, gpointer data) | |
212 { | |
160 | 213 LayoutWindow *lw = data; |
894 | 214 |
215 layout_exit_fullscreen(lw); | |
9 | 216 collection_dialog_load(NULL); |
217 } | |
218 | |
219 static void layout_menu_search_cb(GtkAction *action, gpointer data) | |
220 { | |
221 LayoutWindow *lw = data; | |
222 | |
894 | 223 layout_exit_fullscreen(lw); |
783 | 224 search_new(lw->dir_fd, layout_image_get_fd(lw)); |
9 | 225 } |
226 | |
227 static void layout_menu_dupes_cb(GtkAction *action, gpointer data) | |
228 { | |
160 | 229 LayoutWindow *lw = data; |
230 | |
894 | 231 layout_exit_fullscreen(lw); |
9 | 232 dupe_window_new(DUPE_MATCH_NAME); |
233 } | |
234 | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
235 static void layout_menu_pan_cb(GtkAction *action, gpointer data) |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
236 { |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
237 LayoutWindow *lw = data; |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
238 |
894 | 239 layout_exit_fullscreen(lw); |
783 | 240 pan_window_new(lw->dir_fd); |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
241 } |
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
242 |
9 | 243 static void layout_menu_print_cb(GtkAction *action, gpointer data) |
244 { | |
245 LayoutWindow *lw = data; | |
246 | |
160 | 247 print_window_new(layout_image_get_fd(lw), layout_selection_list(lw), layout_list(lw), layout_window(lw)); |
9 | 248 } |
249 | |
250 static void layout_menu_dir_cb(GtkAction *action, gpointer data) | |
251 { | |
252 LayoutWindow *lw = data; | |
253 | |
1231 | 254 file_util_create_dir(lw->dir_fd, layout_window(lw), NULL, NULL); |
9 | 255 } |
256 | |
257 static void layout_menu_copy_cb(GtkAction *action, gpointer data) | |
258 { | |
259 LayoutWindow *lw = data; | |
260 | |
160 | 261 file_util_copy(NULL, layout_selection_list(lw), NULL, layout_window(lw)); |
9 | 262 } |
263 | |
497 | 264 static void layout_menu_copy_path_cb(GtkAction *action, gpointer data) |
265 { | |
266 LayoutWindow *lw = data; | |
267 | |
268 file_util_copy_path_list_to_clipboard(layout_selection_list(lw)); | |
269 } | |
270 | |
9 | 271 static void layout_menu_move_cb(GtkAction *action, gpointer data) |
272 { | |
273 LayoutWindow *lw = data; | |
274 | |
160 | 275 file_util_move(NULL, layout_selection_list(lw), NULL, layout_window(lw)); |
9 | 276 } |
277 | |
278 static void layout_menu_rename_cb(GtkAction *action, gpointer data) | |
279 { | |
280 LayoutWindow *lw = data; | |
281 | |
160 | 282 file_util_rename(NULL, layout_selection_list(lw), layout_window(lw)); |
9 | 283 } |
284 | |
285 static void layout_menu_delete_cb(GtkAction *action, gpointer data) | |
286 { | |
287 LayoutWindow *lw = data; | |
288 | |
160 | 289 file_util_delete(NULL, layout_selection_list(lw), layout_window(lw)); |
9 | 290 } |
291 | |
292 static void layout_menu_close_cb(GtkAction *action, gpointer data) | |
293 { | |
294 LayoutWindow *lw = data; | |
295 | |
894 | 296 layout_exit_fullscreen(lw); |
9 | 297 layout_close(lw); |
298 } | |
299 | |
300 static void layout_menu_exit_cb(GtkAction *action, gpointer data) | |
301 { | |
278 | 302 exit_program(); |
9 | 303 } |
304 | |
305 static void layout_menu_alter_90_cb(GtkAction *action, gpointer data) | |
306 { | |
307 LayoutWindow *lw = data; | |
308 | |
309 layout_image_alter(lw, ALTER_ROTATE_90); | |
310 } | |
311 | |
312 static void layout_menu_alter_90cc_cb(GtkAction *action, gpointer data) | |
313 { | |
314 LayoutWindow *lw = data; | |
315 | |
316 layout_image_alter(lw, ALTER_ROTATE_90_CC); | |
317 } | |
318 | |
319 static void layout_menu_alter_180_cb(GtkAction *action, gpointer data) | |
320 { | |
321 LayoutWindow *lw = data; | |
322 | |
323 layout_image_alter(lw, ALTER_ROTATE_180); | |
324 } | |
325 | |
326 static void layout_menu_alter_mirror_cb(GtkAction *action, gpointer data) | |
327 { | |
328 LayoutWindow *lw = data; | |
329 | |
330 layout_image_alter(lw, ALTER_MIRROR); | |
331 } | |
332 | |
333 static void layout_menu_alter_flip_cb(GtkAction *action, gpointer data) | |
334 { | |
335 LayoutWindow *lw = data; | |
336 | |
337 layout_image_alter(lw, ALTER_FLIP); | |
338 } | |
339 | |
82
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
340 static void layout_menu_alter_desaturate_cb(GtkAction *action, gpointer data) |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
341 { |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
342 LayoutWindow *lw = data; |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
343 |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
344 layout_image_alter(lw, ALTER_DESATURATE); |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
345 } |
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
346 |
439 | 347 static void layout_menu_alter_none_cb(GtkAction *action, gpointer data) |
348 { | |
349 LayoutWindow *lw = data; | |
350 | |
351 layout_image_alter(lw, ALTER_NONE); | |
352 } | |
353 | |
9 | 354 static void layout_menu_info_cb(GtkAction *action, gpointer data) |
355 { | |
356 LayoutWindow *lw = data; | |
357 GList *list; | |
138 | 358 FileData *fd = NULL; |
9 | 359 |
360 list = layout_selection_list(lw); | |
138 | 361 if (!list) fd = layout_image_get_fd(lw); |
9 | 362 |
479
5212d4fed37f
Ensure Properties dialog is displayed above fullscreen window.
zas_
parents:
475
diff
changeset
|
363 info_window_new(fd, list, NULL); |
9 | 364 } |
365 | |
366 | |
367 static void layout_menu_config_cb(GtkAction *action, gpointer data) | |
368 { | |
160 | 369 LayoutWindow *lw = data; |
370 | |
894 | 371 layout_exit_fullscreen(lw); |
9 | 372 show_config_window(); |
373 } | |
374 | |
375 static void layout_menu_remove_thumb_cb(GtkAction *action, gpointer data) | |
376 { | |
160 | 377 LayoutWindow *lw = data; |
378 | |
894 | 379 layout_exit_fullscreen(lw); |
9 | 380 cache_manager_show(); |
381 } | |
382 | |
383 static void layout_menu_wallpaper_cb(GtkAction *action, gpointer data) | |
384 { | |
385 LayoutWindow *lw = data; | |
386 | |
387 layout_image_to_root(lw); | |
388 } | |
389 | |
1047 | 390 /* single window zoom */ |
9 | 391 static void layout_menu_zoom_in_cb(GtkAction *action, gpointer data) |
392 { | |
393 LayoutWindow *lw = data; | |
394 | |
1047 | 395 layout_image_zoom_adjust(lw, get_zoom_increment(), FALSE); |
9 | 396 } |
397 | |
398 static void layout_menu_zoom_out_cb(GtkAction *action, gpointer data) | |
399 { | |
400 LayoutWindow *lw = data; | |
401 | |
1047 | 402 layout_image_zoom_adjust(lw, -get_zoom_increment(), FALSE); |
9 | 403 } |
404 | |
405 static void layout_menu_zoom_1_1_cb(GtkAction *action, gpointer data) | |
406 { | |
407 LayoutWindow *lw = data; | |
408 | |
1047 | 409 layout_image_zoom_set(lw, 1.0, FALSE); |
9 | 410 } |
411 | |
412 static void layout_menu_zoom_fit_cb(GtkAction *action, gpointer data) | |
413 { | |
414 LayoutWindow *lw = data; | |
415 | |
1047 | 416 layout_image_zoom_set(lw, 0.0, FALSE); |
9 | 417 } |
418 | |
159 | 419 static void layout_menu_zoom_fit_hor_cb(GtkAction *action, gpointer data) |
420 { | |
421 LayoutWindow *lw = data; | |
422 | |
1268
8c39e0bd7e08
Invert Horizontally vs vertically zoom fit, it was a TRUE/FALSE mismatch, reported by Christopher Beland.
zas_
parents:
1231
diff
changeset
|
423 layout_image_zoom_set_fill_geometry(lw, FALSE, FALSE); |
159 | 424 } |
425 | |
426 static void layout_menu_zoom_fit_vert_cb(GtkAction *action, gpointer data) | |
427 { | |
428 LayoutWindow *lw = data; | |
429 | |
1268
8c39e0bd7e08
Invert Horizontally vs vertically zoom fit, it was a TRUE/FALSE mismatch, reported by Christopher Beland.
zas_
parents:
1231
diff
changeset
|
430 layout_image_zoom_set_fill_geometry(lw, TRUE, FALSE); |
159 | 431 } |
432 | |
433 static void layout_menu_zoom_2_1_cb(GtkAction *action, gpointer data) | |
434 { | |
435 LayoutWindow *lw = data; | |
436 | |
1047 | 437 layout_image_zoom_set(lw, 2.0, FALSE); |
159 | 438 } |
439 | |
440 static void layout_menu_zoom_3_1_cb(GtkAction *action, gpointer data) | |
441 { | |
442 LayoutWindow *lw = data; | |
443 | |
1047 | 444 layout_image_zoom_set(lw, 3.0, FALSE); |
159 | 445 } |
446 static void layout_menu_zoom_4_1_cb(GtkAction *action, gpointer data) | |
447 { | |
448 LayoutWindow *lw = data; | |
449 | |
1047 | 450 layout_image_zoom_set(lw, 4.0, FALSE); |
159 | 451 } |
452 | |
453 static void layout_menu_zoom_1_2_cb(GtkAction *action, gpointer data) | |
454 { | |
455 LayoutWindow *lw = data; | |
456 | |
1047 | 457 layout_image_zoom_set(lw, -2.0, FALSE); |
159 | 458 } |
459 | |
460 static void layout_menu_zoom_1_3_cb(GtkAction *action, gpointer data) | |
461 { | |
462 LayoutWindow *lw = data; | |
463 | |
1047 | 464 layout_image_zoom_set(lw, -3.0, FALSE); |
159 | 465 } |
466 | |
467 static void layout_menu_zoom_1_4_cb(GtkAction *action, gpointer data) | |
468 { | |
469 LayoutWindow *lw = data; | |
470 | |
1047 | 471 layout_image_zoom_set(lw, -4.0, FALSE); |
472 } | |
473 | |
474 /* connected zoom */ | |
475 static void layout_menu_connect_zoom_in_cb(GtkAction *action, gpointer data) | |
476 { | |
477 LayoutWindow *lw = data; | |
478 | |
479 layout_image_zoom_adjust(lw, get_zoom_increment(), TRUE); | |
480 } | |
481 | |
482 static void layout_menu_connect_zoom_out_cb(GtkAction *action, gpointer data) | |
483 { | |
484 LayoutWindow *lw = data; | |
485 | |
486 layout_image_zoom_adjust(lw, -get_zoom_increment(), TRUE); | |
487 } | |
488 | |
489 static void layout_menu_connect_zoom_1_1_cb(GtkAction *action, gpointer data) | |
490 { | |
491 LayoutWindow *lw = data; | |
492 | |
493 layout_image_zoom_set(lw, 1.0, TRUE); | |
494 } | |
495 | |
496 static void layout_menu_connect_zoom_fit_cb(GtkAction *action, gpointer data) | |
497 { | |
498 LayoutWindow *lw = data; | |
499 | |
500 layout_image_zoom_set(lw, 0.0, TRUE); | |
501 } | |
502 | |
503 static void layout_menu_connect_zoom_fit_hor_cb(GtkAction *action, gpointer data) | |
504 { | |
505 LayoutWindow *lw = data; | |
506 | |
1268
8c39e0bd7e08
Invert Horizontally vs vertically zoom fit, it was a TRUE/FALSE mismatch, reported by Christopher Beland.
zas_
parents:
1231
diff
changeset
|
507 layout_image_zoom_set_fill_geometry(lw, FALSE, TRUE); |
1047 | 508 } |
509 | |
510 static void layout_menu_connect_zoom_fit_vert_cb(GtkAction *action, gpointer data) | |
511 { | |
512 LayoutWindow *lw = data; | |
513 | |
1268
8c39e0bd7e08
Invert Horizontally vs vertically zoom fit, it was a TRUE/FALSE mismatch, reported by Christopher Beland.
zas_
parents:
1231
diff
changeset
|
514 layout_image_zoom_set_fill_geometry(lw, TRUE, TRUE); |
1047 | 515 } |
516 | |
517 static void layout_menu_connect_zoom_2_1_cb(GtkAction *action, gpointer data) | |
518 { | |
519 LayoutWindow *lw = data; | |
520 | |
521 layout_image_zoom_set(lw, 2.0, TRUE); | |
522 } | |
523 | |
524 static void layout_menu_connect_zoom_3_1_cb(GtkAction *action, gpointer data) | |
525 { | |
526 LayoutWindow *lw = data; | |
527 | |
528 layout_image_zoom_set(lw, 3.0, TRUE); | |
529 } | |
530 static void layout_menu_connect_zoom_4_1_cb(GtkAction *action, gpointer data) | |
531 { | |
532 LayoutWindow *lw = data; | |
533 | |
534 layout_image_zoom_set(lw, 4.0, TRUE); | |
535 } | |
536 | |
537 static void layout_menu_connect_zoom_1_2_cb(GtkAction *action, gpointer data) | |
538 { | |
539 LayoutWindow *lw = data; | |
540 | |
541 layout_image_zoom_set(lw, -2.0, TRUE); | |
542 } | |
543 | |
544 static void layout_menu_connect_zoom_1_3_cb(GtkAction *action, gpointer data) | |
545 { | |
546 LayoutWindow *lw = data; | |
547 | |
548 layout_image_zoom_set(lw, -3.0, TRUE); | |
549 } | |
550 | |
551 static void layout_menu_connect_zoom_1_4_cb(GtkAction *action, gpointer data) | |
552 { | |
553 LayoutWindow *lw = data; | |
554 | |
555 layout_image_zoom_set(lw, -4.0, TRUE); | |
159 | 556 } |
557 | |
558 | |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
559 static void layout_menu_split_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data) |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
560 { |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
561 LayoutWindow *lw = data; |
894 | 562 ImageSplitMode mode; |
160 | 563 |
894 | 564 layout_exit_fullscreen(lw); |
442 | 565 |
894 | 566 mode = gtk_radio_action_get_current_value(action); |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
567 if (mode == lw->split_mode) mode = 0; /* toggle back */ |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
568 |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
569 layout_split_change(lw, mode); |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
570 } |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
571 |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
572 |
9 | 573 static void layout_menu_thumb_cb(GtkToggleAction *action, gpointer data) |
574 { | |
575 LayoutWindow *lw = data; | |
576 | |
577 layout_thumb_set(lw, gtk_toggle_action_get_active(action)); | |
578 } | |
579 | |
132 | 580 |
9 | 581 static void layout_menu_list_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data) |
582 { | |
583 LayoutWindow *lw = data; | |
894 | 584 |
585 layout_exit_fullscreen(lw); | |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
523
diff
changeset
|
586 layout_views_set(lw, lw->dir_view_type, (gtk_radio_action_get_current_value(action) == 1) ? FILEVIEW_ICON : FILEVIEW_LIST); |
9 | 587 } |
588 | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
589 static void layout_menu_view_dir_as_cb(GtkRadioAction *action, GtkRadioAction *current, gpointer data) |
9 | 590 { |
591 LayoutWindow *lw = data; | |
592 | |
894 | 593 layout_exit_fullscreen(lw); |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
523
diff
changeset
|
594 layout_views_set(lw, (DirViewType) gtk_radio_action_get_current_value(action), lw->file_view_type); |
9 | 595 } |
596 | |
159 | 597 static void layout_menu_view_in_new_window_cb(GtkAction *action, gpointer data) |
598 { | |
599 LayoutWindow *lw = data; | |
600 | |
894 | 601 layout_exit_fullscreen(lw); |
159 | 602 view_window_new(layout_image_get_fd(lw)); |
603 } | |
604 | |
9 | 605 static void layout_menu_fullscreen_cb(GtkAction *action, gpointer data) |
606 { | |
607 LayoutWindow *lw = data; | |
608 | |
609 layout_image_full_screen_toggle(lw); | |
610 } | |
611 | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
612 static void layout_menu_escape_cb(GtkAction *action, gpointer data) |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
613 { |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
614 LayoutWindow *lw = data; |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
615 |
894 | 616 layout_exit_fullscreen(lw); |
617 | |
618 /* FIXME:interrupting thumbs no longer allowed */ | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
619 #if 0 |
894 | 620 interrupt_thumbs(); |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
621 #endif |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
622 } |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
623 |
159 | 624 static void layout_menu_overlay_cb(GtkAction *action, gpointer data) |
625 { | |
626 LayoutWindow *lw = data; | |
627 | |
482 | 628 image_osd_toggle(lw->image); |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
629 } |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
630 |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
631 static void layout_menu_histogram_chan_cb(GtkAction *action, gpointer data) |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
632 { |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
633 LayoutWindow *lw = data; |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
634 |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
635 image_osd_histogram_chan_toggle(lw->image); |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
636 } |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
637 |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
638 static void layout_menu_histogram_log_cb(GtkAction *action, gpointer data) |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
639 { |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
640 LayoutWindow *lw = data; |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
641 |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
642 image_osd_histogram_log_toggle(lw->image); |
159 | 643 } |
644 | |
9 | 645 static void layout_menu_refresh_cb(GtkAction *action, gpointer data) |
646 { | |
647 LayoutWindow *lw = data; | |
648 | |
649 layout_refresh(lw); | |
650 } | |
651 | |
652 static void layout_menu_float_cb(GtkToggleAction *action, gpointer data) | |
653 { | |
654 LayoutWindow *lw = data; | |
894 | 655 |
656 layout_exit_fullscreen(lw); | |
9 | 657 |
894 | 658 if (lw->tools_float == gtk_toggle_action_get_active(action)) return; |
659 layout_tools_float_toggle(lw); | |
9 | 660 } |
661 | |
662 static void layout_menu_hide_cb(GtkAction *action, gpointer data) | |
663 { | |
664 LayoutWindow *lw = data; | |
665 | |
894 | 666 layout_exit_fullscreen(lw); |
9 | 667 layout_tools_hide_toggle(lw); |
668 } | |
669 | |
670 static void layout_menu_toolbar_cb(GtkToggleAction *action, gpointer data) | |
671 { | |
672 LayoutWindow *lw = data; | |
894 | 673 |
674 layout_exit_fullscreen(lw); | |
9 | 675 |
894 | 676 if (lw->toolbar_hidden == gtk_toggle_action_get_active(action)) return; |
677 layout_toolbar_toggle(lw); | |
9 | 678 } |
679 | |
680 static void layout_menu_bar_info_cb(GtkToggleAction *action, gpointer data) | |
681 { | |
682 LayoutWindow *lw = data; | |
894 | 683 |
684 layout_exit_fullscreen(lw); | |
9 | 685 |
894 | 686 if (lw->bar_info_enabled == gtk_toggle_action_get_active(action)) return; |
687 layout_bar_info_toggle(lw); | |
9 | 688 } |
689 | |
690 static void layout_menu_bar_exif_cb(GtkToggleAction *action, gpointer data) | |
691 { | |
692 LayoutWindow *lw = data; | |
894 | 693 |
694 layout_exit_fullscreen(lw); | |
9 | 695 |
894 | 696 if (lw->bar_exif_enabled == gtk_toggle_action_get_active(action)) return; |
697 layout_bar_exif_toggle(lw); | |
9 | 698 } |
699 | |
700 static void layout_menu_bar_sort_cb(GtkToggleAction *action, gpointer data) | |
701 { | |
702 LayoutWindow *lw = data; | |
894 | 703 |
704 layout_exit_fullscreen(lw); | |
9 | 705 |
894 | 706 if (lw->bar_sort_enabled == gtk_toggle_action_get_active(action)) return; |
707 layout_bar_sort_toggle(lw); | |
9 | 708 } |
709 | |
710 static void layout_menu_slideshow_cb(GtkAction *action, gpointer data) | |
711 { | |
712 LayoutWindow *lw = data; | |
713 | |
714 layout_image_slideshow_toggle(lw); | |
715 } | |
716 | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
717 static void layout_menu_slideshow_pause_cb(GtkAction *action, gpointer data) |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
718 { |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
719 LayoutWindow *lw = data; |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
720 |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
721 layout_image_slideshow_pause_toggle(lw); |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
722 } |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
723 |
9 | 724 static void layout_menu_help_cb(GtkAction *action, gpointer data) |
725 { | |
160 | 726 LayoutWindow *lw = data; |
894 | 727 |
728 layout_exit_fullscreen(lw); | |
9 | 729 help_window_show("html_contents"); |
730 } | |
731 | |
732 static void layout_menu_help_keys_cb(GtkAction *action, gpointer data) | |
733 { | |
160 | 734 LayoutWindow *lw = data; |
894 | 735 |
736 layout_exit_fullscreen(lw); | |
9 | 737 help_window_show("documentation"); |
738 } | |
739 | |
740 static void layout_menu_notes_cb(GtkAction *action, gpointer data) | |
741 { | |
160 | 742 LayoutWindow *lw = data; |
894 | 743 |
744 layout_exit_fullscreen(lw); | |
9 | 745 help_window_show("release_notes"); |
746 } | |
747 | |
748 static void layout_menu_about_cb(GtkAction *action, gpointer data) | |
749 { | |
160 | 750 LayoutWindow *lw = data; |
894 | 751 |
752 layout_exit_fullscreen(lw); | |
9 | 753 show_about_window(); |
754 } | |
755 | |
678
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
756 static void layout_menu_log_window_cb(GtkAction *action, gpointer data) |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
757 { |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
758 LayoutWindow *lw = data; |
894 | 759 |
760 layout_exit_fullscreen(lw); | |
678
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
761 log_window_new(); |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
762 } |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
763 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
764 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
765 /* |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
766 *----------------------------------------------------------------------------- |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
767 * select menu |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
768 *----------------------------------------------------------------------------- |
442 | 769 */ |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
770 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
771 static void layout_menu_select_all_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
772 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
773 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
774 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
775 layout_select_all(lw); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
776 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
777 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
778 static void layout_menu_unselect_all_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
779 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
780 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
781 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
782 layout_select_none(lw); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
783 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
784 |
601 | 785 static void layout_menu_invert_selection_cb(GtkAction *action, gpointer data) |
786 { | |
787 LayoutWindow *lw = data; | |
788 | |
789 layout_select_invert(lw); | |
790 } | |
791 | |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
792 static void layout_menu_marks_cb(GtkToggleAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
793 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
794 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
795 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
796 layout_marks_set(lw, gtk_toggle_action_get_active(action)); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
797 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
798 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
799 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
800 static void layout_menu_set_mark_sel_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
801 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
802 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
803 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
804 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 805 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
806 layout_selection_to_mark(lw, mark, STM_MODE_SET); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
807 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
808 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
809 static void layout_menu_res_mark_sel_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
810 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
811 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
812 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
813 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 814 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
815 layout_selection_to_mark(lw, mark, STM_MODE_RESET); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
816 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
817 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
818 static void layout_menu_toggle_mark_sel_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
819 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
820 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
821 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
822 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 823 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
824 layout_selection_to_mark(lw, mark, STM_MODE_TOGGLE); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
825 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
826 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
827 static void layout_menu_sel_mark_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
828 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
829 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
830 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
831 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 832 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
833 layout_mark_to_selection(lw, mark, MTS_MODE_SET); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
834 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
835 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
836 static void layout_menu_sel_mark_or_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
837 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
838 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
839 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
840 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 841 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
842 layout_mark_to_selection(lw, mark, MTS_MODE_OR); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
843 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
844 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
845 static void layout_menu_sel_mark_and_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
846 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
847 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
848 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
849 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 850 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
851 layout_mark_to_selection(lw, mark, MTS_MODE_AND); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
852 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
853 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
854 static void layout_menu_sel_mark_minus_cb(GtkAction *action, gpointer data) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
855 { |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
856 LayoutWindow *lw = data; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
857 gint mark = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(action), "mark_num")); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
858 g_assert(mark >= 1 && mark <= FILEDATA_MARKS_SIZE); |
442 | 859 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
860 layout_mark_to_selection(lw, mark, MTS_MODE_MINUS); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
861 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
862 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
863 |
9 | 864 /* |
865 *----------------------------------------------------------------------------- | |
159 | 866 * go menu |
867 *----------------------------------------------------------------------------- | |
442 | 868 */ |
159 | 869 |
870 static void layout_menu_image_first_cb(GtkAction *action, gpointer data) | |
871 { | |
872 LayoutWindow *lw = data; | |
873 layout_image_first(lw); | |
874 } | |
875 | |
876 static void layout_menu_image_prev_cb(GtkAction *action, gpointer data) | |
877 { | |
878 LayoutWindow *lw = data; | |
879 layout_image_prev(lw); | |
880 } | |
881 | |
882 static void layout_menu_image_next_cb(GtkAction *action, gpointer data) | |
883 { | |
884 LayoutWindow *lw = data; | |
885 layout_image_next(lw); | |
886 } | |
887 | |
888 static void layout_menu_image_last_cb(GtkAction *action, gpointer data) | |
889 { | |
890 LayoutWindow *lw = data; | |
891 layout_image_last(lw); | |
892 } | |
893 | |
894 | |
895 /* | |
896 *----------------------------------------------------------------------------- | |
9 | 897 * edit menu |
898 *----------------------------------------------------------------------------- | |
442 | 899 */ |
9 | 900 |
901 static void layout_menu_edit_cb(GtkAction *action, gpointer data) | |
902 { | |
903 LayoutWindow *lw = data; | |
904 GList *list; | |
1272 | 905 const gchar *key = gtk_action_get_name(action); |
906 | |
907 if (!editor_window_flag_set(key)) | |
894 | 908 layout_exit_fullscreen(lw); |
160 | 909 |
9 | 910 list = layout_selection_list(lw); |
1272 | 911 file_util_start_editor_from_filelist(key, list, lw->window); |
138 | 912 filelist_free(list); |
9 | 913 } |
914 | |
1272 | 915 #if 0 |
9 | 916 static void layout_menu_edit_update(LayoutWindow *lw) |
917 { | |
918 gint i; | |
919 | |
920 /* main edit menu */ | |
921 | |
922 if (!lw->action_group) return; | |
923 | |
569
fd51eac09ead
Use GQ_EDITOR_GENERIC_SLOTS instead of hardcoded value.
zas_
parents:
556
diff
changeset
|
924 for (i = 0; i < GQ_EDITOR_GENERIC_SLOTS; i++) |
9 | 925 { |
926 gchar *key; | |
927 GtkAction *action; | |
731
fa8f7d7396cf
Introduce an helper function that returns the name of an editor.
zas_
parents:
730
diff
changeset
|
928 const gchar *name; |
fa8f7d7396cf
Introduce an helper function that returns the name of an editor.
zas_
parents:
730
diff
changeset
|
929 |
9 | 930 key = g_strdup_printf("Editor%d", i); |
931 | |
932 action = gtk_action_group_get_action(lw->action_group, key); | |
933 g_object_set_data(G_OBJECT(action), "edit_index", GINT_TO_POINTER(i)); | |
934 | |
731
fa8f7d7396cf
Introduce an helper function that returns the name of an editor.
zas_
parents:
730
diff
changeset
|
935 name = editor_get_name(i); |
fa8f7d7396cf
Introduce an helper function that returns the name of an editor.
zas_
parents:
730
diff
changeset
|
936 if (name) |
9 | 937 { |
731
fa8f7d7396cf
Introduce an helper function that returns the name of an editor.
zas_
parents:
730
diff
changeset
|
938 gchar *text = g_strdup_printf(_("_%d %s..."), i, name); |
9 | 939 |
940 g_object_set(action, "label", text, | |
941 "sensitive", TRUE, NULL); | |
942 g_free(text); | |
943 } | |
944 else | |
945 { | |
454 | 946 gchar *text; |
947 | |
948 text = g_strdup_printf(_("_%d empty"), i); | |
949 g_object_set(action, "label", text, "sensitive", FALSE, NULL); | |
950 g_free(text); | |
9 | 951 } |
952 | |
953 g_free(key); | |
954 } | |
955 } | |
956 | |
957 void layout_edit_update_all(void) | |
958 { | |
959 GList *work; | |
960 | |
961 work = layout_window_list; | |
962 while (work) | |
963 { | |
964 LayoutWindow *lw = work->data; | |
965 work = work->next; | |
966 | |
967 layout_menu_edit_update(lw); | |
968 } | |
969 } | |
970 | |
1272 | 971 #endif |
972 | |
9 | 973 /* |
974 *----------------------------------------------------------------------------- | |
975 * recent menu | |
976 *----------------------------------------------------------------------------- | |
977 */ | |
978 | |
979 static void layout_menu_recent_cb(GtkWidget *widget, gpointer data) | |
980 { | |
981 gint n; | |
982 gchar *path; | |
983 | |
984 n = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget), "recent_index")); | |
985 | |
986 path = g_list_nth_data(history_list_get_by_key("recent"), n); | |
987 | |
988 if (!path) return; | |
989 | |
990 /* make a copy of it */ | |
991 path = g_strdup(path); | |
992 collection_window_new(path); | |
993 g_free(path); | |
994 } | |
995 | |
996 static void layout_menu_recent_update(LayoutWindow *lw) | |
997 { | |
998 GtkWidget *menu; | |
999 GtkWidget *recent; | |
1000 GtkWidget *item; | |
1001 GList *list; | |
1002 gint n; | |
1003 | |
1004 if (!lw->ui_manager) return; | |
1005 | |
1006 list = history_list_get_by_key("recent"); | |
1007 n = 0; | |
1008 | |
1009 menu = gtk_menu_new(); | |
1010 | |
1011 while (list) | |
1012 { | |
1176
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1013 const gchar *filename = filename_from_path((gchar *)list->data); |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1014 gchar *name; |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1015 gboolean free_name = FALSE; |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1016 |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1017 if (file_extension_match(filename, GQ_COLLECTION_EXT)) |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1018 { |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1019 name = remove_extension_from_path(filename); |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1020 free_name = TRUE; |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1021 } |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1022 else |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1023 { |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1024 name = (gchar *) filename; |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1025 } |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1026 |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1027 item = menu_item_add_simple(menu, name, G_CALLBACK(layout_menu_recent_cb), lw); |
d3e51e1a02f8
Hide .gqv extension from collection name in collection window title and recent menu list.
zas_
parents:
1167
diff
changeset
|
1028 if (free_name) g_free(name); |
9 | 1029 g_object_set_data(G_OBJECT(item), "recent_index", GINT_TO_POINTER(n)); |
1030 list = list->next; | |
1031 n++; | |
1032 } | |
1033 | |
1034 if (n == 0) | |
1035 { | |
1036 menu_item_add(menu, _("Empty"), NULL, NULL); | |
1037 } | |
1038 | |
1039 recent = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu/FileMenu/OpenRecent"); | |
1040 gtk_menu_item_set_submenu(GTK_MENU_ITEM(recent), menu); | |
1041 gtk_widget_set_sensitive(recent, (n != 0)); | |
1042 } | |
1043 | |
1044 void layout_recent_update_all(void) | |
1045 { | |
1046 GList *work; | |
1047 | |
1048 work = layout_window_list; | |
1049 while (work) | |
1050 { | |
1051 LayoutWindow *lw = work->data; | |
1052 work = work->next; | |
1053 | |
1054 layout_menu_recent_update(lw); | |
1055 } | |
1056 } | |
1057 | |
1058 void layout_recent_add_path(const gchar *path) | |
1059 { | |
1060 if (!path) return; | |
1061 | |
343
63380ea3e65d
Rename recent_list_max/open_recent_max to open_recent_list_maxsize.
zas_
parents:
341
diff
changeset
|
1062 history_list_add_to_key("recent", path, options->open_recent_list_maxsize); |
9 | 1063 |
1064 layout_recent_update_all(); | |
1065 } | |
1066 | |
1067 /* | |
1068 *----------------------------------------------------------------------------- | |
497 | 1069 * copy path |
1070 *----------------------------------------------------------------------------- | |
1071 */ | |
1072 | |
1073 static void layout_copy_path_update(LayoutWindow *lw) | |
1074 { | |
1075 GtkWidget *item = gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu/FileMenu/CopyPath"); | |
1076 | |
1077 if (!item) return; | |
1078 | |
1079 if (options->show_copy_path) | |
1080 gtk_widget_show(item); | |
1081 else | |
1082 gtk_widget_hide(item); | |
1083 } | |
1084 | |
1085 void layout_copy_path_update_all(void) | |
1086 { | |
1087 GList *work; | |
1088 | |
1089 work = layout_window_list; | |
1090 while (work) | |
1091 { | |
1092 LayoutWindow *lw = work->data; | |
1093 work = work->next; | |
1094 | |
1095 layout_copy_path_update(lw); | |
1096 } | |
1097 } | |
1098 | |
1099 /* | |
1100 *----------------------------------------------------------------------------- | |
9 | 1101 * menu |
1102 *----------------------------------------------------------------------------- | |
442 | 1103 */ |
9 | 1104 |
1105 #define CB G_CALLBACK | |
1106 | |
1107 static GtkActionEntry menu_entries[] = { | |
691 | 1108 { "FileMenu", NULL, N_("_File"), NULL, NULL, NULL }, |
1109 { "GoMenu", NULL, N_("_Go"), NULL, NULL, NULL }, | |
1110 { "EditMenu", NULL, N_("_Edit"), NULL, NULL, NULL }, | |
1111 { "SelectMenu", NULL, N_("_Select"), NULL, NULL, NULL }, | |
1112 { "AdjustMenu", NULL, N_("_Adjust"), NULL, NULL, NULL }, | |
1272 | 1113 { "ExternalMenu", NULL, N_("E_xternal Editors"), NULL, NULL, NULL }, |
691 | 1114 { "ViewMenu", NULL, N_("_View"), NULL, NULL, NULL }, |
1115 { "DirMenu", NULL, N_("_View Directory as"), NULL, NULL, NULL }, | |
1116 { "ZoomMenu", NULL, N_("_Zoom"), NULL, NULL, NULL }, | |
1047 | 1117 { "ConnectZoomMenu", NULL, N_("_Connected Zoom"), NULL, NULL, NULL }, |
691 | 1118 { "SplitMenu", NULL, N_("_Split"), NULL, NULL, NULL }, |
1119 { "HelpMenu", NULL, N_("_Help"), NULL, NULL, NULL }, | |
9 | 1120 |
159 | 1121 { "FirstImage", GTK_STOCK_GOTO_TOP, N_("_First Image"), "Home", NULL, CB(layout_menu_image_first_cb) }, |
1122 { "PrevImage", GTK_STOCK_GO_UP, N_("_Previous Image"), "BackSpace", NULL, CB(layout_menu_image_prev_cb) }, | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1123 { "PrevImageAlt1", GTK_STOCK_GO_UP, N_("_Previous Image"), "Page_Up", NULL, CB(layout_menu_image_prev_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1124 { "PrevImageAlt2", GTK_STOCK_GO_UP, N_("_Previous Image"), "KP_Page_Up", NULL, CB(layout_menu_image_prev_cb) }, |
159 | 1125 { "NextImage", GTK_STOCK_GO_DOWN, N_("_Next Image"), "space", NULL, CB(layout_menu_image_next_cb) }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1126 { "NextImageAlt1", GTK_STOCK_GO_DOWN, N_("_Next Image"), "Page_Down", NULL, CB(layout_menu_image_next_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1127 { "NextImageAlt2", GTK_STOCK_GO_DOWN, N_("_Next Image"), "KP_Page_Down", NULL, CB(layout_menu_image_next_cb) }, |
159 | 1128 { "LastImage", GTK_STOCK_GOTO_BOTTOM, N_("_Last Image"), "End", NULL, CB(layout_menu_image_last_cb) }, |
1129 | |
1130 | |
9 | 1131 { "NewWindow", GTK_STOCK_NEW, N_("New _window"), NULL, NULL, CB(layout_menu_new_window_cb) }, |
1132 { "NewCollection", GTK_STOCK_INDEX,N_("_New collection"), "C", NULL, CB(layout_menu_new_cb) }, | |
1133 { "OpenCollection", GTK_STOCK_OPEN, N_("_Open collection..."),"O", NULL, CB(layout_menu_open_cb) }, | |
691 | 1134 { "OpenRecent", NULL, N_("Open _recent"), NULL, NULL, NULL }, |
9 | 1135 { "Search", GTK_STOCK_FIND, N_("_Search..."), "F3", NULL, CB(layout_menu_search_cb) }, |
1136 { "FindDupes", GTK_STOCK_FIND, N_("_Find duplicates..."),"D", NULL, CB(layout_menu_dupes_cb) }, | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
1137 { "PanView", NULL, N_("Pan _view"), "<control>J", NULL, CB(layout_menu_pan_cb) }, |
9 | 1138 { "Print", GTK_STOCK_PRINT,N_("_Print..."), "<shift>P", NULL, CB(layout_menu_print_cb) }, |
1139 { "NewFolder", NULL, N_("N_ew folder..."), "<control>F", NULL, CB(layout_menu_dir_cb) }, | |
1140 { "Copy", NULL, N_("_Copy..."), "<control>C", NULL, CB(layout_menu_copy_cb) }, | |
1141 { "Move", NULL, N_("_Move..."), "<control>M", NULL, CB(layout_menu_move_cb) }, | |
1142 { "Rename", NULL, N_("_Rename..."), "<control>R", NULL, CB(layout_menu_rename_cb) }, | |
1143 { "Delete", GTK_STOCK_DELETE, N_("_Delete..."), "<control>D", NULL, CB(layout_menu_delete_cb) }, | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1144 { "DeleteAlt1",GTK_STOCK_DELETE, N_("_Delete..."), "Delete", NULL, CB(layout_menu_delete_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1145 { "DeleteAlt2",GTK_STOCK_DELETE, N_("_Delete..."), "KP_Delete", NULL, CB(layout_menu_delete_cb) }, |
497 | 1146 { "CopyPath", NULL, N_("_Copy path"), NULL, NULL, CB(layout_menu_copy_path_cb) }, |
9 | 1147 { "CloseWindow", GTK_STOCK_CLOSE,N_("C_lose window"), "<control>W", NULL, CB(layout_menu_close_cb) }, |
1148 { "Quit", GTK_STOCK_QUIT, N_("_Quit"), "<control>Q", NULL, CB(layout_menu_exit_cb) }, | |
1149 | |
1150 { "RotateCW", NULL, N_("_Rotate clockwise"), "bracketright", NULL, CB(layout_menu_alter_90_cb) }, | |
1151 { "RotateCCW", NULL, N_("Rotate _counterclockwise"), "bracketleft", NULL, CB(layout_menu_alter_90cc_cb) }, | |
1152 { "Rotate180", NULL, N_("Rotate 1_80"), "<shift>R", NULL, CB(layout_menu_alter_180_cb) }, | |
1153 { "Mirror", NULL, N_("_Mirror"), "<shift>M", NULL, CB(layout_menu_alter_mirror_cb) }, | |
1154 { "Flip", NULL, N_("_Flip"), "<shift>F", NULL, CB(layout_menu_alter_flip_cb) }, | |
398
c4080362d619
image post-processing (rotation and color management) moved to
nadvornik
parents:
380
diff
changeset
|
1155 { "Grayscale", NULL, N_("Toggle _grayscale"),"<shift>G", NULL, CB(layout_menu_alter_desaturate_cb) }, |
439 | 1156 { "AlterNone", NULL, N_("_Original state"), "<shift>O", NULL, CB(layout_menu_alter_none_cb) }, |
1157 | |
9 | 1158 { "Properties",GTK_STOCK_PROPERTIES, N_("_Properties"), "<control>P", NULL, CB(layout_menu_info_cb) }, |
1159 { "SelectAll", NULL, N_("Select _all"), "<control>A", NULL, CB(layout_menu_select_all_cb) }, | |
1160 { "SelectNone", NULL, N_("Select _none"), "<control><shift>A",NULL, CB(layout_menu_unselect_all_cb) }, | |
601 | 1161 { "SelectInvert", NULL, N_("_Invert Selection"), "<control><shift>I", NULL, CB(layout_menu_invert_selection_cb) }, |
1162 | |
9 | 1163 { "Preferences",GTK_STOCK_PREFERENCES,N_("P_references..."), "<control>O", NULL, CB(layout_menu_config_cb) }, |
1164 { "Maintenance", NULL, N_("_Thumbnail maintenance..."),NULL, NULL, CB(layout_menu_remove_thumb_cb) }, | |
1165 { "Wallpaper", NULL, N_("Set as _wallpaper"),NULL, NULL, CB(layout_menu_wallpaper_cb) }, | |
1166 | |
1167 { "ZoomIn", GTK_STOCK_ZOOM_IN, N_("Zoom _in"), "equal", NULL, CB(layout_menu_zoom_in_cb) }, | |
1047 | 1168 { "ZoomInAlt1",GTK_STOCK_ZOOM_IN, N_("Zoom _in"), "KP_Add", NULL, CB(layout_menu_zoom_in_cb) }, |
9 | 1169 { "ZoomOut", GTK_STOCK_ZOOM_OUT, N_("Zoom _out"), "minus", NULL, CB(layout_menu_zoom_out_cb) }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1170 { "ZoomOutAlt1",GTK_STOCK_ZOOM_OUT, N_("Zoom _out"), "KP_Subtract", NULL, CB(layout_menu_zoom_out_cb) }, |
9 | 1171 { "Zoom100", GTK_STOCK_ZOOM_100, N_("Zoom _1:1"), "Z", NULL, CB(layout_menu_zoom_1_1_cb) }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1172 { "Zoom100Alt1",GTK_STOCK_ZOOM_100, N_("Zoom _1:1"), "KP_Divide", NULL, CB(layout_menu_zoom_1_1_cb) }, |
9 | 1173 { "ZoomFit", GTK_STOCK_ZOOM_FIT, N_("_Zoom to fit"), "X", NULL, CB(layout_menu_zoom_fit_cb) }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1174 { "ZoomFitAlt1",GTK_STOCK_ZOOM_FIT, N_("_Zoom to fit"), "KP_Multiply", NULL, CB(layout_menu_zoom_fit_cb) }, |
159 | 1175 { "ZoomFillHor", NULL, N_("Fit _Horizontally"),"H", NULL, CB(layout_menu_zoom_fit_hor_cb) }, |
1047 | 1176 { "ZoomFillVert", NULL, N_("Fit _Vertically"), "W", NULL, CB(layout_menu_zoom_fit_vert_cb) }, |
159 | 1177 { "Zoom200", NULL, N_("Zoom _2:1"), NULL, NULL, CB(layout_menu_zoom_2_1_cb) }, |
1178 { "Zoom300", NULL, N_("Zoom _3:1"), NULL, NULL, CB(layout_menu_zoom_3_1_cb) }, | |
1179 { "Zoom400", NULL, N_("Zoom _4:1"), NULL, NULL, CB(layout_menu_zoom_4_1_cb) }, | |
1180 { "Zoom50", NULL, N_("Zoom 1:2"), NULL, NULL, CB(layout_menu_zoom_1_2_cb) }, | |
1181 { "Zoom33", NULL, N_("Zoom 1:3"), NULL, NULL, CB(layout_menu_zoom_1_3_cb) }, | |
1182 { "Zoom25", NULL, N_("Zoom 1:4"), NULL, NULL, CB(layout_menu_zoom_1_4_cb) }, | |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1183 |
1047 | 1184 { "ConnectZoomIn", GTK_STOCK_ZOOM_IN, N_("Zoom _in"), "plus", NULL, CB(layout_menu_connect_zoom_in_cb) }, |
1185 { "ConnectZoomInAlt1",GTK_STOCK_ZOOM_IN, N_("Zoom _in"), "<shift>KP_Add", NULL, CB(layout_menu_connect_zoom_in_cb) }, | |
1186 { "ConnectZoomOut", GTK_STOCK_ZOOM_OUT, N_("Zoom _out"), "underscore", NULL, CB(layout_menu_connect_zoom_out_cb) }, | |
1187 { "ConnectZoomOutAlt1",GTK_STOCK_ZOOM_OUT, N_("Zoom _out"), "<shift>KP_Subtract", NULL, CB(layout_menu_connect_zoom_out_cb) }, | |
1188 { "ConnectZoom100", GTK_STOCK_ZOOM_100, N_("Zoom _1:1"), "<shift>Z", NULL, CB(layout_menu_connect_zoom_1_1_cb) }, | |
1189 { "ConnectZoom100Alt1",GTK_STOCK_ZOOM_100, N_("Zoom _1:1"), "<shift>KP_Divide", NULL, CB(layout_menu_connect_zoom_1_1_cb) }, | |
1190 { "ConnectZoomFit", GTK_STOCK_ZOOM_FIT, N_("_Zoom to fit"), "<shift>X", NULL, CB(layout_menu_connect_zoom_fit_cb) }, | |
1191 { "ConnectZoomFitAlt1",GTK_STOCK_ZOOM_FIT, N_("_Zoom to fit"), "<shift>KP_Multiply", NULL, CB(layout_menu_connect_zoom_fit_cb) }, | |
1192 { "ConnectZoomFillHor", NULL, N_("Fit _Horizontally"),"<shift>H", NULL, CB(layout_menu_connect_zoom_fit_hor_cb) }, | |
1193 { "ConnectZoomFillVert", NULL, N_("Fit _Vertically"), "<shift>W", NULL, CB(layout_menu_connect_zoom_fit_vert_cb) }, | |
1194 { "ConnectZoom200", NULL, N_("Zoom _2:1"), NULL, NULL, CB(layout_menu_connect_zoom_2_1_cb) }, | |
1195 { "ConnectZoom300", NULL, N_("Zoom _3:1"), NULL, NULL, CB(layout_menu_connect_zoom_3_1_cb) }, | |
1196 { "ConnectZoom400", NULL, N_("Zoom _4:1"), NULL, NULL, CB(layout_menu_connect_zoom_4_1_cb) }, | |
1197 { "ConnectZoom50", NULL, N_("Zoom 1:2"), NULL, NULL, CB(layout_menu_connect_zoom_1_2_cb) }, | |
1198 { "ConnectZoom33", NULL, N_("Zoom 1:3"), NULL, NULL, CB(layout_menu_connect_zoom_1_3_cb) }, | |
1199 { "ConnectZoom25", NULL, N_("Zoom 1:4"), NULL, NULL, CB(layout_menu_connect_zoom_1_4_cb) }, | |
1200 | |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1201 |
159 | 1202 { "ViewInNewWindow", NULL, N_("_View in new window"), "<control>V", NULL, CB(layout_menu_view_in_new_window_cb) }, |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1203 |
9 | 1204 { "FullScreen", NULL, N_("F_ull screen"), "F", NULL, CB(layout_menu_fullscreen_cb) }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1205 { "FullScreenAlt1", NULL, N_("F_ull screen"), "V", NULL, CB(layout_menu_fullscreen_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1206 { "FullScreenAlt2", NULL, N_("F_ull screen"), "F11", NULL, CB(layout_menu_fullscreen_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1207 { "Escape", NULL, N_("Escape"), "Escape", NULL, CB(layout_menu_escape_cb) }, |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1208 { "EscapeAlt1", NULL, N_("Escape"), "Q", NULL, CB(layout_menu_escape_cb) }, |
159 | 1209 { "ImageOverlay", NULL, N_("_Image Overlay"), "I", NULL, CB(layout_menu_overlay_cb) }, |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
1210 { "HistogramChan", NULL, N_("Histogram _channels"), "K", NULL, CB(layout_menu_histogram_chan_cb) }, |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
1211 { "HistogramLog", NULL, N_("Histogram _log mode"), "J", NULL, CB(layout_menu_histogram_log_cb) }, |
9 | 1212 { "HideTools", NULL, N_("_Hide file list"), "<control>H", NULL, CB(layout_menu_hide_cb) }, |
450 | 1213 { "SlideShowPause", NULL, N_("_Pause slideshow"), "P", NULL, CB(layout_menu_slideshow_pause_cb) }, |
9 | 1214 { "Refresh", GTK_STOCK_REFRESH, N_("_Refresh"), "R", NULL, CB(layout_menu_refresh_cb) }, |
1215 | |
1216 { "HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1", NULL, CB(layout_menu_help_cb) }, | |
1217 { "HelpShortcuts", NULL, N_("_Keyboard shortcuts"),NULL, NULL, CB(layout_menu_help_keys_cb) }, | |
1218 { "HelpNotes", NULL, N_("_Release notes"), NULL, NULL, CB(layout_menu_notes_cb) }, | |
678
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
1219 { "About", NULL, N_("_About"), NULL, NULL, CB(layout_menu_about_cb) }, |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
1220 { "LogWindow", NULL, N_("_Log Window"), NULL, NULL, CB(layout_menu_log_window_cb) } |
9 | 1221 }; |
1222 | |
1223 static GtkToggleActionEntry menu_toggle_entries[] = { | |
691 | 1224 { "Thumbnails", NULL, N_("_Thumbnails"), "T", NULL, CB(layout_menu_thumb_cb), FALSE }, |
1225 { "ShowMarks", NULL, N_("Show _Marks"), "M", NULL, CB(layout_menu_marks_cb), FALSE }, | |
1226 { "FloatTools", NULL, N_("_Float file list"), "L", NULL, CB(layout_menu_float_cb), FALSE }, | |
1227 { "HideToolbar", NULL, N_("Hide tool_bar"), NULL, NULL, CB(layout_menu_toolbar_cb), FALSE }, | |
1228 { "SBarKeywords", NULL, N_("_Keywords"), "<control>K", NULL, CB(layout_menu_bar_info_cb), FALSE }, | |
1229 { "SBarExif", NULL, N_("E_xif data"), "<control>E", NULL, CB(layout_menu_bar_exif_cb), FALSE }, | |
1230 { "SBarSort", NULL, N_("Sort _manager"), "<control>S", NULL, CB(layout_menu_bar_sort_cb), FALSE }, | |
1231 { "SlideShow", NULL, N_("Toggle _slideshow"),"S", NULL, CB(layout_menu_slideshow_cb), FALSE }, | |
9 | 1232 }; |
1233 | |
1234 static GtkRadioActionEntry menu_radio_entries[] = { | |
1235 { "ViewList", NULL, N_("_List"), "<control>L", NULL, 0 }, | |
1236 { "ViewIcons", NULL, N_("I_cons"), "<control>I", NULL, 1 } | |
1237 }; | |
1238 | |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1239 static GtkRadioActionEntry menu_split_radio_entries[] = { |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1240 { "SplitHorizontal", NULL, N_("Horizontal"), "E", NULL, SPLIT_HOR }, |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1241 { "SplitVertical", NULL, N_("Vertical"), "U", NULL, SPLIT_VERT }, |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1242 { "SplitQuad", NULL, N_("Quad"), NULL, NULL, SPLIT_QUAD }, |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1243 { "SplitSingle", NULL, N_("Single"), "Y", NULL, SPLIT_NONE } |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1244 }; |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1245 |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1246 |
9 | 1247 #undef CB |
1248 | |
1000
4fe8f9656107
For the sake of consistency, use glib basic types everywhere.
zas_
parents:
995
diff
changeset
|
1249 static const gchar *menu_ui_description = |
9 | 1250 "<ui>" |
1251 " <menubar name='MainMenu'>" | |
1252 " <menu action='FileMenu'>" | |
1253 " <menuitem action='NewWindow'/>" | |
1254 " <menuitem action='NewCollection'/>" | |
1255 " <menuitem action='OpenCollection'/>" | |
1256 " <menuitem action='OpenRecent'/>" | |
1257 " <separator/>" | |
1258 " <menuitem action='Search'/>" | |
1259 " <menuitem action='FindDupes'/>" | |
12
147f4c4b9025
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
1260 " <menuitem action='PanView'/>" |
9 | 1261 " <separator/>" |
1262 " <menuitem action='Print'/>" | |
1263 " <menuitem action='NewFolder'/>" | |
1264 " <separator/>" | |
1265 " <menuitem action='Copy'/>" | |
1266 " <menuitem action='Move'/>" | |
1267 " <menuitem action='Rename'/>" | |
1268 " <menuitem action='Delete'/>" | |
497 | 1269 " <menuitem action='CopyPath'/>" |
9 | 1270 " <separator/>" |
1271 " <menuitem action='CloseWindow'/>" | |
1272 " <menuitem action='Quit'/>" | |
1272 | 1273 " <separator/>" |
9 | 1274 " </menu>" |
159 | 1275 " <menu action='GoMenu'>" |
1276 " <menuitem action='FirstImage'/>" | |
1277 " <menuitem action='PrevImage'/>" | |
1278 " <menuitem action='NextImage'/>" | |
1279 " <menuitem action='LastImage'/>" | |
1272 | 1280 " <separator/>" |
159 | 1281 " </menu>" |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1282 " <menu action='SelectMenu'>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1283 " <menuitem action='SelectAll'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1284 " <menuitem action='SelectNone'/>" |
601 | 1285 " <menuitem action='SelectInvert'/>" |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1286 " <separator/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1287 " <menuitem action='ShowMarks'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1288 " <separator/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1289 " </menu>" |
9 | 1290 " <menu action='EditMenu'>" |
1291 " <menu action='AdjustMenu'>" | |
1292 " <menuitem action='RotateCW'/>" | |
1293 " <menuitem action='RotateCCW'/>" | |
1294 " <menuitem action='Rotate180'/>" | |
1295 " <menuitem action='Mirror'/>" | |
1296 " <menuitem action='Flip'/>" | |
82
a4c1b7014e6e
Thu Oct 19 15:20:51 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
1297 " <menuitem action='Grayscale'/>" |
439 | 1298 " <menuitem action='AlterNone'/>" |
9 | 1299 " </menu>" |
1300 " <menuitem action='Properties'/>" | |
1301 " <separator/>" | |
1302 " <menuitem action='Preferences'/>" | |
1303 " <menuitem action='Maintenance'/>" | |
1304 " <separator/>" | |
1305 " <menuitem action='Wallpaper'/>" | |
1272 | 1306 " <separator/>" |
1307 " <menu action='ExternalMenu'>" | |
1308 " </menu>" | |
9 | 1309 " </menu>" |
1310 " <menu action='ViewMenu'>" | |
159 | 1311 " <menuitem action='ViewInNewWindow'/>" |
9 | 1312 " <separator/>" |
159 | 1313 " <menu action='ZoomMenu'>" |
1314 " <menuitem action='ZoomIn'/>" | |
1315 " <menuitem action='ZoomOut'/>" | |
1316 " <menuitem action='ZoomFit'/>" | |
1317 " <menuitem action='ZoomFillHor'/>" | |
1318 " <menuitem action='ZoomFillVert'/>" | |
1319 " <menuitem action='Zoom100'/>" | |
1320 " <menuitem action='Zoom200'/>" | |
1321 " <menuitem action='Zoom300'/>" | |
1322 " <menuitem action='Zoom400'/>" | |
1323 " <menuitem action='Zoom50'/>" | |
1324 " <menuitem action='Zoom33'/>" | |
1325 " <menuitem action='Zoom25'/>" | |
1326 " </menu>" | |
1047 | 1327 " <menu action='ConnectZoomMenu'>" |
1328 " <menuitem action='ConnectZoomIn'/>" | |
1329 " <menuitem action='ConnectZoomOut'/>" | |
1330 " <menuitem action='ConnectZoomFit'/>" | |
1331 " <menuitem action='ConnectZoomFillHor'/>" | |
1332 " <menuitem action='ConnectZoomFillVert'/>" | |
1333 " <menuitem action='ConnectZoom100'/>" | |
1334 " <menuitem action='ConnectZoom200'/>" | |
1335 " <menuitem action='ConnectZoom300'/>" | |
1336 " <menuitem action='ConnectZoom400'/>" | |
1337 " <menuitem action='ConnectZoom50'/>" | |
1338 " <menuitem action='ConnectZoom33'/>" | |
1339 " <menuitem action='ConnectZoom25'/>" | |
1340 " </menu>" | |
9 | 1341 " <separator/>" |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1342 " <menu action='SplitMenu'>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1343 " <menuitem action='SplitHorizontal'/>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1344 " <menuitem action='SplitVertical'/>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1345 " <menuitem action='SplitQuad'/>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1346 " <menuitem action='SplitSingle'/>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1347 " </menu>" |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1348 " <separator/>" |
9 | 1349 " <menuitem action='Thumbnails'/>" |
1350 " <menuitem action='ViewList'/>" | |
1351 " <menuitem action='ViewIcons'/>" | |
1352 " <separator/>" | |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1353 " <menu action='DirMenu'>" |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1354 " <menuitem action='FolderList'/>" |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1355 " <menuitem action='FolderTree'/>" |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1356 " </menu>" |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1357 " <separator/>" |
159 | 1358 " <menuitem action='ImageOverlay'/>" |
273
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
1359 " <menuitem action='HistogramChan'/>" |
e0e2c2b72c5a
reworked the histogram patch by Uwe Ohse, most of the code is in
nadvornik
parents:
249
diff
changeset
|
1360 " <menuitem action='HistogramLog'/>" |
9 | 1361 " <menuitem action='FullScreen'/>" |
1362 " <separator/>" | |
1363 " <menuitem action='FloatTools'/>" | |
1364 " <menuitem action='HideTools'/>" | |
1365 " <menuitem action='HideToolbar'/>" | |
1366 " <separator/>" | |
1367 " <menuitem action='SBarKeywords'/>" | |
1368 " <menuitem action='SBarExif'/>" | |
1369 " <menuitem action='SBarSort'/>" | |
1370 " <separator/>" | |
1371 " <menuitem action='SlideShow'/>" | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1372 " <menuitem action='SlideShowPause'/>" |
9 | 1373 " <menuitem action='Refresh'/>" |
1272 | 1374 " <separator/>" |
9 | 1375 " </menu>" |
1376 " <menu action='HelpMenu'>" | |
1377 " <separator/>" | |
1378 " <menuitem action='HelpContents'/>" | |
1379 " <menuitem action='HelpShortcuts'/>" | |
1380 " <menuitem action='HelpNotes'/>" | |
1381 " <separator/>" | |
1382 " <menuitem action='About'/>" | |
678
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
1383 " <separator/>" |
6d6f042b8ca5
Add a log window that shows normal and debug messages. For now, it was added to Help menu.
zas_
parents:
654
diff
changeset
|
1384 " <menuitem action='LogWindow'/>" |
1272 | 1385 " <separator/>" |
9 | 1386 " </menu>" |
1387 " </menubar>" | |
428
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1388 "<accelerator action='PrevImageAlt1'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1389 "<accelerator action='PrevImageAlt2'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1390 "<accelerator action='NextImageAlt1'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1391 "<accelerator action='NextImageAlt2'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1392 "<accelerator action='DeleteAlt1'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1393 "<accelerator action='DeleteAlt2'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1394 "<accelerator action='FullScreenAlt1'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1395 "<accelerator action='FullScreenAlt2'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1396 "<accelerator action='Escape'/>" |
af843364b3ea
I have finally found how to add alternative hotkeys
nadvornik
parents:
398
diff
changeset
|
1397 "<accelerator action='EscapeAlt1'/>" |
1047 | 1398 |
1399 "<accelerator action='ZoomInAlt1'/>" | |
1400 "<accelerator action='ZoomOutAlt1'/>" | |
1401 "<accelerator action='Zoom100Alt1'/>" | |
1402 "<accelerator action='ZoomFitAlt1'/>" | |
1403 | |
1404 "<accelerator action='ConnectZoomInAlt1'/>" | |
1405 "<accelerator action='ConnectZoomOutAlt1'/>" | |
1406 "<accelerator action='ConnectZoom100Alt1'/>" | |
1407 "<accelerator action='ConnectZoomFitAlt1'/>" | |
9 | 1408 "</ui>"; |
1409 | |
1410 | |
1411 static gchar *menu_translate(const gchar *path, gpointer data) | |
1412 { | |
1004 | 1413 return (gchar *)(_(path)); |
9 | 1414 } |
1415 | |
894 | 1416 static void layout_actions_setup_mark(LayoutWindow *lw, gint mark, gchar *name_tmpl, gchar *label_tmpl, gchar *accel_tmpl, GCallback cb) |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1417 { |
894 | 1418 gchar name[50]; |
1419 gchar label[100]; | |
1420 gchar accel[50]; | |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1421 GtkActionEntry entry = { name, NULL, label, accel, NULL, cb }; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1422 GtkAction *action; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1423 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1424 g_snprintf(name, sizeof(name), name_tmpl, mark); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1425 g_snprintf(label, sizeof(label), label_tmpl, mark); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1426 if (accel_tmpl) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1427 g_snprintf(accel, sizeof(accel), accel_tmpl, mark % 10); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1428 else |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1429 accel[0] = 0; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1430 gtk_action_group_add_actions(lw->action_group, &entry, 1, lw); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1431 action = gtk_action_group_get_action(lw->action_group, name); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1432 g_object_set_data(G_OBJECT(action), "mark_num", GINT_TO_POINTER(mark)); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1433 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1434 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1435 static void layout_actions_setup_marks(LayoutWindow *lw) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1436 { |
894 | 1437 gint mark; |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1438 GError *error; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1439 GString *desc = g_string_new( |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1440 "<ui>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1441 " <menubar name='MainMenu'>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1442 " <menu action='SelectMenu'>"); |
442 | 1443 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1444 for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1445 { |
163 | 1446 layout_actions_setup_mark(lw, mark, "Mark%d", _("Mark _%d"), NULL, NULL); |
1447 layout_actions_setup_mark(lw, mark, "SetMark%d", _("_Set mark %d"), NULL, G_CALLBACK(layout_menu_set_mark_sel_cb)); | |
1448 layout_actions_setup_mark(lw, mark, "ResetMark%d", _("_Reset mark %d"), NULL, G_CALLBACK(layout_menu_res_mark_sel_cb)); | |
1449 layout_actions_setup_mark(lw, mark, "ToggleMark%d", _("_Toggle mark %d"), "%d", G_CALLBACK(layout_menu_toggle_mark_sel_cb)); | |
429 | 1450 layout_actions_setup_mark(lw, mark, "ToggleMark%dAlt1", _("_Toggle mark %d"), "KP_%d", G_CALLBACK(layout_menu_toggle_mark_sel_cb)); |
163 | 1451 layout_actions_setup_mark(lw, mark, "SelectMark%d", _("_Select mark %d"), "<control>%d", G_CALLBACK(layout_menu_sel_mark_cb)); |
429 | 1452 layout_actions_setup_mark(lw, mark, "SelectMark%dAlt1", _("_Select mark %d"), "<control>KP_%d", G_CALLBACK(layout_menu_sel_mark_cb)); |
163 | 1453 layout_actions_setup_mark(lw, mark, "AddMark%d", _("_Add mark %d"), NULL, G_CALLBACK(layout_menu_sel_mark_or_cb)); |
1454 layout_actions_setup_mark(lw, mark, "IntMark%d", _("_Intersection with mark %d"), NULL, G_CALLBACK(layout_menu_sel_mark_and_cb)); | |
1455 layout_actions_setup_mark(lw, mark, "UnselMark%d", _("_Unselect mark %d"), NULL, G_CALLBACK(layout_menu_sel_mark_minus_cb)); | |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1456 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1457 g_string_append_printf(desc, |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1458 " <menu action='Mark%d'>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1459 " <menuitem action='ToggleMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1460 " <menuitem action='SetMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1461 " <menuitem action='ResetMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1462 " <separator/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1463 " <menuitem action='SelectMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1464 " <menuitem action='AddMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1465 " <menuitem action='IntMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1466 " <menuitem action='UnselMark%d'/>" |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1467 " </menu>", |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1468 mark, mark, mark, mark, mark, mark, mark, mark); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1469 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1470 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1471 g_string_append(desc, |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1472 " </menu>" |
429 | 1473 " </menubar>"); |
1474 for (mark = 1; mark <= FILEDATA_MARKS_SIZE; mark++) | |
1475 { | |
1476 g_string_append_printf(desc, | |
1477 "<accelerator action='ToggleMark%dAlt1'/>" | |
1478 "<accelerator action='SelectMark%dAlt1'/>", | |
1479 mark, mark); | |
1480 } | |
1481 g_string_append(desc, "</ui>" ); | |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1482 |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1483 error = NULL; |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1484 if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error)) |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1485 { |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1486 g_message("building menus failed: %s", error->message); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1487 g_error_free(error); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1488 exit(EXIT_FAILURE); |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1489 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1490 g_string_free(desc, TRUE); |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1491 } |
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1492 |
1272 | 1493 static gint layout_actions_editor_sort(gconstpointer a, gconstpointer b) |
1494 { | |
1495 const EditorDescription *ea = a; | |
1496 const EditorDescription *eb = b; | |
1497 int ret; | |
1498 | |
1499 ret = strcmp(ea->menu_path, eb->menu_path); | |
1500 if (ret != 0) return ret; | |
1501 | |
1502 return g_utf8_collate(ea->name, eb->name); | |
1503 } | |
1504 | |
1505 static GList *layout_actions_editor_menu_path(EditorDescription *editor) | |
1506 { | |
1507 gchar **split = g_strsplit(editor->menu_path, "/", 0); | |
1508 gint i = 0; | |
1509 GList *ret = NULL; | |
1510 | |
1511 if (split[0] == NULL) | |
1512 { | |
1513 g_strfreev(split); | |
1514 return NULL; | |
1515 } | |
1516 | |
1517 while(split[i]) | |
1518 { | |
1519 ret = g_list_prepend(ret, g_strdup(split[i])); | |
1520 i++; | |
1521 } | |
1522 | |
1523 g_strfreev(split); | |
1524 | |
1525 ret = g_list_prepend(ret, g_strdup(editor->key)); | |
1526 | |
1527 return g_list_reverse(ret); | |
1528 } | |
1529 | |
1530 static void layout_actions_editor_add(GString *desc, GList *path, GList *old_path) | |
1531 { | |
1532 gint to_open, to_close, i; | |
1533 while (path && old_path && strcmp((gchar *)path->data, (gchar *)old_path->data) == 0) | |
1534 { | |
1535 path = path->next; | |
1536 old_path = old_path->next; | |
1537 } | |
1538 to_open = g_list_length(path) - 1; | |
1539 to_close = g_list_length(old_path) - 1; | |
1540 | |
1541 for (i = 0; i < to_close; i++) | |
1542 { | |
1543 g_string_append(desc, " </menu>"); | |
1544 } | |
1545 | |
1546 for (i = 0; i < to_open; i++) | |
1547 { | |
1548 g_string_append_printf(desc, " <menu action='%s'>", (gchar *)path->data); | |
1549 path = path->next; | |
1550 } | |
1551 | |
1552 if (path) | |
1553 g_string_append_printf(desc, " <menuitem action='%s'/>", (gchar *)path->data); | |
1554 } | |
1555 | |
1556 static void layout_actions_setup_editors(LayoutWindow *lw) | |
1557 { | |
1558 GError *error; | |
1559 GList *editors_list; | |
1560 GList *work; | |
1561 GList *old_path; | |
1562 GString *desc = g_string_new( | |
1563 "<ui>" | |
1564 " <menubar name='MainMenu'>"); | |
1565 | |
1566 editors_list = editor_list_get(); | |
1567 editors_list = g_list_sort(editors_list, layout_actions_editor_sort); | |
1568 | |
1569 old_path = NULL; | |
1570 work = editors_list; | |
1571 while(work) | |
1572 { | |
1573 GList *path; | |
1574 EditorDescription *editor = work->data; | |
1575 GtkActionEntry entry = { editor->key, NULL, editor->name, editor->hotkey, NULL, G_CALLBACK(layout_menu_edit_cb) }; | |
1576 gtk_action_group_add_actions(lw->action_group, &entry, 1, lw); | |
1577 | |
1578 path = layout_actions_editor_menu_path(editor); | |
1579 layout_actions_editor_add(desc, path, old_path); | |
1580 | |
1581 string_list_free(old_path); | |
1582 old_path = path; | |
1583 work = work->next; | |
1584 } | |
1585 | |
1586 layout_actions_editor_add(desc, NULL, old_path); | |
1587 string_list_free(old_path); | |
1588 | |
1589 g_string_append(desc, " </menubar>" | |
1590 "</ui>" ); | |
1591 | |
1592 error = NULL; | |
1593 if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, desc->str, -1, &error)) | |
1594 { | |
1595 g_message("building menus failed: %s", error->message); | |
1596 g_error_free(error); | |
1597 exit(EXIT_FAILURE); | |
1598 } | |
1599 g_string_free(desc, TRUE); | |
1600 g_list_free(editors_list); | |
1601 } | |
1602 | |
9 | 1603 void layout_actions_setup(LayoutWindow *lw) |
1604 { | |
1605 GError *error; | |
1606 | |
1607 if (lw->ui_manager) return; | |
1608 | |
513
985fdfebd89e
Remove whitespace between function name and first parenthesis for the sake of consistency. (pass 2)
zas_
parents:
512
diff
changeset
|
1609 lw->action_group = gtk_action_group_new("MenuActions"); |
9 | 1610 gtk_action_group_set_translate_func(lw->action_group, menu_translate, NULL, NULL); |
1611 | |
1612 gtk_action_group_add_actions(lw->action_group, | |
1613 menu_entries, G_N_ELEMENTS(menu_entries), lw); | |
1614 gtk_action_group_add_toggle_actions(lw->action_group, | |
1615 menu_toggle_entries, G_N_ELEMENTS(menu_toggle_entries), lw); | |
1616 gtk_action_group_add_radio_actions(lw->action_group, | |
1617 menu_radio_entries, G_N_ELEMENTS(menu_radio_entries), | |
1618 0, G_CALLBACK(layout_menu_list_cb), lw); | |
156
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1619 gtk_action_group_add_radio_actions(lw->action_group, |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1620 menu_split_radio_entries, G_N_ELEMENTS(menu_split_radio_entries), |
dd6dc0a55d3d
better integration of split image functions into menu
nadvornik
parents:
138
diff
changeset
|
1621 0, G_CALLBACK(layout_menu_split_cb), lw); |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1622 gtk_action_group_add_radio_actions(lw->action_group, |
523
0717bcc4f2b7
Handle the case of reduction of the number of view directory types.
zas_
parents:
513
diff
changeset
|
1623 menu_view_dir_radio_entries, VIEW_DIR_TYPES_COUNT, |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
343
diff
changeset
|
1624 0, G_CALLBACK(layout_menu_view_dir_as_cb), lw); |
9 | 1625 |
1626 lw->ui_manager = gtk_ui_manager_new(); | |
1627 gtk_ui_manager_set_add_tearoffs(lw->ui_manager, TRUE); | |
1628 gtk_ui_manager_insert_action_group(lw->ui_manager, lw->action_group, 0); | |
1629 | |
1630 error = NULL; | |
1631 if (!gtk_ui_manager_add_ui_from_string(lw->ui_manager, menu_ui_description, -1, &error)) | |
1632 { | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1633 g_message("building menus failed: %s", error->message); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1634 g_error_free(error); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
497
diff
changeset
|
1635 exit(EXIT_FAILURE); |
9 | 1636 } |
497 | 1637 |
162
1a42a2451575
created menu "Select" with selection and marks operations
nadvornik
parents:
160
diff
changeset
|
1638 layout_actions_setup_marks(lw); |
1272 | 1639 layout_actions_setup_editors(lw); |
497 | 1640 layout_copy_path_update(lw); |
9 | 1641 } |
1642 | |
1643 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window) | |
1644 { | |
1645 GtkAccelGroup *group; | |
1646 | |
1647 if (!lw->ui_manager) return; | |
1648 | |
1649 group = gtk_ui_manager_get_accel_group(lw->ui_manager); | |
1650 gtk_window_add_accel_group(GTK_WINDOW(window), group); | |
1651 } | |
1652 | |
1653 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw) | |
1654 { | |
1655 return gtk_ui_manager_get_widget(lw->ui_manager, "/MainMenu"); | |
1656 } | |
1657 | |
1658 | |
1659 /* | |
1660 *----------------------------------------------------------------------------- | |
1661 * toolbar | |
1662 *----------------------------------------------------------------------------- | |
442 | 1663 */ |
9 | 1664 |
1665 static void layout_button_thumb_cb(GtkWidget *widget, gpointer data) | |
1666 { | |
1667 LayoutWindow *lw = data; | |
1668 | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1669 layout_thumb_set(lw, gtk_toggle_tool_button_get_active(GTK_TOGGLE_TOOL_BUTTON(widget))); |
9 | 1670 } |
1671 | |
1167
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1672 /* Back button callback */ |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1673 static void layout_button_back_cb(GtkWidget *widget, gpointer data) |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1674 { |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1675 LayoutWindow *lw = data; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1676 FileData *dir_fd; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1677 gchar *path = NULL; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1678 GList *list = history_list_get_by_key("path_list"); |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1679 gint n = 0; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1680 |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1681 while (list) |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1682 { |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1683 if (n == 1) { |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1684 /* Previous path from history */ |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1685 path = (gchar *)list->data; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1686 break; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1687 } |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1688 list = list->next; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1689 n++; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1690 } |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1691 |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1692 if (!path) return; |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1693 |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1694 /* Open previous path */ |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1695 dir_fd = file_data_new_simple(path); |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1696 layout_set_fd(lw, dir_fd); |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1697 file_data_unref(dir_fd); |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1698 } |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1699 |
9 | 1700 static void layout_button_home_cb(GtkWidget *widget, gpointer data) |
1701 { | |
980
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1702 const gchar *path; |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1703 |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1704 if (options->layout.home_path && *options->layout.home_path) |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1705 path = options->layout.home_path; |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1706 else |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1707 path = homedir(); |
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1708 |
783 | 1709 if (path) |
1710 { | |
980
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
902
diff
changeset
|
1711 LayoutWindow *lw = data; |
783 | 1712 FileData *dir_fd = file_data_new_simple(path); |
1713 layout_set_fd(lw, dir_fd); | |
1714 file_data_unref(dir_fd); | |
1715 } | |
9 | 1716 } |
1717 | |
1718 static void layout_button_refresh_cb(GtkWidget *widget, gpointer data) | |
1719 { | |
1720 LayoutWindow *lw = data; | |
1721 | |
1722 layout_refresh(lw); | |
1723 } | |
1724 | |
1725 static void layout_button_zoom_in_cb(GtkWidget *widget, gpointer data) | |
1726 { | |
1727 LayoutWindow *lw = data; | |
1728 | |
1047 | 1729 layout_image_zoom_adjust(lw, get_zoom_increment(), TRUE); |
9 | 1730 } |
1731 | |
1732 static void layout_button_zoom_out_cb(GtkWidget *widget, gpointer data) | |
1733 { | |
1734 LayoutWindow *lw = data; | |
1735 | |
1047 | 1736 layout_image_zoom_adjust(lw, -get_zoom_increment(), TRUE); |
9 | 1737 } |
1738 | |
1739 static void layout_button_zoom_fit_cb(GtkWidget *widget, gpointer data) | |
1740 { | |
1741 LayoutWindow *lw = data; | |
1742 | |
1047 | 1743 layout_image_zoom_set(lw, 0.0, TRUE); |
9 | 1744 } |
1745 | |
1746 static void layout_button_zoom_1_1_cb(GtkWidget *widget, gpointer data) | |
1747 { | |
1748 LayoutWindow *lw = data; | |
1749 | |
1047 | 1750 layout_image_zoom_set(lw, 1.0, TRUE); |
9 | 1751 } |
1752 | |
1753 static void layout_button_config_cb(GtkWidget *widget, gpointer data) | |
1754 { | |
1755 show_config_window(); | |
1756 } | |
1757 | |
1758 static void layout_button_float_cb(GtkWidget *widget, gpointer data) | |
1759 { | |
1760 LayoutWindow *lw = data; | |
1761 | |
1762 layout_tools_float_toggle(lw); | |
1763 } | |
1764 | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1765 static void layout_button_custom_icon(GtkWidget *button, const gchar *key) |
9 | 1766 { |
1767 GtkWidget *icon; | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1768 GdkPixbuf *pixbuf; |
9 | 1769 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1770 pixbuf = pixbuf_inline(key); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1771 if (!pixbuf) return; |
9 | 1772 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1773 icon = gtk_image_new_from_pixbuf(pixbuf); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1774 g_object_unref(pixbuf); |
9 | 1775 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1776 pref_toolbar_button_set_icon(button, icon, NULL); |
9 | 1777 gtk_widget_show(icon); |
1778 } | |
1779 | |
1780 GtkWidget *layout_button_bar(LayoutWindow *lw) | |
1781 { | |
1782 GtkWidget *box; | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1783 GtkWidget *button; |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1784 |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1785 box = pref_toolbar_new(NULL, GTK_TOOLBAR_ICONS); |
9 | 1786 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1787 button = pref_toolbar_button(box, NULL, _("_Thumbnails"), TRUE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1788 _("Show thumbnails"), G_CALLBACK(layout_button_thumb_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1789 layout_button_custom_icon(button, PIXBUF_INLINE_ICON_THUMB); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1790 lw->thumb_button = button; |
1167
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1791 |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1792 lw->back_button = pref_toolbar_button(box, GTK_STOCK_GO_BACK, NULL, FALSE, |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1793 _("Back to previous folder"), G_CALLBACK(layout_button_back_cb), lw); |
e812b1a7adda
Add a back button in the toolbar: it allows to go back and forth between two directories. Experimental, please test and comment on ml.
zas_
parents:
1055
diff
changeset
|
1794 gtk_widget_set_sensitive(lw->back_button, FALSE); |
9 | 1795 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1796 pref_toolbar_button(box, GTK_STOCK_HOME, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1797 _("Change to home folder"), G_CALLBACK(layout_button_home_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1798 pref_toolbar_button(box, GTK_STOCK_REFRESH, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1799 _("Refresh file list"), G_CALLBACK(layout_button_refresh_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1800 pref_toolbar_button(box, GTK_STOCK_ZOOM_IN, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1801 _("Zoom in"), G_CALLBACK(layout_button_zoom_in_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1802 pref_toolbar_button(box, GTK_STOCK_ZOOM_OUT, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1803 _("Zoom out"), G_CALLBACK(layout_button_zoom_out_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1804 pref_toolbar_button(box, GTK_STOCK_ZOOM_FIT, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1805 _("Fit image to window"), G_CALLBACK(layout_button_zoom_fit_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1806 pref_toolbar_button(box, GTK_STOCK_ZOOM_100, NULL, FALSE, |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1807 _("Set zoom 1:1"), G_CALLBACK(layout_button_zoom_1_1_cb), lw); |
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1808 pref_toolbar_button(box, GTK_STOCK_PREFERENCES, NULL, FALSE, |
747
8a743884483b
Use the same label for toolbar buttons tooltip than in main menu.
zas_
parents:
736
diff
changeset
|
1809 _("Preferences"), G_CALLBACK(layout_button_config_cb), lw); |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1810 button = pref_toolbar_button(box, NULL, _("_Float"), FALSE, |
747
8a743884483b
Use the same label for toolbar buttons tooltip than in main menu.
zas_
parents:
736
diff
changeset
|
1811 _("Float file list"), G_CALLBACK(layout_button_float_cb), lw); |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1812 layout_button_custom_icon(button, PIXBUF_INLINE_ICON_FLOAT); |
9 | 1813 |
1814 return box; | |
1815 } | |
1816 | |
1817 /* | |
1818 *----------------------------------------------------------------------------- | |
1819 * misc | |
1820 *----------------------------------------------------------------------------- | |
1821 */ | |
1822 | |
1823 static void layout_util_sync_views(LayoutWindow *lw) | |
1824 { | |
1825 GtkAction *action; | |
1826 | |
1827 if (!lw->action_group) return; | |
1828 | |
1829 action = gtk_action_group_get_action(lw->action_group, "FolderTree"); | |
457
5e9c24d3b3a8
Add a replacement for gtk_radio_action_set_current_value() which
zas_
parents:
454
diff
changeset
|
1830 radio_action_set_current_value(GTK_RADIO_ACTION(action), lw->dir_view_type); |
9 | 1831 |
1832 action = gtk_action_group_get_action(lw->action_group, "ViewIcons"); | |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
523
diff
changeset
|
1833 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->file_view_type); |
9 | 1834 |
1835 action = gtk_action_group_get_action(lw->action_group, "FloatTools"); | |
1836 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->tools_float); | |
1837 | |
1838 action = gtk_action_group_get_action(lw->action_group, "SBarKeywords"); | |
1839 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->bar_info_enabled); | |
1840 | |
1841 action = gtk_action_group_get_action(lw->action_group, "SBarExif"); | |
1842 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->bar_exif_enabled); | |
1843 | |
1844 action = gtk_action_group_get_action(lw->action_group, "SBarSort"); | |
1845 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->bar_sort_enabled); | |
1846 | |
1847 action = gtk_action_group_get_action(lw->action_group, "HideToolbar"); | |
1848 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->toolbar_hidden); | |
433
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
429
diff
changeset
|
1849 |
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
429
diff
changeset
|
1850 action = gtk_action_group_get_action(lw->action_group, "ShowMarks"); |
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
429
diff
changeset
|
1851 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->marks_enabled); |
451 | 1852 |
1853 action = gtk_action_group_get_action(lw->action_group, "SlideShow"); | |
1854 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), layout_image_slideshow_active(lw)); | |
9 | 1855 } |
1856 | |
1857 void layout_util_sync_thumb(LayoutWindow *lw) | |
1858 { | |
1859 GtkAction *action; | |
1860 | |
1861 if (!lw->action_group) return; | |
1862 | |
1863 action = gtk_action_group_get_action(lw->action_group, "Thumbnails"); | |
1864 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(action), lw->thumbs_enabled); | |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
523
diff
changeset
|
1865 g_object_set(action, "sensitive", (lw->file_view_type == FILEVIEW_LIST), NULL); |
9 | 1866 |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
12
diff
changeset
|
1867 gtk_toggle_tool_button_set_active(GTK_TOGGLE_TOOL_BUTTON(lw->thumb_button), lw->thumbs_enabled); |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
523
diff
changeset
|
1868 gtk_widget_set_sensitive(lw->thumb_button, (lw->file_view_type == FILEVIEW_LIST)); |
9 | 1869 } |
1870 | |
1871 void layout_util_sync(LayoutWindow *lw) | |
1872 { | |
1873 layout_util_sync_views(lw); | |
1874 layout_util_sync_thumb(lw); | |
1875 layout_menu_recent_update(lw); | |
1272 | 1876 // layout_menu_edit_update(lw); |
9 | 1877 } |
1878 | |
1879 /* | |
1880 *----------------------------------------------------------------------------- | |
1881 * icons (since all the toolbar icons are included here, best place as any) | |
1882 *----------------------------------------------------------------------------- | |
1883 */ | |
1884 | |
1885 PixmapFolders *folder_icons_new(void) | |
1886 { | |
1887 PixmapFolders *pf; | |
1888 | |
1889 pf = g_new0(PixmapFolders, 1); | |
1890 | |
1891 pf->close = pixbuf_inline(PIXBUF_INLINE_FOLDER_CLOSED); | |
1892 pf->open = pixbuf_inline(PIXBUF_INLINE_FOLDER_OPEN); | |
1893 pf->deny = pixbuf_inline(PIXBUF_INLINE_FOLDER_LOCKED); | |
1894 pf->parent = pixbuf_inline(PIXBUF_INLINE_FOLDER_UP); | |
1895 | |
1896 return pf; | |
1897 } | |
1898 | |
1899 void folder_icons_free(PixmapFolders *pf) | |
1900 { | |
1901 if (!pf) return; | |
1902 | |
1903 g_object_unref(pf->close); | |
1904 g_object_unref(pf->open); | |
1905 g_object_unref(pf->deny); | |
1906 g_object_unref(pf->parent); | |
1907 | |
1908 g_free(pf); | |
1909 } | |
1910 | |
1911 /* | |
1912 *----------------------------------------------------------------------------- | |
1913 * sidebars | |
1914 *----------------------------------------------------------------------------- | |
1915 */ | |
1916 | |
1917 static void layout_bar_info_destroyed(GtkWidget *widget, gpointer data) | |
1918 { | |
1919 LayoutWindow *lw = data; | |
1920 | |
1921 lw->bar_info = NULL; | |
1922 | |
1923 if (lw->utility_box) | |
1924 { | |
1925 /* destroyed from within itself */ | |
1926 lw->bar_info_enabled = FALSE; | |
1927 layout_util_sync_views(lw); | |
1928 } | |
1929 } | |
1930 | |
1931 static GList *layout_bar_info_list_cb(gpointer data) | |
1932 { | |
1933 LayoutWindow *lw = data; | |
1934 | |
1935 return layout_selection_list(lw); | |
1936 } | |
1937 | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1938 static void layout_bar_info_sized(GtkWidget *widget, GtkAllocation *allocation, gpointer data) |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1939 { |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1940 LayoutWindow *lw = data; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1941 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1942 if (!lw->bar_info) return; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1943 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1944 options->panels.info.width = lw->bar_info_width = allocation->width; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1945 } |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1946 |
9 | 1947 static void layout_bar_info_new(LayoutWindow *lw) |
1948 { | |
1949 if (!lw->utility_box) return; | |
442 | 1950 |
138 | 1951 lw->bar_info = bar_info_new(layout_image_get_fd(lw), FALSE, lw->utility_box); |
9 | 1952 bar_info_set_selection_func(lw->bar_info, layout_bar_info_list_cb, lw); |
1953 bar_info_selection(lw->bar_info, layout_selection_count(lw, NULL) - 1); | |
1954 g_signal_connect(G_OBJECT(lw->bar_info), "destroy", | |
1955 G_CALLBACK(layout_bar_info_destroyed), lw); | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1956 g_signal_connect(G_OBJECT(lw->bar_info), "size_allocate", |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1957 G_CALLBACK(layout_bar_info_sized), lw); |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1958 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1959 options->panels.info.enabled = lw->bar_info_enabled = TRUE; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1960 gtk_widget_set_size_request(lw->bar_info, lw->bar_info_width, -1); |
9 | 1961 |
1962 gtk_box_pack_start(GTK_BOX(lw->utility_box), lw->bar_info, FALSE, FALSE, 0); | |
1963 gtk_widget_show(lw->bar_info); | |
1964 } | |
442 | 1965 |
9 | 1966 static void layout_bar_info_close(LayoutWindow *lw) |
1967 { | |
1968 if (lw->bar_info) | |
1969 { | |
1970 bar_info_close(lw->bar_info); | |
1971 lw->bar_info = NULL; | |
1972 } | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
1973 options->panels.info.enabled = lw->bar_info_enabled = FALSE; |
9 | 1974 } |
1975 | |
1976 void layout_bar_info_toggle(LayoutWindow *lw) | |
1977 { | |
1978 if (lw->bar_info_enabled) | |
1979 { | |
1980 layout_bar_info_close(lw); | |
1981 } | |
1982 else | |
1983 { | |
1984 layout_bar_info_new(lw); | |
1985 } | |
1986 } | |
1987 | |
1988 static void layout_bar_info_new_image(LayoutWindow *lw) | |
1989 { | |
1990 if (!lw->bar_info || !lw->bar_info_enabled) return; | |
1991 | |
138 | 1992 bar_info_set(lw->bar_info, layout_image_get_fd(lw)); |
9 | 1993 } |
1994 | |
1995 static void layout_bar_info_new_selection(LayoutWindow *lw, gint count) | |
1996 { | |
1997 if (!lw->bar_info || !lw->bar_info_enabled) return; | |
1998 | |
1999 bar_info_selection(lw->bar_info, count - 1); | |
2000 } | |
2001 | |
2002 static void layout_bar_info_maint_renamed(LayoutWindow *lw) | |
2003 { | |
2004 if (!lw->bar_info || !lw->bar_info_enabled) return; | |
2005 | |
138 | 2006 bar_info_maint_renamed(lw->bar_info, layout_image_get_fd(lw)); |
9 | 2007 } |
2008 | |
2009 static void layout_bar_exif_destroyed(GtkWidget *widget, gpointer data) | |
2010 { | |
2011 LayoutWindow *lw = data; | |
2012 | |
2013 if (lw->bar_exif) | |
2014 { | |
2015 lw->bar_exif_advanced = bar_exif_is_advanced(lw->bar_exif); | |
2016 } | |
2017 | |
2018 lw->bar_exif = NULL; | |
2019 if (lw->utility_box) | |
2020 { | |
2021 /* destroyed from within itself */ | |
2022 lw->bar_exif_enabled = FALSE; | |
2023 layout_util_sync_views(lw); | |
2024 } | |
2025 } | |
2026 | |
2027 static void layout_bar_exif_sized(GtkWidget *widget, GtkAllocation *allocation, gpointer data) | |
2028 { | |
2029 LayoutWindow *lw = data; | |
2030 | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2031 if (!lw->bar_exif) return; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2032 |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2033 options->panels.exif.width = lw->bar_exif_width = allocation->width; |
9 | 2034 } |
2035 | |
2036 static void layout_bar_exif_new(LayoutWindow *lw) | |
2037 { | |
2038 if (!lw->utility_box) return; | |
2039 | |
138 | 2040 lw->bar_exif = bar_exif_new(TRUE, layout_image_get_fd(lw), |
9 | 2041 lw->bar_exif_advanced, lw->utility_box); |
2042 g_signal_connect(G_OBJECT(lw->bar_exif), "destroy", | |
2043 G_CALLBACK(layout_bar_exif_destroyed), lw); | |
2044 g_signal_connect(G_OBJECT(lw->bar_exif), "size_allocate", | |
2045 G_CALLBACK(layout_bar_exif_sized), lw); | |
2046 | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2047 options->panels.exif.enabled = lw->bar_exif_enabled = TRUE; |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2048 gtk_widget_set_size_request(lw->bar_exif, lw->bar_exif_width, -1); |
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2049 |
9 | 2050 gtk_box_pack_start(GTK_BOX(lw->utility_box), lw->bar_exif, FALSE, FALSE, 0); |
2051 if (lw->bar_info) gtk_box_reorder_child(GTK_BOX(lw->utility_box), lw->bar_exif, 1); | |
2052 gtk_widget_show(lw->bar_exif); | |
2053 } | |
2054 | |
2055 static void layout_bar_exif_close(LayoutWindow *lw) | |
2056 { | |
2057 if (lw->bar_exif) | |
2058 { | |
2059 bar_exif_close(lw->bar_exif); | |
2060 lw->bar_exif = NULL; | |
2061 } | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2062 options->panels.exif.enabled = lw->bar_exif_enabled = FALSE; |
9 | 2063 } |
2064 | |
2065 void layout_bar_exif_toggle(LayoutWindow *lw) | |
2066 { | |
2067 if (lw->bar_exif_enabled) | |
2068 { | |
2069 layout_bar_exif_close(lw); | |
2070 } | |
2071 else | |
2072 { | |
2073 layout_bar_exif_new(lw); | |
2074 } | |
2075 } | |
2076 | |
2077 static void layout_bar_exif_new_image(LayoutWindow *lw) | |
2078 { | |
2079 if (!lw->bar_exif || !lw->bar_exif_enabled) return; | |
2080 | |
138 | 2081 bar_exif_set(lw->bar_exif, layout_image_get_fd(lw)); |
9 | 2082 } |
2083 | |
2084 static void layout_bar_sort_destroyed(GtkWidget *widget, gpointer data) | |
2085 { | |
2086 LayoutWindow *lw = data; | |
2087 | |
2088 lw->bar_sort = NULL; | |
2089 | |
2090 if (lw->utility_box) | |
2091 { | |
2092 /* destroyed from within itself */ | |
2093 lw->bar_sort_enabled = FALSE; | |
2094 | |
2095 layout_util_sync_views(lw); | |
2096 } | |
2097 } | |
2098 | |
2099 static void layout_bar_sort_new(LayoutWindow *lw) | |
2100 { | |
2101 if (!lw->utility_box) return; | |
2102 | |
2103 lw->bar_sort = bar_sort_new(lw); | |
2104 g_signal_connect(G_OBJECT(lw->bar_sort), "destroy", | |
2105 G_CALLBACK(layout_bar_sort_destroyed), lw); | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2106 options->panels.sort.enabled = lw->bar_sort_enabled = TRUE; |
9 | 2107 |
2108 gtk_box_pack_end(GTK_BOX(lw->utility_box), lw->bar_sort, FALSE, FALSE, 0); | |
2109 gtk_widget_show(lw->bar_sort); | |
2110 } | |
2111 | |
2112 static void layout_bar_sort_close(LayoutWindow *lw) | |
2113 { | |
2114 if (lw->bar_sort) | |
2115 { | |
2116 bar_sort_close(lw->bar_sort); | |
2117 lw->bar_sort = NULL; | |
2118 } | |
489
3809ffa3567b
Save state and width of exif, info and sort panels to rc file.
zas_
parents:
482
diff
changeset
|
2119 options->panels.sort.enabled = lw->bar_sort_enabled = FALSE; |
9 | 2120 } |
2121 | |
2122 void layout_bar_sort_toggle(LayoutWindow *lw) | |
2123 { | |
2124 if (lw->bar_sort_enabled) | |
2125 { | |
2126 layout_bar_sort_close(lw); | |
2127 } | |
2128 else | |
2129 { | |
2130 layout_bar_sort_new(lw); | |
2131 } | |
2132 } | |
2133 | |
2134 void layout_bars_new_image(LayoutWindow *lw) | |
2135 { | |
2136 layout_bar_info_new_image(lw); | |
2137 layout_bar_exif_new_image(lw); | |
1214
31402ecb2aed
write metadata after timeout, image change or dir change
nadvornik
parents:
1176
diff
changeset
|
2138 |
31402ecb2aed
write metadata after timeout, image change or dir change
nadvornik
parents:
1176
diff
changeset
|
2139 /* this should be called here to handle the metadata edited in bars */ |
31402ecb2aed
write metadata after timeout, image change or dir change
nadvornik
parents:
1176
diff
changeset
|
2140 if (options->metadata.confirm_on_image_change) |
1231 | 2141 metadata_write_queue_confirm(NULL, NULL); |
9 | 2142 } |
2143 | |
2144 void layout_bars_new_selection(LayoutWindow *lw, gint count) | |
2145 { | |
2146 layout_bar_info_new_selection(lw, count); | |
2147 } | |
2148 | |
2149 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image) | |
2150 { | |
2151 lw->utility_box = gtk_hbox_new(FALSE, PREF_PAD_GAP); | |
2152 gtk_box_pack_start(GTK_BOX(lw->utility_box), image, TRUE, TRUE, 0); | |
2153 gtk_widget_show(image); | |
2154 | |
2155 if (lw->bar_sort_enabled) | |
2156 { | |
2157 layout_bar_sort_new(lw); | |
2158 } | |
2159 | |
2160 if (lw->bar_info_enabled) | |
2161 { | |
2162 layout_bar_info_new(lw); | |
2163 } | |
2164 | |
2165 if (lw->bar_exif_enabled) | |
2166 { | |
2167 layout_bar_exif_new(lw); | |
2168 } | |
2169 | |
2170 return lw->utility_box; | |
2171 } | |
2172 | |
2173 void layout_bars_close(LayoutWindow *lw) | |
2174 { | |
2175 layout_bar_sort_close(lw); | |
2176 layout_bar_exif_close(lw); | |
2177 layout_bar_info_close(lw); | |
2178 } | |
2179 | |
2180 void layout_bars_maint_renamed(LayoutWindow *lw) | |
2181 { | |
2182 layout_bar_info_maint_renamed(lw); | |
2183 } | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1047
diff
changeset
|
2184 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |