Mercurial > geeqie
view src/view_dir.h @ 382:eceeced4cbb9
Rename vdt occurences to vd.
author | zas_ |
---|---|
date | Wed, 16 Apr 2008 14:56:31 +0000 |
parents | 5afe77bb563a |
children | 499d7ba62261 |
line wrap: on
line source
/* * Geeqie * (C) 2008 Vladimir Nadvornik * * Author: Laurent Monin * * This software is released under the GNU General Public License (GNU GPL). * Please read the included file COPYING for more information. * This software comes with no warranty of any kind, use at your own risk! */ #ifndef VIEW_DIR_H #define VIEW_DIR_H enum { DIR_COLUMN_POINTER = 0, DIR_COLUMN_ICON, DIR_COLUMN_NAME, DIR_COLUMN_COLOR, DIR_COLUMN_COUNT }; extern GtkRadioActionEntry menu_view_dir_radio_entries[2]; ViewDir *vd_new(DirViewType type, const gchar *path); void vd_set_select_func(ViewDir *vdl, void (*func)(ViewDir *vdl, const gchar *path, gpointer data), gpointer data); void vd_set_layout(ViewDir *vdl, LayoutWindow *layout); gint vd_set_path(ViewDir *vdl, const gchar *path); void vd_refresh(ViewDir *vdl); const gchar *vd_row_get_path(ViewDir *vdl, gint row); #endif