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