demos/demo_buffer.py
author Radek Brich <radek.brich@devl.cz>
Fri, 14 Mar 2014 10:03:36 +0100
changeset 80 573a9e76719d
parent 79 dbdc38f9981a
child 81 5cd40c30c4f2
permissions -rwxr-xr-x
Move UnicodeGraphics to core. Update it.

#!/usr/bin/env python3

import sys
sys.path.append('..')

from tuikit.core.buffer import Buffer


buf = Buffer(16, 8)
buf.fill(c='#')
buf.hline(1, 1, 14, c='-')
buf.hline(1, 6, 14, c='-')
buf.vline(7, 2, 4, c='|')
buf.puts(8, 4, 'Hello!')

for y in range(buf.size.h):
    for x in range(buf.size.w):
        print(buf.get(x, y)[0], end='')
    print()