aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_utils.h
blob: d68867a46987538963cfd47c8dbe2ab540c3dbdd (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
24
25
26
27
28
29
#ifndef SCREEN_UTILS_H
#define SCREEN_UTILS_H

/* sound an audible and/or visible bell */
void screen_bell(void);

/* 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 *callback_data);


void screen_display_completion_list(screen_t *screen, GList *list);

void set_xterm_title(char *format, ...);

#endif