Code

6679a93cc797f580c10643869d2426def1e9c3f6
[ncmpc.git] / src / screen_browser.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2017 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  *
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.
9  *
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.
14  *
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"
25 #include "ncmpc_curses.h"
27 #include <stdbool.h>
29 struct mpdclient;
30 struct mpdclient_playlist;
31 struct filelist;
32 struct list_window;
33 struct list_window_state;
35 struct screen_browser {
36         struct list_window *lw;
38         struct filelist *filelist;
39         const char *song_format;
40 };
42 #ifndef NCMPC_MINI
44 void
45 screen_browser_sync_highlights(struct filelist *fl,
46                                const struct mpdclient_playlist *playlist);
48 #else
50 #include <glib.h>
51 static inline void
52 screen_browser_sync_highlights(gcc_unused struct filelist *fl,
53                                gcc_unused const struct mpdclient_playlist *playlist)
54 {
55 }
57 #endif
59 void
60 screen_browser_paint_directory(WINDOW *w, unsigned width,
61                                bool selected, const char *name);
63 void
64 screen_browser_paint(const struct screen_browser *browser);
66 struct filelist_entry *
67 browser_get_selected_entry(const struct screen_browser *browser);
69 bool
70 browser_cmd(struct screen_browser *browser,
71             struct mpdclient *c, command_t cmd);
73 #endif