diff options
author | Guido van Rossum <guido@python.org> | 2000-05-11 14:43:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-11 14:43:52 (GMT) |
commit | dab6cb8f6dacc107e9482976ca2f8e0313f05131 (patch) | |
tree | 88eef631a9c853ed763bb1be126ad3a11d6185db /Demo/stdwin/TestFormSplit.py | |
parent | ede8c6eea1da425960b27ed735a41bc23a72a89a (diff) | |
download | cpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.zip cpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.tar.gz cpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.tar.bz2 |
removing more stdwin users
Diffstat (limited to 'Demo/stdwin/TestFormSplit.py')
-rwxr-xr-x | Demo/stdwin/TestFormSplit.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Demo/stdwin/TestFormSplit.py b/Demo/stdwin/TestFormSplit.py deleted file mode 100755 index e67c3f9..0000000 --- a/Demo/stdwin/TestFormSplit.py +++ /dev/null @@ -1,27 +0,0 @@ -#! /usr/bin/env python - -# TestFormSplit - -import stdwin -from WindowParent import WindowParent, MainLoop -from Buttons import PushButton - -def main(n): - from FormSplit import FormSplit - # - stdwin.setdefscrollbars(1, 1) - # - the_window = WindowParent().create('TestFormSplit', (0, 0)) - the_form = FormSplit().create(the_window) - # - for i in range(n): - if i % 3 == 0: - the_form.placenext(i*40, 0) - the_child = PushButton().define(the_form) - the_child.settext('XXX-' + `i` + '-YYY') - # - the_window.realize() - # - MainLoop() - -main(6) |