summaryrefslogtreecommitdiff
path: root/Lib/idlelib/statusbar.py
diff options
context:
space:
mode:
authorMariatta Wijaya <mariatta.wijaya@gmail.com>2017-02-06 20:16:58 -0800
committerMariatta Wijaya <mariatta.wijaya@gmail.com>2017-02-06 20:16:58 -0800
commitda79bcf8ac7ae72218ab023e1ed54390bc1a3a27 (patch)
tree74845e2dbd9521d9748b9c32f1922f4123083bf3 /Lib/idlelib/statusbar.py
parente3c7e835bdfc97750eb9b7fc0ad2493108c2d438 (diff)
parent1fe806ac56f8b83694d24ab604eb695d00bc8497 (diff)
downloadcpython-da79bcf8ac7ae72218ab023e1ed54390bc1a3a27.tar.gz
Issue #29371: merge with 3.5
Diffstat (limited to 'Lib/idlelib/statusbar.py')
-rw-r--r--Lib/idlelib/statusbar.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/Lib/idlelib/statusbar.py b/Lib/idlelib/statusbar.py
new file mode 100644
index 0000000000..8618528d82
--- /dev/null
+++ b/Lib/idlelib/statusbar.py
@@ -0,0 +1,46 @@
+from tkinter import Frame, Label
+
+
+class MultiStatusBar(Frame):
+
+ def __init__(self, master, **kw):
+ Frame.__init__(self, master, **kw)
+ self.labels = {}
+
+ def set_label(self, name, text='', side='left', width=0):
+ if name not in self.labels:
+ label = Label(self, borderwidth=0, anchor='w')
+ label.pack(side=side, pady=0, padx=4)
+ self.labels[name] = label
+ else:
+ label = self.labels[name]
+ if width != 0:
+ label.config(width=width)
+ label.config(text=text)
+
+
+def _multistatus_bar(parent): # htest #
+ from tkinter import Toplevel, Frame, Text, Button
+ top = Toplevel(parent)
+ x, y = map(int, parent.geometry().split('+')[1:])
+ top.geometry("+%d+%d" %(x, y + 175))
+ top.title("Test multistatus bar")
+ frame = Frame(top)
+ text = Text(frame, height=5, width=40)
+ 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(top, text="Update status", command=change)
+ button.pack(side='bottom')
+ frame.pack()
+
+if __name__ == '__main__':
+ from idlelib.idle_test.htest import run
+ run(_multistatus_bar)