tests/curses_getkey.py
author Radek Brich <radek.brich@devl.cz>
Fri, 01 Feb 2013 09:34:15 +0100
changeset 75 2430c643838a
parent 20 472a753664f9
child 110 cf3d49cdd6e2
permissions -rwxr-xr-x
Clean up hints - add methods update_hint, hint_value to Widget. Split ScrollView into OffsetView and Scrolling components. Reimplement ScrollWindow using Scrolling component.

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

import curses
import locale

locale.setlocale(locale.LC_ALL, "")

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

curses.wrapper(doStuff)