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