sdlterm/demo.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 00:40:27 +0100
changeset 47 537d7c6b48a2
child 48 1f00e90fd72a
permissions -rwxr-xr-x
Add sdlterm prototype: extension module for SDL driver.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import sys
sys.path.insert(0, 'build/lib.linux-x86_64-3.2')

from sdlterm import SDLTerminal

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

    while True:
        event = term.get_next_event()
        break