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