tests/curses_unicode.py
author Radek Brich <radek.brich@devl.cz>
Mon, 10 Oct 2011 22:20:59 +0200
changeset 25 f69a1f0382ce
parent 20 472a753664f9
child 110 cf3d49cdd6e2
permissions -rwxr-xr-x
Partial DriverPygame.putch() implementation. Add patch for PyGame implementing font.render_glyph(). Add test for PyGame font module. Add special key definitions to DriverPygame.

#!/usr/bin/python
# coding=UTF-8

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)