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