Make directory view popup menu common and move it to view_dir.{c,h}.
[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
36 const gchar *vd_row_get_path(ViewDir *vdl, gint row);
37
38 void vd_color_set(ViewDir *vd, FileData *fd, gint color_set);
39 void vd_popup_destroy_cb(GtkWidget *widget, gpointer data);
40
41 GtkWidget *vd_drop_menu(ViewDir *vd, gint active);
42 GtkWidget *vd_pop_menu(ViewDir *vd, FileData *fd);
43
44
45 #endif
46
47