tests/curses_unicode.py
author Radek Brich <radek.brich@devl.cz>
Wed, 03 Sep 2014 19:13:37 +0200
changeset 110 cf3d49cdd6e2
parent 20 472a753664f9
permissions -rwxr-xr-x
Add cursesw driver, using curses get_wch() for unicode input. It alse has enabled keypad() to let curses interpret control keys and mouse input.

#!/usr/bin/python3

import curses
import locale

locale.setlocale(locale.LC_ALL, "")

def doStuff(stdscr):
  message = "Žlutý kůň.\nPress 'q' to quit.\n"
  stdscr.addstr(0, 0, message, 0)
  while True:
    c = stdscr.getch() # pauses until a key's hit
    if c == ord('q'):
      break
    stdscr.addch(c)

curses.wrapper(doStuff)