作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有我的 window
WINDOW *win = newwin(40, 40, 3, 3);
最佳答案
威廉麦克布林绝对肯定。在窗口周围保留框的最简单方法是在围绕它的窗口中创建框。那是因为
box
它沿着给定窗口的边缘绘制一个框。 ncurses.c
中)
responds to a w
通过创建一个窗口来保存框,然后创建一个窗口来保存其内容,并在继续接受新的内部框中的输入之前在前者中绘制一个框:
} else if (c == 'w') {
int high = getmaxy(win) - 1 - first_y + 1;
int wide = getmaxx(win) - first_x;
int old_y, old_x;
int new_y = first_y + getbegy(win);
int new_x = first_x + getbegx(win);
getyx(win, old_y, old_x);
if (high > 2 && wide > 2) {
WINDOW *wb = newwin(high, wide, new_y, new_x);
WINDOW *wi = newwin(high - 2, wide - 2, new_y + 1, new_x + 1);
box(wb, 0, 0);
wrefresh(wb);
wmove(wi, 0, 0);
remember_boxes(level, wi, wb);
wgetch_test(level + 1, wi, delay);
delwin(wi);
delwin(wb);
wgetch_help(win, flags);
wmove(win, old_y, old_x);
touchwin(win);
wrefresh(win);
doupdate();
}
关于ncurses - 如何在 NCurses 中添加窗口填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25066267/
我是一名优秀的程序员,十分优秀!