summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/MultiStatusBar.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-05-24 22:48:03 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-05-24 22:48:03 (GMT)
commit62012fc719818b6087b01c93fcc1cd0d2b4d8932 (patch)
tree5104802fce85d89b4f2d186d38ec0b579f486237 /Lib/idlelib/MultiStatusBar.py
parentd383bafa556de686be4898d6544ce998a0812532 (diff)
downloadcpython-62012fc719818b6087b01c93fcc1cd0d2b4d8932.zip
cpython-62012fc719818b6087b01c93fcc1cd0d2b4d8932.tar.gz
cpython-62012fc719818b6087b01c93fcc1cd0d2b4d8932.tar.bz2
Issue #21477: Idle htest: merge and modify run and runall; add many tests.
Patch by Saimadhav Heblikar
Diffstat (limited to 'Lib/idlelib/MultiStatusBar.py')
-rw-r--r--Lib/idlelib/MultiStatusBar.py35
1 files changed, 24 insertions, 11 deletions
diff --git a/Lib/idlelib/MultiStatusBar.py b/Lib/idlelib/MultiStatusBar.py
index 8ee2d03..df136b8 100644
--- a/Lib/idlelib/MultiStatusBar.py
+++ b/Lib/idlelib/MultiStatusBar.py
@@ -17,16 +17,29 @@ class MultiStatusBar(Frame):
label = self.labels[name]
label.config(text=text)
-def _test():
- b = Frame()
- c = Text(b)
- c.pack(side=TOP)
- a = MultiStatusBar(b)
- a.set_label("one", "hello")
- a.set_label("two", "world")
- a.pack(side=BOTTOM, fill=X)
- b.pack()
- b.mainloop()
+def _multistatus_bar(parent):
+ root = Tk()
+ width, height, x, y = list(map(int, re.split('[x+]', parent.geometry())))
+ root.geometry("+%d+%d" %(x, y + 150))
+ root.title("Test multistatus bar")
+ frame = Frame(root)
+ text = Text(frame)
+ text.pack()
+ msb = MultiStatusBar(frame)
+ msb.set_label("one", "hello")
+ msb.set_label("two", "world")
+ msb.pack(side=BOTTOM, fill=X)
+
+ def change():
+ msb.set_label("one", "foo")
+ msb.set_label("two", "bar")
+
+ button = Button(root, text="Update status", command=change)
+ button.pack(side=BOTTOM)
+ frame.pack()
+ frame.mainloop()
+ root.mainloop()
if __name__ == '__main__':
- _test()
+ from idlelib.idle_test.htest import run
+ run(_multistatus_bar)