5

嘿,伙计们,我正在研究 python curses,我的初始窗口带有 initscr(),我创建了几个新窗口来重叠它,我想知道我是否可以删除这些窗口并恢复标准屏幕而不必重新填充它。有办法吗?我还可以问是否有人可以告诉我窗口、子窗口、垫和子垫之间的区别。

我有这个代码:

stdscr = curses.initscr()
####Then I fill it with random letters
stdscr.refresh()
newwin=curses.newwin(10,20,5,5)
newwin.touchwin()
newwin.refresh()

####I want to delete newwin here so that if I write stdscr.refresh() newwin won't appear

stdscr.touchwin()
stdscr.refresh()

####And here it should appear as if no window was created.
4

1 回答 1

9

例如,这应该有效:

import curses

def fillwin(w, c):
    y, x = w.getmaxyx()
    s = c * (x - 1)
    for l in range(y):
        w.addstr(l, 0, s)

def main(stdscr):
    fillwin(stdscr, 'S')
    stdscr.refresh()
    stdscr.getch()

    newwin=curses.newwin(10,20,5,5)
    fillwin(newwin, 'w')
    newwin.touchwin()
    newwin.refresh()
    newwin.getch()
    del newwin

    stdscr.touchwin()
    stdscr.refresh()
    stdscr.getch()

curses.wrapper(main)

这将用“S”填充终端;在任何按键时,它都会用“w”填充窗口;在下一次击键时,它会删除窗口并再次显示stdscr,所以它又是全-'S';在下一次击键时,脚本结束,终端恢复正常。这不适合你吗?或者你真的想要一些不同的东西......?

于 2010-04-04T22:20:19.770 回答