Rework layouts: Layout is now normal Container which places its children upon resize event.
Drop TopWindow, top is now any subclass of Container.
Add floater concept: floaters are widgets drawn over normal widgets, not clipped by parent.
Add HScrollbar and Scrollbar abstract base class.
#!/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)