Remove commented out code.
[geeqie.git] / src / view_dir_list.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2012 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13 #ifndef VIEW_DIR_LIST_H
14 #define VIEW_DIR_LIST_H
15
16
17 ViewDir *vdlist_new(ViewDir *vd, FileData *dir_fd);
18
19 gboolean vdlist_set_fd(ViewDir *vd, FileData *dir_fd);
20 void vdlist_refresh(ViewDir *vd);
21
22 const gchar *vdlist_row_get_path(ViewDir *vd, gint row);
23 gboolean vdlist_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter);
24
25 void vdlist_rename_by_row(ViewDir *vd, FileData *fd);
26 FileData *vdlist_row_by_path(ViewDir *vd, const gchar *path, gint *row);
27
28 gboolean vdlist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
29 gboolean vdlist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
30
31 void vdlist_destroy_cb(GtkWidget *widget, gpointer data);
32
33 #endif
34 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */