blob: bde7de247ac66ddbceca220507602a370454c2d6 [file] [log] [blame]
Jack Jansenfcdf4371996-04-10 14:43:17 +00001# Test TE module, simple version
2
Jack Jansen5a6fdcd2001-08-25 12:15:04 +00003from Carbon.Win import *
4from Carbon.TE import *
5from Carbon import Qd
Jack Jansenfcdf4371996-04-10 14:43:17 +00006
7r = (40, 40, 140, 140)
8w = NewWindow(r, "TETextBox test", 1, 0, -1, 1, 0x55555555)
9##w.DrawGrowIcon()
10
11r = (10, 10, 90, 90)
12
13Qd.SetPort(w)
14t = TETextBox("Nobody expects the SPANISH inquisition", r, 1)
15
16import time
17time.sleep(10)