tests/curses_get_wch.py
author Radek Brich <radek.brich@devl.cz>
Sun, 22 Feb 2015 09:53:13 +0100
changeset 119 dd91747504dd
parent 110 cf3d49cdd6e2
permissions -rwxr-xr-x
Redraw widgets on request. Add scrollbar demo.

#!/usr/bin/python3

import curses
import locale

locale.setlocale(locale.LC_ALL, "")

def doStuff(stdscr):
  stdscr.keypad(1)
  message = "Press 'q' to quit.\n"
  stdscr.addstr(0, 0, message, 0)
  while True:
    c = stdscr.get_wch() # pauses until a key's hit
    if c == 'q':
      break
    stdscr.addstr('%s %r\n' % (c, c))

curses.wrapper(doStuff)