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