Code

screen_browser: check connection in screen_file_cmd()
[ncmpc.git] / src / screen_utils.h
index 46895e3441cc0c8d913d059b9f4f1f9c40096abb..bbcdbf282238b51a5a01a0725dc47362c8a07202 100644 (file)
 #include "list_window.h"
 #include "command.h"
 
-#ifdef HAVE_NCURSESW_NCURSES_H
-#include <ncursesw/ncurses.h>
-#else
-#include <ncurses.h>
-#endif
-
 struct mpdclient;
 
 /* sound an audible and/or visible bell */
 void screen_bell(void);
 
-/* read a characher from the status window */
-int screen_getch(WINDOW *w, const char *prompt);
+/* read a character from the status window */
+int screen_getch(const char *prompt);
+
+char *
+screen_read_password(const char *prompt);
 
-/* read a string from the status window */
-char *screen_getstr(WINDOW *w, const char *prompt);
-char *screen_readln(WINDOW *w, const char *prompt, const char *value,
+char *screen_readln(const char *prompt, const char *value,
                    GList **history, GCompletion *gcmp);
-char *screen_readln_masked(WINDOW *w, const char *prompt);
-char *screen_read_pasword(WINDOW *w, const char *prompt);
+
 /* query user for a string and find it in a list window */
 int screen_find(struct list_window *lw,
                int rows,
@@ -51,7 +45,11 @@ int screen_find(struct list_window *lw,
                list_window_callback_fn_t callback_fn,
                void *callback_data);
 
-gint screen_auth(struct mpdclient *c);
+/* query user for a string and jump to the entry
+ * which begins with this string while the users types */
+void screen_jump(struct list_window *lw,
+               list_window_callback_fn_t callback_fn,
+               void *callback_data);
 
 void screen_display_completion_list(GList *list);