linux-c-curses(1)-颜色+中文_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > linux-c-curses(1)-颜色+中文

linux-c-curses(1)-颜色+中文

 2010/12/4 11:51:51  deepfuture  http://deepfuture.javaeye.com  我要评论(0)
  • 摘要:1、初始化颜色//init_pair(shortindex,shortforeground,shortbackground)初始化颜色索引//attron(COLOR_PAIR(索引号)|属性)属性如下:A_NORMALNormaldisplay(nohighlight)A_STANDOUTBesthighlightingmodeoftheterminal
  • 标签:Linux

1、初始化颜色

//init_pair(short index,short foreground,short background)初始化颜色索引

//attron(COLOR_PAIR(索引号)|属性)

属性如下:

??? ?A_NORMAL? ?? ?? ?Normal display (no highlight)
? ???A_STANDOUT? ?? ? Best highlighting mode of the terminal.亮色
? ???A_UNDERLINE? ?? ?Underlining
? ???A_REVERSE? ?? ???Reverse video
? ???A_BLINK? ?? ?? ? Blinking闪烁
? ???A_DIM? ?? ?? ?? ?Half bright半亮度
? ???A_BOLD? ?? ?? ???Extra bright or bold高亮度
? ???A_PROTECT? ?? ???Protected mode
? ???A_INVIS? ?? ?? ? Invisible or blank mode
? ???A_ALTCHARSET? ???Alternate character set另类字符集
? ???A_CHARTEXT? ?? ? Bit-mask to extract a character

2、编译:

1)必须安装cursesew库

sudo apt-get install libncursesw5-dbg libncursesw5-dev

2)编译
发表评论
用户名: 匿名