Mercurial > geeqie.yaz
annotate src/layout_util.h @ 1672:831c79e50d34
updated ca.po - submitted by Mecatxis
author | nadvornik |
---|---|
date | Thu, 02 Jul 2009 17:31:38 +0000 |
parents | 99c194fa2fc9 |
children |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
14 #ifndef LAYOUT_UTIL_H | |
15 #define LAYOUT_UTIL_H | |
16 | |
17 | |
18 #include "layout.h" | |
19 | |
1433
b4ad1d201279
Use gboolean where applicable, minor cleanup and indentations fixes.
zas_
parents:
1335
diff
changeset
|
20 gboolean layout_key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); |
9 | 21 |
22 void layout_util_sync_thumb(LayoutWindow *lw); | |
23 void layout_util_sync(LayoutWindow *lw); | |
24 | |
25 | |
1272 | 26 //void layout_edit_update_all(void); |
9 | 27 |
28 void layout_recent_update_all(void); | |
29 void layout_recent_add_path(const gchar *path); | |
30 | |
497 | 31 void layout_copy_path_update_all(void); |
32 | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1433
diff
changeset
|
33 void layout_editors_reload_all(void); |
9 | 34 void layout_actions_setup(LayoutWindow *lw); |
35 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window); | |
36 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw); | |
1335 | 37 void layout_toolbar_add_from_config(LayoutWindow *lw, const gchar **attribute_names, const gchar **attribute_values); |
9 | 38 |
1335 | 39 GtkWidget *layout_actions_toolbar(LayoutWindow *lw); |
1043 | 40 |
1335 | 41 void layout_toolbar_clear(LayoutWindow *lw); |
42 void layout_toolbar_add(LayoutWindow *lw, const gchar *action); | |
43 void layout_toolbar_add_default(LayoutWindow *lw); | |
44 void layout_toolbar_write_config(LayoutWindow *lw, GString *outstr, gint indent); | |
45 | |
9 | 46 |
47 void layout_keyboard_init(LayoutWindow *lw, GtkWidget *window); | |
48 | |
49 | |
1291
50ae02a4a675
replaced bar_info with an universal bar, restored the original
nadvornik
parents:
1284
diff
changeset
|
50 void layout_bar_toggle(LayoutWindow *lw); |
1317 | 51 void layout_bar_set(LayoutWindow *lw, GtkWidget *bar); |
1309 | 52 |
9 | 53 void layout_bar_sort_toggle(LayoutWindow *lw); |
1320 | 54 void layout_bar_sort_set(LayoutWindow *lw, GtkWidget *bar); |
9 | 55 |
56 void layout_bars_new_image(LayoutWindow *lw); | |
57 void layout_bars_new_selection(LayoutWindow *lw, gint count); | |
58 | |
59 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image); | |
60 void layout_bars_close(LayoutWindow *lw); | |
61 | |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
1291
diff
changeset
|
62 void layout_exif_window_new(LayoutWindow *lw); |
9 | 63 |
64 #endif | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1043
diff
changeset
|
65 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |