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