所以,我正在使用pdcurses为我的控制台应用程序添加一些颜色,但我遇到了问题。如果我做了第二个窗口并尝试着色它的输出,它工作正常,但如果我尝试将输出颜色输出到stdscr,则没有任何反应。
我想继续使用stdscr而不是用另一个窗口覆盖它,因为stdscr将接收我正常发送到stdout的输出,允许我使用C ++样式的接口到控制台。通过向cout发送输出,它转到stdscr,这是我所知道的唯一使用pdcurses的C ++接口的方法。此外,其他库偶尔会将其输出直接发送到stdout,如果我使用stdscr输出不会丢失(我知道lua的print
函数在我听到的顶部之外)。
以下是一些示例代码:
// This prints a red '>' in the inputLine window properly. //
wattron(inputLine, A_BOLD | COLOR_PAIR(COLOR_RED));
wprintw(inputLine, "\n> ");
wattroff(inputLine, A_BOLD | COLOR_PAIR(COLOR_RED));
// This prints a light grey "Le Testing." to stdscr. Why isn't it red? //
wattron(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
cout << "\nLe Testing.\n";
wattroff(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
// This does nothing. I have no idea why. //
wattron(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
wprintw(stdscr, "\nLe Testing.\n");
wattroff(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
以下是我初始化pdcurses的方法:
// Open the output log which will mimic stdout. //
if (userPath)
{
string filename = string(userPath) + LOG_FILENAME;
log.open(filename.c_str());
}
// Initialize the pdCurses screen. //
initscr();
// Resize the stdout screen and create a line for input. //
resize_window(stdscr, LINES - 1, COLS);
inputLine = newwin(1, COLS, LINES - 1, 0);
// Initialize colors. //
if (has_colors())
{
start_color();
for (int i = 1; i <= COLOR_WHITE; ++i)
{
init_pair(i, i, COLOR_BLACK);
}
}
else
{
cout << "Terminal cannot print colors.\n";
if (log.is_open())
log << "Terminal cannot print colors.\n";
}
scrollok(stdscr, true);
scrollok(inputLine, true);
leaveok(stdscr, true);
leaveok(inputLine, true);
nodelay(inputLine, true);
cbreak();
noecho();
keypad(inputLine, true);
我做错了什么?
答案 0 :(得分:2)
您错误地认为写入标准输出将写入stdscr
。事实上,完全绕过PDCurses并直接写入控制台,就像你根本没有使用PDCurses一样。您需要使用PDCurses函数写入PDCurses窗口,包括stdscr
。您需要说服您正在使用的任何库而不是将输出发送到stdout而不是这样做,因为这会使PDC的混淆。
wprintw(stdstc, "\nLe Testing.\n");
无效的明显原因是您使用了stdstc
而不是stdscr
。虽然这只是你帖子中的一个拼写错误,并且你确实在你的程序中写了stdscr
,那么这应该有效。您还记得通过电话refresh
实际对屏幕上显示的stdscr
进行了更改吗?