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