X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fscreen_utils.c;h=8f69930d64126752b048164fcd1a8d7e9d0df379;hb=4ec02f37ba70c59641c08bf9199e5c3395e8d1ff;hp=080b118b13fee989ca00f230fc21f8809ab50c4e;hpb=9b2d077c7f5dca6e4013f04318f7b83531fac387;p=ncmpc.git diff --git a/src/screen_utils.c b/src/screen_utils.c index 080b118..8f69930 100644 --- a/src/screen_utils.c +++ b/src/screen_utils.c @@ -1,5 +1,6 @@ -/* - * (c) 2004 by Kalle Wallin (kaw@linux.se) +/* ncmpc (Ncurses MPD Client) + * (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 * it under the terms of the GNU General Public License as published by @@ -10,145 +11,151 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include -#include -#include -#include -#include - +#include "screen_utils.h" +#include "screen.h" +#include "mpdclient.h" #include "config.h" -#include "ncmpc.h" -#include "libmpdclient.h" -#include "mpc.h" -#include "support.h" -#include "command.h" +#include "i18n.h" #include "options.h" -#include "list_window.h" #include "colors.h" -#include "screen.h" +#include "wreadln.h" + +#include +#include + +void +screen_bell(void) +{ + if (options.audible_bell) + beep(); + if (options.visible_bell) + flash(); +} -#define FIND_PROMPT _("Find: ") -#define RFIND_PROMPT _("Find backward: ") +static bool +ignore_key(int key) +{ + return +#ifdef HAVE_GETMOUSE + /* ignore mouse events */ + key == KEY_MOUSE || +#endif + key == ERR; +} int -screen_getch(WINDOW *w, char *prompt) +screen_getch(const char *prompt) { - int key = -1; - int prompt_len = strlen(prompt); - - colors_use(w, COLOR_STATUS_ALERT); - wclear(w); - wmove(w, 0, 0); - waddstr(w, prompt); - wmove(w, 0, prompt_len); - - echo(); - curs_set(1); - timeout(-1); - - key = wgetch(w); - if( key==KEY_RESIZE ) - screen_resize(); - - noecho(); - curs_set(0); - timeout(SCREEN_TIMEOUT); - - return key; + WINDOW *w = screen.status_bar.window.w; + + colors_use(w, COLOR_STATUS_ALERT); + werase(w); + wmove(w, 0, 0); + waddstr(w, prompt); + + echo(); + curs_set(1); + + int key; + while (ignore_key(key = wgetch(w))) {} + + noecho(); + curs_set(0); + + return key; } +bool +screen_get_yesno(const char *prompt, bool def) +{ + /* NOTE: if one day a translator decides to use a multi-byte character + for one of the yes/no keys, we'll have to parse it properly */ + + int key = tolower(screen_getch(prompt)); + if (key == YES[0]) + return true; + else if (key == NO[0]) + return false; + else + return def; +} char * -screen_getstr(WINDOW *w, char *prompt) +screen_readln(const char *prompt, + const char *value, + GList **history, + GCompletion *gcmp) { - char buf[256], *line = NULL; - int prompt_len = strlen(prompt); + struct window *window = &screen.status_bar.window; + WINDOW *w = window->w; + char *line = NULL; + + wmove(w, 0,0); + curs_set(1); + colors_use(w, COLOR_STATUS_ALERT); + line = wreadln(w, prompt, value, window->cols, history, gcmp); + curs_set(0); + return line; +} - colors_use(w, COLOR_STATUS_ALERT); - wclear(w); - wmove(w, 0, 0); - waddstr(w, prompt); - wmove(w, 0, prompt_len); - - echo(); - curs_set(1); +char * +screen_read_password(const char *prompt) +{ + struct window *window = &screen.status_bar.window; + WINDOW *w = window->w; - if( wgetnstr(w, buf, 256) == OK ) - line = g_strdup(buf); + wmove(w, 0,0); + curs_set(1); + colors_use(w, COLOR_STATUS_ALERT); - noecho(); - curs_set(0); + if (prompt == NULL) + prompt = _("Password"); + char *ret = wreadln_masked(w, prompt, NULL, window->cols, NULL, NULL); - return line; + curs_set(0); + return ret; } - -/* query user for a string and find it in a list window */ -int -screen_find(screen_t *screen, - mpd_client_t *c, - list_window_t *lw, - int rows, - command_t findcmd, - list_window_callback_fn_t callback_fn) +void +screen_display_completion_list(GList *list) { - int reversed = 0; - int retval = 0; - char *prompt = FIND_PROMPT; - - if( findcmd==CMD_LIST_RFIND ||findcmd==CMD_LIST_RFIND_NEXT ) - { - prompt = RFIND_PROMPT; - reversed = 1; - } - - switch(findcmd) - { - case CMD_LIST_FIND: - case CMD_LIST_RFIND: - if( screen->findbuf ) - { - g_free(screen->findbuf); - screen->findbuf=NULL; - } - /* continue... */ - case CMD_LIST_FIND_NEXT: - case CMD_LIST_RFIND_NEXT: - if( !screen->findbuf ) - screen->findbuf=screen_getstr(screen->status_window.w, prompt); - if( reversed ) - retval = list_window_rfind(lw, - callback_fn, - c, - screen->findbuf, - options.find_wrap, - rows); - else - retval = list_window_find(lw, - callback_fn, - c, - screen->findbuf, - options.find_wrap); - if( retval == 0 ) - { - lw->repaint = 1; + static GList *prev_list = NULL; + static guint prev_length = 0; + static guint offset = 0; + WINDOW *w = screen.main_window.w; + + unsigned length = g_list_length(list); + if (list == prev_list && length == prev_length) { + offset += screen.main_window.rows; + if (offset >= length) + offset = 0; + } else { + prev_list = list; + prev_length = length; + offset = 0; } - else - { - screen_status_printf(_("Unable to find \'%s\'"), screen->findbuf); - beep(); - } - return 1; - default: - break; - } - return 0; -} + colors_use(w, COLOR_STATUS_ALERT); + + unsigned y = 0; + while (y < screen.main_window.rows) { + GList *item = g_list_nth(list, y+offset); + wmove(w, y++, 0); + wclrtoeol(w); + if (item) { + gchar *tmp = g_strdup(item->data); + waddstr(w, g_basename(tmp)); + g_free(tmp); + } + } + + wrefresh(w); + colors_use(w, COLOR_LIST); +}