2 * Copyright 2004 Timo Hirvonen
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
28 struct browser_entry
{
29 struct list_head node
;
31 enum { BROWSER_ENTRY_DIR
, BROWSER_ENTRY_FILE
, BROWSER_ENTRY_PLLINE
} type
;
35 static inline struct browser_entry
*iter_to_browser_entry(struct iter
*iter
)
40 extern struct window
*browser_win
;
41 extern char *browser_dir
;
42 extern struct searchable
*browser_searchable
;
44 void browser_init(void);
45 void browser_exit(void);
46 int browser_chdir(const char *dir
);
47 char *browser_get_sel(void);
48 void browser_up(void);
49 void browser_enter(void);
50 void browser_delete(void);
51 void browser_reload(void);
52 void browser_toggle_show_hidden(void);