sdlterm/test_sdlterm.py
author Radek Brich <radek.brich@devl.cz>
Fri, 01 Feb 2013 09:34:15 +0100
changeset 75 2430c643838a
parent 72 6e0656600754
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/env python3
# -*- coding: utf-8 -*-

from sdlterm import SDLTerminal

if __name__ == '__main__':
    term = SDLTerminal()
    term.resize(800, 600)
    term.select_font(b"font/DejaVuSansMono.ttf", b"font/DejaVuSansMono-Bold.ttf", 12)
    term.erase()
    term.putch(5, 5, 'W')
    term.commit()

    while True:
        event = term.wait_event()
        print(event)
        if event[0] == 'keypress' and event[1] == 'escape':
            break