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