我试图通过将值COLOR_BLUE设置为rgb值:(1000,0,0)来将文本块的背景设置为红色。如果我使用Gnome的“终端”应用程序,背景是正确的(RED),但如果我使用KDE的“Konsole”,则背景是正确的(BLUE)。为什么是这样?以下代码将在Linux上使用编译行编译:
g++ filename.cpp -lcurses
我通过以下方式将我的TERM类型设置为xterm-256color:
export TERM=xterm-256color
这是代码:
#include <ncurses.h>
#include <cassert>
#include <csignal>
static bool stop = false;
void sigAbortHandler(int _sig)
{
stop = true;
}
int main(int _argc, char **_argv)
{
signal(SIGABRT, &sigAbortHandler);
WINDOW *window = initscr();
if (!has_colors())
{
delwin(window);
endwin();
perror("You must enable colors in your console");
}
if (!can_change_color())
{
delwin(window);
endwin();
perror("Error: unable to change colors, "
"trying setting your TERM type to enable colors");
}
assert(start_color() == OK);
keypad(stdscr, TRUE);
cbreak();
noecho();
curs_set(0);
nodelay(window, true);
int background = COLOR_BLUE;
assert(init_color(background, 1000, 0, 0) == OK);
int foreground = 2;
assert(init_color(foreground, 0, 0, 0) == OK);
int pair = 1;
assert(init_pair(pair, foreground, background) == OK);
assert(wattron(window, COLOR_PAIR(pair)) == OK);
short r, g, b;
color_content(background, &r, &g, &b);
assert(mvwprintw(window, 10, 10, "color content: %d, %d, %d", r, g, b) == OK);
assert(wrefresh(window) == OK);
assert(wattroff(window, COLOR_PAIR(pair)) == OK);
while (!stop)
{
}
delwin(window);
endwin();
return 0;
}
答案 0 :(得分:0)
您的意思是将背景设置为COLOR_BLUE吗?尽管检查can_change_color
,但似乎init颜色对Konsole没有影响,并且后台在init_pair上保持COLOR_BLUE。
int background = COLOR_BLUE;
assert(init_color(background, 1000, 0, 0) == OK);
...
assert(init_pair(pair, foreground, background) == OK);
assert(wattron(window, COLOR_PAIR(pair)) == OK);
答案 1 :(得分:0)
来自man init_color
的看似相关的摘录:
The init_color routine changes the definition of a color. ... The first
argument must be a legal color value; **default colors are not allowed here**.
(See the section Colors for the default color index.)
...
Colors
...
In <curses.h> the following macros are defined. These are the default colors.
...
COLOR_BLUE
所以这些行正在做一些不应该根据文档工作的东西,但可能并且在某些终端中有效:
int background = COLOR_BLUE;
assert(init_color(background, 1000, 0, 0) == OK);
int foreground = 2;
assert(init_color(foreground, 0, 0, 0) == OK);
应该有16个预定义颜色对(如果我们计算粗体颜色),因此使用16
和17
对代替COLOR_BLUE
和2
可能会有效。
(不要Konsole
检查这一点,但这可能是原因,或者至少值得指出。)
答案 2 :(得分:0)
问题是Konsole没有实现您期望的功能。 ncurses只知道您配置的终端描述中的内容。没有通用的方法来检查它是否正确。 init_color
的{{3}}部分说
<强>
init_color
强>
如果终端不支持,则返回错误 此功能,例如,如果终端说明中没有initialize_color
功能。
据推测,你有TERM=xterm-256color
之类的东西。 ncurses终端数据库具有正确的RETURN-VALUE,其中(使用infocmp
与konsole-256color
进行比较)在许多方面都有所不同:
comparing xterm-256color to konsole-256color.
comparing booleans.
ccc: T:F.
km: T:F.
mc5i: T:F.
comparing numbers.
comparing strings.
bel: '^G', NULL.
cbt: '\E[Z', NULL.
cnorm: '\E[?12l\E[?25h', '\E[?25h'.
cvvis: '\E[?12;25h', NULL.
dim: '\E[2m', NULL.
el1: '\E[1K', NULL.
enacs: NULL, '\E)0'.
ich: '\E[%p1%d@', NULL.
initc: '\E]4;%p1%d;rgb\:%p2%{255}%*%{1000}%/%2.2X/%p3%{255}%*%{1000}%/%2.2X/%p4%{255}%*%{1000}%/%2.2X\E\\', NULL.
invis: '\E[8m', NULL.
is2: '\E[!p\E[?3;4l\E[4l\E>', '\E[m\E[?7h\E[4l\E>\E7\E[r\E[?1;3;4;6l\E8'.
kDC: '\E[3;2~', NULL.
kEND: '\E[1;2F', NULL.
kHOM: '\E[1;2H', NULL.
kIC: '\E[2;2~', NULL.
kLFT: '\E[1;2D', NULL.
kNXT: '\E[6;2~', NULL.
kPRV: '\E[5;2~', NULL.
kRIT: '\E[1;2C', NULL.
kb2: '\EOE', NULL.
kent: '\EOM', NULL.
kf13: '\E[1;2P', '\EO2P'.
kf14: '\E[1;2Q', '\EO2Q'.
kf15: '\E[1;2R', '\EO2R'.
kf16: '\E[1;2S', '\EO2S'.
kf25: '\E[1;5P', '\EO5P'.
kf26: '\E[1;5Q', '\EO5Q'.
kf27: '\E[1;5R', '\EO5R'.
kf28: '\E[1;5S', '\EO5S'.
kf37: '\E[1;6P', '\EO6P'.
kf38: '\E[1;6Q', '\EO6Q'.
kf39: '\E[1;6R', '\EO6R'.
kf40: '\E[1;6S', '\EO6S'.
kf49: '\E[1;3P', '\EO3P'.
kf50: '\E[1;3Q', '\EO3Q'.
kf51: '\E[1;3R', '\EO3R'.
kf52: '\E[1;3S', '\EO3S'.
kf61: '\E[1;4P', '\EO4P'.
kf62: '\E[1;4Q', '\EO4Q'.
kf63: '\E[1;4R', '\EO4R'.
kind: '\E[1;2B', NULL.
kri: '\E[1;2A', NULL.
mc0: '\E[i', NULL.
mc4: '\E[4i', NULL.
mc5: '\E[5i', NULL.
rmacs: '\E(B', '^O'.
rmcup: '\E[?1049l', '\E[2J\E[?47l\E8'.
rmm: '\E[?1034l', NULL.
rs1: '\Ec', NULL.
rs2: '\E[!p\E[?3;4l\E[4l\E>', '\E7\E[r\E8\E[m\E[?7h\E[?1;3;4;6l\E[4l\E>\E[?1000l\E[?25h'.
sgr: '%?%p9%t\E(0%e\E(B%;\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m', '\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;'.
sgr0: '\E(B\E[m', '\E[0m\017'.
smacs: '\E(0', '^N'.
smcup: '\E[?1049h', '\E7\E[?47h'.
smm: '\E[?1034h', NULL.
如果您看到NULL
,Konsole根本没有实现此功能。特别是,它没有为initc
(你要问的功能)做任何事情。
进一步阅读:
xterm-256color
(xterm常见问题解答)