Fix #1240: Regression: Option to open new full-function window directly is missing
[geeqie.git] / src / view-dir-tree.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef VIEW_DIR_TREE_H
23 #define VIEW_DIR_TREE_H
24
25 #include <ctime>
26
27 #include <gdk/gdk.h>
28 #include <glib.h>
29 #include <gtk/gtk.h>
30
31 struct FileData;
32 struct ViewDir;
33
34 struct NodeData
35 {
36         FileData *fd;
37         gboolean expanded;
38         time_t last_update;
39         gint version;
40 };
41
42 ViewDir *vdtree_new(ViewDir *vd, FileData *dir_fd);
43
44 gboolean vdtree_set_fd(ViewDir *vd, FileData *dir_fd);
45 void vdtree_refresh(ViewDir *vd);
46
47 const gchar *vdtree_row_get_path(ViewDir *vd, gint row);
48 gboolean vdtree_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter, GtkTreeIter *parent);
49 gboolean vdtree_populate_path_by_iter(ViewDir *vd, GtkTreeIter *iter, gboolean force, FileData *target_fd);
50
51 FileData *vdtree_populate_path(ViewDir *vd, FileData *target_fd, gboolean expand, gboolean force);
52 void vdtree_rename_by_data(ViewDir *vd, FileData *fd);
53
54 gboolean vdtree_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
55 gboolean vdtree_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
56
57 void vdtree_destroy_cb(GtkWidget *widget, gpointer data);
58
59 #endif
60 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */