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