sdlterm/demo.py
changeset 47 537d7c6b48a2
child 48 1f00e90fd72a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sdlterm/demo.py	Sat Jan 05 00:40:27 2013 +0100
@@ -0,0 +1,20 @@
+#!/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
+