blob: d60a33824e7eef00b964d8a51f34da254bb4b20d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef SCREEN_UTILS_H
#define SCREEN_UTILS_H
/* read a characher from the status window */
int screen_getch(WINDOW *w, char *prompt);
/* read a string from the status window */
char *screen_getstr(WINDOW *w, char *prompt);
char *screen_readln(WINDOW *w, char *prompt, char *value,
GList **history, GCompletion *gcmp);
/* query user for a string and find it in a list window */
int screen_find(screen_t *screen,
mpdclient_t *c,
list_window_t *lw,
int rows,
command_t findcmd,
list_window_callback_fn_t callback_fn);
void screen_display_completion_list(screen_t *screen, GList *list);
#endif
|