Merge few more vdlist/vdtree functions.
[geeqie.git] / src / view_dir.h
1 /*
2  * Geeqie
3  * (C) 2008 Vladimir Nadvornik
4  *
5  * Author: Laurent Monin
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 #ifndef VIEW_DIR_H
13 #define VIEW_DIR_H
14
15 enum {
16         DIR_COLUMN_POINTER = 0,
17         DIR_COLUMN_ICON,
18         DIR_COLUMN_NAME,
19         DIR_COLUMN_COLOR,
20         DIR_COLUMN_COUNT
21 };
22
23 extern GtkRadioActionEntry menu_view_dir_radio_entries[2];
24
25 void vd_destroy(ViewDir *vd);
26
27 ViewDir *vd_new(DirViewType type, const gchar *path);
28
29 void vd_set_select_func(ViewDir *vdl, void (*func)(ViewDir *vdl, const gchar *path, gpointer data), gpointer data);
30
31 void vd_set_layout(ViewDir *vdl, LayoutWindow *layout);
32
33 gint vd_set_path(ViewDir *vdl, const gchar *path);
34 void vd_refresh(ViewDir *vdl);
35 gint vd_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter);
36
37 const gchar *vd_row_get_path(ViewDir *vdl, gint row);
38
39 void vd_color_set(ViewDir *vd, FileData *fd, gint color_set);
40 void vd_popup_destroy_cb(GtkWidget *widget, gpointer data);
41
42 GtkWidget *vd_drop_menu(ViewDir *vd, gint active);
43 GtkWidget *vd_pop_menu(ViewDir *vd, FileData *fd);
44
45
46 #endif
47
48