这真是两个问题:
是否可以知道窗口何时改变了大小?
我真的找不到任何好的文档,甚至没有在http://docs.python.org/library/curses.html
上找到答案 0 :(得分:22)
终端调整大小事件将生成curses.KEY_RESIZE
密钥代码。因此,您可以在curses程序中处理终端调整大小作为标准主循环的一部分,等待getch
的输入。
答案 1 :(得分:8)
我得到了我的python程序,通过做一些事情来重新调整终端的大小。
# Initialize the screen
import curses
screen = curses.initscr()
# Check if screen was re-sized (True or False)
resize = curses.is_term_resized(y, x)
# Action in loop if resize is True:
if resize is True:
y, x = screen.getmaxyx()
screen.clear()
curses.resizeterm(y, x)
screen.refresh()
当我正在编写我的程序时,我可以看到将我的屏幕放入其自己的类中的有用性,所有这些函数都已定义,所以我所要做的就是调用Screen.resize()
,它会处理其余的
答案 2 :(得分:0)
这是不对的。这是ncurses-only
扩展名。问的问题是curses
。要以符合标准的方式执行此操作,您需要自己陷阱SIGWINCH
并安排重新绘制屏幕。
答案 3 :(得分:0)
我使用here中的代码。
在我的诅咒脚本中,我不使用getch(),所以我无法对KEY_RESIZE
做出反应。
因此,脚本会对SIGWINCH
做出反应,并在处理程序中重新初始化curses库。那当然意味着您必须重绘所有内容,但是我找不到更好的解决方案。
一些示例代码:
from curses import initscr, endwin
from signal import signal, SIGWINCH
from time import sleep
stdscr = initscr()
def redraw_stdscreen():
rows, cols = stdscr.getmaxyx()
stdscr.clear()
stdscr.border()
stdscr.hline(2, 1, '_', cols-2)
stdscr.refresh()
def resize_handler(signum, frame):
endwin()
initscr()
redraw_stdscreen()
signal(SIGWINCH, resize_handler)
initscr()
try:
redraw_stdscreen()
while 1:
# print stuff with curses
sleep(1)
except (KeyboardInterrupt, SystemExit):
pass
except Exception as e:
pass
endwin()
答案 4 :(得分:0)
使用curses.wrapper()时,这对我有用:
if stdscr.getch() == curses.KEY_RESIZE:
curses.resizeterm(*stdscr.getmaxyx())
stdscr.clear()
stdscr.refresh()