tests/curses_unicode.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 23:00:41 +0100
changeset 52 50a1857557da
parent 20 472a753664f9
child 110 cf3d49cdd6e2
permissions -rwxr-xr-x
Update SDL driver: Enlarge char, attr to 32 bits, 64 bits per terminal cell. Colors and attributes are complete, only blink does not work.

#!/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)