summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-03 14:10:54 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-08-03 14:10:54 (GMT)
commit83e6ae9b12bf2c7d051bec451daa86fd1466b21d (patch)
treea363a3c382fddd1d6504a43ff41ddf8f5ab18f23 /Mac
parent7f9a63ca4cb559428c8d6faf0993cfd57cc35032 (diff)
downloadcpython-83e6ae9b12bf2c7d051bec451daa86fd1466b21d.zip
cpython-83e6ae9b12bf2c7d051bec451daa86fd1466b21d.tar.gz
cpython-83e6ae9b12bf2c7d051bec451daa86fd1466b21d.tar.bz2
EasyDialogs has a working version of this.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Lib/test/progressbar.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/Mac/Lib/test/progressbar.py b/Mac/Lib/test/progressbar.py
deleted file mode 100644
index 53a7e84..0000000
--- a/Mac/Lib/test/progressbar.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# Progress dialog
-
-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()
-