Code

screen_browser: export screen_browser_paint_directory()
[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 "command.h"
24 #include "config.h"
26 #include <stdbool.h>
28 #ifdef HAVE_NCURSESW_NCURSES_H
29 #include <ncursesw/ncurses.h>
30 #else
31 #include <ncurses.h>
32 #endif
34 struct mpdclient;
35 struct mpdclient_playlist;
36 struct filelist;
37 struct list_window;
38 struct list_window_state;
40 struct screen_browser {
41         struct list_window *lw;
43         struct filelist *filelist;
44 };
46 #ifndef NCMPC_MINI
48 void
49 screen_browser_sync_highlights(struct filelist *fl,
50                                const struct mpdclient_playlist *playlist);
52 #else
54 #include <glib.h>
55 static inline void
56 screen_browser_sync_highlights(G_GNUC_UNUSED struct filelist *fl,
57                                G_GNUC_UNUSED const struct mpdclient_playlist *playlist)
58 {
59 }
61 #endif
63 void
64 screen_browser_paint_directory(WINDOW *w, unsigned width,
65                                bool selected, const char *name);
67 void
68 screen_browser_paint(const struct screen_browser *browser);
70 struct filelist_entry *
71 browser_get_selected_entry(const struct screen_browser *browser);
73 bool
74 browser_cmd(struct screen_browser *browser,
75             struct mpdclient *c, command_t cmd);
77 #endif