rename GQview -> Geeqie over the code
[geeqie.git] / src / layout_util.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #ifndef LAYOUT_UTIL_H
14 #define LAYOUT_UTIL_H
15
16
17 #include "layout.h"
18
19 gint layout_key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
20
21 void layout_util_sync_thumb(LayoutWindow *lw);
22 void layout_util_sync(LayoutWindow *lw);
23
24
25 void layout_edit_update_all(void);
26
27 void layout_recent_update_all(void);
28 void layout_recent_add_path(const gchar *path);
29
30 void layout_actions_setup(LayoutWindow *lw);
31 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window);
32 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw);
33
34 GtkWidget *layout_button(GtkWidget *box, gchar **pixmap_data, const gchar *stock_id, gint toggle,
35                          GtkTooltips *tooltips, const gchar *tip_text,
36                          GtkSignalFunc func, gpointer data);
37 GtkWidget *layout_button_bar(LayoutWindow *lw);
38
39 void layout_keyboard_init(LayoutWindow *lw, GtkWidget *window);
40
41
42 PixmapFolders *folder_icons_new(void);
43 void folder_icons_free(PixmapFolders *pf);
44
45
46 void layout_bar_info_toggle(LayoutWindow *lw);
47 void layout_bar_exif_toggle(LayoutWindow *lw);
48 void layout_bar_sort_toggle(LayoutWindow *lw);
49
50 void layout_bars_new_image(LayoutWindow *lw);
51 void layout_bars_new_selection(LayoutWindow *lw, gint count);
52
53 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image);
54 void layout_bars_close(LayoutWindow *lw);
55
56 void layout_bars_maint_renamed(LayoutWindow *lw);
57
58
59 #endif