X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fscreen_browser.h;h=82d6ffa4afe78bc9ade37321790e4d1eada094a5;hb=63fc23f1c83f52eb47b5511e97bb1fe7cf7d82d5;hp=8346084f3148d7a660e77643d1c2b3c51075d3c4;hpb=4345c919f9d9c184f2369e630089323d5fdf7691;p=ncmpc.git diff --git a/src/screen_browser.h b/src/screen_browser.h index 8346084..82d6ffa 100644 --- a/src/screen_browser.h +++ b/src/screen_browser.h @@ -1,5 +1,5 @@ /* ncmpc (Ncurses MPD Client) - * (c) 2004-2010 The Music Player Daemon Project + * (c) 2004-2017 The Music Player Daemon Project * Project homepage: http://musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -47,7 +47,6 @@ screen_browser_sync_highlights(struct filelist *fl, #else -#include static inline void screen_browser_sync_highlights(gcc_unused struct filelist *fl, gcc_unused const struct mpdclient_playlist *playlist) @@ -63,11 +62,17 @@ screen_browser_paint_directory(WINDOW *w, unsigned width, void screen_browser_paint(const struct screen_browser *browser); -struct filelist_entry * -browser_get_selected_entry(const struct screen_browser *browser); +#ifdef HAVE_GETMOUSE +bool +browser_mouse(struct screen_browser *browser, + struct mpdclient *c, int x, int y, mmask_t bstate); +#endif bool browser_cmd(struct screen_browser *browser, struct mpdclient *c, command_t cmd); +struct filelist_entry * +browser_get_selected_entry(const struct screen_browser *browser); + #endif