- 论坛徽章:
- 0
|
Sco Unix 下的Curses 问题
我刚才在sco下面写了一份测试代码可以阿,代码如下:
#include <curses.h>;
void main(){
int ch,x=0,y=0;
int bx=25,by=10;
WINDOW *win;
initscr();
cbreak();
noecho();
nonl();
keypad(stdscr);
win=newwin(4,30,by,bx);
box(win,'|','-');
mvwaddstr(win,1,4,"This is a test window" ;
mvwaddstr(win,2,3," ress ESC key to exit..." ;
getch();
touchwin(win);
wrefresh(win);
do{
ch=getch();
switch(ch){
case KEY_UP: y--; break;
case KEY_DOWN: y++; break;
case KEY_LEFT: x--; break;
case KEY_RIGHT: x++; break;
case 27:
touchwin(stdscr);
endwin();
return;
}
if(x<=bx) x=bx+1;
if(x>;=(bx+2 ) x=bx+28;
if(y<=by) y=by+1;
if(y>;=(by+3)) y=by+2;
move(y,x);
}
while(1);
}
用cc tst.c -lcurses 编译测试通过 |
|