これは本当に2つの質問です:
ウィンドウのサイズがいつ変更されたかを知ることはできますか?
http://docs.python.org/library/curses.html でさえカバーされていない、私は本当に良いドキュメントを見つけることができません
ターミナルのサイズ変更イベントは、curses.KEY_RESIZE
キーコードになります。したがって、getch
で入力を待って、cursesプログラムの標準メインループの一部として端末のサイズ変更を処理できます。
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()
を呼び出すだけで、残りは処理されます。
curses.wrapper() :を使用すると、これはうまくいきました。
if stdscr.getch() == curses.KEY_RESIZE:
curses.resizeterm(*stdscr.getmaxyx())
stdscr.clear()
stdscr.refresh()
ここ のコードを使用します。
私のcurses-scriptでは、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() # This could lead to crashes according to below comment
stdscr.refresh()
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()
それは正しくありません。それは ncurses-only
拡張子。質問はcurses
について尋ねました。これを標準に準拠した方法で行うには、SIGWINCH
を自分でトラップし、画面が再描画されるように調整する必要があります。