Handle streams separately in tree_add_track()
[cmus.git] / browser.h
blob99fcbc58906606ff90ba08f7f6cd16291f7acd9c
1 /*
2 * Copyright 2004 Timo Hirvonen
3 *
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
17 * 02111-1307, USA.
20 #ifndef _BROWSER_H
21 #define _BROWSER_H
23 #include "list.h"
24 #include "window.h"
25 #include "search.h"
26 #include "uchar.h"
28 struct browser_entry {
29 struct list_head node;
31 enum { BROWSER_ENTRY_DIR, BROWSER_ENTRY_FILE, BROWSER_ENTRY_PLLINE } type;
32 char name[0];
35 static inline struct browser_entry *iter_to_browser_entry(struct iter *iter)
37 return iter->data1;
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);
54 #endif