9
|
1 /*
|
|
2 * GQview
|
|
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
|
|
20 void layout_util_sync_thumb(LayoutWindow *lw);
|
|
21 void layout_util_sync(LayoutWindow *lw);
|
|
22
|
|
23
|
|
24 void layout_edit_update_all(void);
|
|
25
|
|
26 void layout_recent_update_all(void);
|
|
27 void layout_recent_add_path(const gchar *path);
|
|
28
|
|
29 void layout_actions_setup(LayoutWindow *lw);
|
|
30 void layout_actions_add_window(LayoutWindow *lw, GtkWidget *window);
|
|
31 GtkWidget *layout_actions_menu_bar(LayoutWindow *lw);
|
|
32
|
|
33 GtkWidget *layout_button(GtkWidget *box, gchar **pixmap_data, const gchar *stock_id, gint toggle,
|
|
34 GtkTooltips *tooltips, const gchar *tip_text,
|
|
35 GtkSignalFunc func, gpointer data);
|
|
36 GtkWidget *layout_button_bar(LayoutWindow *lw);
|
|
37
|
|
38 void layout_keyboard_init(LayoutWindow *lw, GtkWidget *window);
|
|
39
|
|
40
|
|
41 PixmapFolders *folder_icons_new(void);
|
|
42 void folder_icons_free(PixmapFolders *pf);
|
|
43
|
|
44
|
|
45 void layout_bar_info_toggle(LayoutWindow *lw);
|
|
46 void layout_bar_exif_toggle(LayoutWindow *lw);
|
|
47 void layout_bar_sort_toggle(LayoutWindow *lw);
|
|
48
|
|
49 void layout_bars_new_image(LayoutWindow *lw);
|
|
50 void layout_bars_new_selection(LayoutWindow *lw, gint count);
|
|
51
|
|
52 GtkWidget *layout_bars_prepare(LayoutWindow *lw, GtkWidget *image);
|
|
53 void layout_bars_close(LayoutWindow *lw);
|
|
54
|
|
55 void layout_bars_maint_renamed(LayoutWindow *lw);
|
|
56
|
|
57
|
|
58 #endif
|