- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathstatusbar.py
52 lines (40 loc) · 1.44 KB
/
statusbar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
fromtkinter.ttkimportLabel, Frame
classMultiStatusBar(Frame):
def__init__(self, master, **kw):
Frame.__init__(self, master, **kw)
self.labels= {}
defset_label(self, name, text='', side='left', width=0):
ifnamenotinself.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]
ifwidth!=0:
label.config(width=width)
label.config(text=text)
def_multistatus_bar(parent): # htest #
fromtkinterimportToplevel, Text
fromtkinter.ttkimportFrame, 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')
defchange():
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__':
fromunittestimportmain
main('idlelib.idle_test.test_statusbar', verbosity=2, exit=False)
fromidlelib.idle_test.htestimportrun
run(_multistatus_bar)