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