Rework MenuBar. Add MenuButton. Add mouse event cascading to floaters.
LinearLayout: spacing now applies to all children, not just those with expand.
Fix Window resize request inside layouts.
UnicodeGraphics: prepare for styling/theming.
#!/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)