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