3 * \brief Header: directory tree browser
10 typedef struct WTree WTree
;
12 int tree_init (const char *current_dir
, int lines
);
13 void tree_chdir (WTree
*tree
, const char *dir
);
14 char *tree_selected_name (WTree
*tree
);
16 void sync_tree (const char *pathname
);
18 extern int xtree_mode
;
20 WTree
*tree_new (int is_panel
, int y
, int x
, int lines
, int cols
);
21 extern WTree
*the_tree
;