我找不到将 ncurses 表单库中的光标颜色从绿色更改为其他任何颜色的任何方法。谷歌搜索并在手册页中搜索光标或颜色并没有帮助。有谁知道这是怎么做到的?
问问题
1735 次
1 回答
2
你可以通过写\e]12;COLOR\a
或来改变颜色\033]12;COLOR\007
,它们都一样,这里是一个简单的例子:
#include <stdio.h>
#include <unistd.h>
void cursor_set_color_string(const char *color) {
printf("\e]12;%s\a", color);
fflush(stdout);
}
int main(int argc, char **argv) {
cursor_set_color_string("yellow"); sleep(1);
cursor_set_color_string("gray"); sleep(1);
cursor_set_color_string("blue"); sleep(1);
cursor_set_color_string("red"); sleep(1);
cursor_set_color_string("brown"); sleep(1);
return 0;
}
以下是颜色名称列表:Xterm Colors。
看起来您也可以使用以下形式的 RGB 颜色\e]12;#XXXXXX\a
:
#include <stdio.h>
#include <unistd.h>
void cursor_set_color_rgb(unsigned char red,
unsigned char green,
unsigned char blue) {
printf("\e]12;#%.2x%.2x%.2x\a", red, green, blue);
fflush(stdout);
}
int main(int argc, char **argv) {
cursor_set_color_rgb(0xff, 0xff, 0xff); sleep(1);
cursor_set_color_rgb(0xff, 0xff, 0x00); sleep(1);
cursor_set_color_rgb(0xff, 0x00, 0xff); sleep(1);
cursor_set_color_rgb(0x00, 0xff, 0xff); sleep(1);
return 0;
}
于 2013-08-25T22:30:21.627 回答