Code

44d1d66b71b6434f0b13543fa490bc455952aeb4
[ncmpc.git] / src / screen_browser.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2009 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
20 #ifndef SCREEN_BROWSER_H
21 #define SCREEN_BROWSER_H
23 #include "screen.h"
24 #include "config.h"
26 #include <stdbool.h>
28 struct mpdclient;
29 struct filelist;
30 struct list_window;
31 struct list_window_state;
33 struct screen_browser {
34         struct list_window *lw;
36         struct filelist *filelist;
37 };
39 #ifndef NCMPC_MINI
41 void
42 sync_highlights(struct mpdclient *c, struct filelist *fl);
44 void
45 browser_playlist_changed(struct screen_browser *browser, struct mpdclient *c,
46                          int event, gpointer data);
48 #endif
50 const char *browser_lw_callback(unsigned index, bool *highlight, char** second_column, void *filelist);
52 struct filelist_entry *
53 browser_get_selected_entry(const struct screen_browser *browser);
55 bool
56 browser_cmd(struct screen_browser *browser,
57             struct mpdclient *c, command_t cmd);
59 #endif