int xsize = strlen (msg) + 1 + length;
int yoffset = win->yoffset + (win->ysize - 1) / 2;
- set_color (black);
+ set_color (wblue);
_dobound (xsize, 1, xoffset, yoffset);
mvaddstr (yoffset, xoffset, msg);
xoffset += strlen (msg);
mvaddch (yoffset, xoffset, ' ');
xoffset++;
- set_color (byellow);
+ set_color (bcyan);
for (j = 0; (j < length) && (name[j] != '\0'); j++) {
mvaddch (yoffset, xoffset + j, name[j]);
}
int stop = 0;
while (!stop) {
for (j = 0; (j < length) && (name[j + l] != '\0'); j++) {
- set_color ((j == i) ? yellow : byellow);
+ set_color ((j == i) ? cyan : bcyan);
mvaddch (yoffset, xoffset + j, name[j + l]);
- set_color (white);
+ set_color (bblue);
}
int ch = getch ();
switch (ch) {
}
int yoffset = win->yoffset + (win->ysize - 1) / 2;
- set_color (black);
+ set_color (wblue);
_dobound (xsize, 1, xoffset, yoffset);
mvaddstr (yoffset, xoffset, msg);
set_color (white);