Skip to content

Commit a202114

Browse files
committed
examples/example_filter_listbox: Simplify example.
Use WListBox.set_items(), and remove use of extra global vars and identity list comprehensions (which apparently were inherited from more complex examples, but not needed here).
1 parent c80d2bc commit a202114

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

examples/example_filter_listbox.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
# Set the list of all available DropDown choices
1515
choices = ["Green1", "Green2", "Green3", "Red1", "Red2", "Red3", "Yellow1", "Yellow2", "Yellow3"]
16-
# Copy the list of DropDown choices to another list for modifications
17-
fchoices = choices[:]
1816

1917
try:
2018
s.init_tty()
@@ -30,21 +28,21 @@
3028
d.add(11, 1, w_dropdown)
3129

3230
d.add(1, 3, "List:")
33-
w_listbox = WListBox(16, 4, ["%s" % i for i in fchoices])
31+
w_listbox = WListBox(16, 4, choices)
3432
d.add(1, 4, w_listbox)
3533

3634
# Filter the ListBox based on the DropDown selection
3735
def dropdown_changed(w):
38-
fchoices.clear()
39-
for i in range(0, len(choices)):
36+
new_choices = []
37+
for i in range(len(choices)):
4038
if w.items[w.choice] == "All" or w.items[w.choice] in choices[i]:
41-
fchoices.append(choices[i])
39+
new_choices.append(choices[i])
4240

41+
# As we're going to set completely new items, reset current/top item of the widget
4342
w_listbox.top_line = 0
4443
w_listbox.cur_line = 0
4544
w_listbox.row = 0
46-
w_listbox.items = ["%s" % items for items in fchoices]
47-
w_listbox.set_lines(w_listbox.items)
45+
w_listbox.set_items(new_choices)
4846
w_dropdown.on("changed", dropdown_changed)
4947

5048
b = WButton(8, "OK")

0 commit comments

Comments
 (0)