1992-12-14 10:12:10 -04:00
|
|
|
#! /usr/local/bin/python
|
1992-03-30 06:54:51 -04:00
|
|
|
|
|
|
|
# Test TextEdit widgets
|
|
|
|
|
|
|
|
def main():
|
|
|
|
from TextEdit import TextEdit
|
|
|
|
from WindowParent import WindowParent, MainLoop
|
|
|
|
w = WindowParent().create('Test TextEdit', (0, 0))
|
|
|
|
t = TextEdit().create(w, (40, 4))
|
|
|
|
w.realize()
|
|
|
|
MainLoop()
|
|
|
|
|
|
|
|
main()
|