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