cpython/Mac/Lib/test/progressbar.py
Jack Jansen ae8a68f40c Trying again to check it in. Changes to:
- Use Universal Headers as input
- Change addpack calls to not depend on Guido's disklayout
- Checkge testprograms to use new names for some functions
1995-06-06 12:55:40 +00:00

31 lines
562 B
Python

# Progress dialog
from addpack import addpack
addpack('Tools')
addpack('bgen')
addpack('dlg')
addpack('evt')
from Dlg import GetNewDialog, ModalDialog, SetDialogItemText
count = 0
def filter(d, e):
r = 1
print "Filter(%s, %s) -> %s" % (`d`, `e`, `r`)
return r
def main():
d = GetNewDialog(256, -1)
tp, h, rect = d.GetDialogItem(2)
SetDialogItemText(h, "Progress...")
for i in range(100):
if i%10 == 0:
str = "Progress...%d" % i
SetDialogItemText(h, str)
ModalDialog(filter)
for j in range(100): pass
if __name__ == '__main__':
main()