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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <glib.h>
#include <ncurses.h>
#include "libmpdclient.h"
#include "mpc.h"
#include "support.h"
#include "command.h"
#include "options.h"
#include "screen.h"
char *
screen_readln(WINDOW *w, char *prompt)
{
char buf[256], *line = NULL;
int prompt_len = strlen(prompt);
wclear(w);
wmove(w, 0, 0);
waddstr(w, prompt);
wmove(w, 0, prompt_len);
echo();
curs_set(1);
if( wgetnstr(w, buf, 256) == OK )
line = strdup(buf);
noecho();
curs_set(0);
return line;
}
int
my_waddstr(WINDOW *w, const char *text, int color)
{
int ret;
if( options.enable_colors )
wattron(w, color);
ret = waddstr(w, text);
if( options.enable_colors )
wattroff(w, color);
return ret;
}
int
my_mvwaddstr(WINDOW *w, int x, int y, const char *text, int color)
{
int ret;
if( options.enable_colors )
wattron(w, color);
ret = mvwaddstr(w, x, y, text);
if( options.enable_colors )
wattroff(w, color);
return ret;
}
|