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