forked from ArduPilot/MethodicConfigurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontend_tkinter_entry_dynamic.py
More file actions
executable file
·374 lines (302 loc) · 12.3 KB
/
frontend_tkinter_entry_dynamic.py
File metadata and controls
executable file
·374 lines (302 loc) · 12.3 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
#!/usr/bin/env python3
"""
GUI entry Widget with autocompletion features.
This file is part of ArduPilot Methodic Configurator. https://github.com/ArduPilot/MethodicConfigurator
https://code.activestate.com/recipes/580770-combobox-autocomplete/
SPDX-FileCopyrightText: 2024-2026 Amilcar do Carmo Lucas <amilcar.lucas@iav.de>
SPDX-License-Identifier: GPL-3.0-or-later
"""
import tkinter as tk
from tkinter import Entry, Listbox, StringVar, ttk
from tkinter.constants import END, HORIZONTAL, SINGLE, VERTICAL, E, N, S, W
from typing import Callable, Union
from ardupilot_methodic_configurator import _
def autoscroll(sbar: ttk.Scrollbar, first: float, last: float) -> None:
"""Hide and show scrollbar as needed."""
first, last = float(first), float(last)
if first <= 0 and last >= 1:
sbar.grid_remove()
else:
sbar.grid()
sbar.set(first, last)
class EntryWithDynamicalyFilteredListbox(Entry): # pylint: disable=too-many-ancestors, too-many-instance-attributes
"""Entry with dynamically filtered ListBox to emulate an intelligent combobox widget."""
def __init__( # pylint: disable=too-many-arguments, too-many-positional-arguments
self,
master: Union[tk.Tk, ttk.Frame],
list_of_items: Union[None, list[str]] = None,
custom_filter_function: Union[None, Callable[[str], list[str]]] = None,
listbox_width: Union[None, int] = None,
listbox_height: int = 12,
ignorecase_match: bool = False,
startswith_match: bool = True,
vscrollbar: bool = True,
hscrollbar: bool = True,
**kwargs,
) -> None:
if list_of_items is None:
raise ValueError(_("List_of_items can't be 'None'"))
self._list_of_items = list_of_items
self.filter_function = custom_filter_function or self.default_filter_function
self._listbox_width = listbox_width
self._listbox_height = int(listbox_height)
self._ignorecase_match = ignorecase_match
self._startswith_match = startswith_match
self._use_vscrollbar = vscrollbar
self._use_hscrollbar = hscrollbar
kwargs.setdefault("background", "white")
kwargs.setdefault("foreground", "black")
if "textvariable" in kwargs:
self._entry_var = kwargs["textvariable"]
else:
self._entry_var = kwargs["textvariable"] = StringVar()
Entry.__init__(self, master, **kwargs)
self._trace_id = self._entry_var.trace_add("write", self._on_change_entry_var)
self._listbox: Union[None, Listbox] = None
self.bind("<Up>", self._previous)
self.bind("<Down>", self._next)
self.bind("<Control-n>", self._next)
self.bind("<Control-p>", self._previous)
self.bind("<Return>", self.update_entry_from_listbox)
self.bind("<Escape>", lambda event: self.unpost_listbox) # noqa: ARG005
def default_filter_function(self, entry_data: str) -> list[str]:
if self._ignorecase_match:
if self._startswith_match:
return [item for item in self._list_of_items if item.lower().startswith(entry_data.lower())]
return [item for item in self._list_of_items if entry_data.lower() in item.lower()]
if self._startswith_match:
return [item for item in self._list_of_items if item.startswith(entry_data)]
return [item for item in self._list_of_items if entry_data in item]
def _on_change_entry_var(self, _name, _index, _mode) -> None: # noqa: ANN001
entry_data = self._entry_var.get()
if entry_data == "":
self.unpost_listbox()
self.focus()
else:
values = self.filter_function(entry_data)
if values:
if self._listbox is None:
self._build_listbox(values)
else:
self._listbox.delete(0, END)
height = min(self._listbox_height, len(values))
self._listbox.configure(height=height)
for item in values:
self._listbox.insert(END, item)
else:
self.unpost_listbox()
self.focus()
def _build_listbox(self, values: list[str]) -> None:
listbox_frame = ttk.Frame(self.master)
self._listbox = Listbox(
listbox_frame, background="white", foreground="black", selectmode=SINGLE, activestyle="none", exportselection=False
)
self._listbox.grid(row=0, column=0, sticky=N + E + W + S)
self._listbox.bind("<ButtonRelease-1>", self.update_entry_from_listbox)
self._listbox.bind("<Return>", self.update_entry_from_listbox)
self._listbox.bind("<Escape>", lambda event: self.unpost_listbox()) # noqa: ARG005
self._listbox.bind("<Control-n>", self._next)
self._listbox.bind("<Control-p>", self._previous)
if self._use_vscrollbar:
vbar = ttk.Scrollbar(listbox_frame, orient=VERTICAL, command=self._listbox.yview)
vbar.grid(row=0, column=1, sticky=N + S)
self._listbox.configure(yscrollcommand=lambda first, last: autoscroll(vbar, first, last))
if self._use_hscrollbar:
hbar = ttk.Scrollbar(listbox_frame, orient=HORIZONTAL, command=self._listbox.xview)
hbar.grid(row=1, column=0, sticky=E + W)
self._listbox.configure(xscrollcommand=lambda first, last: autoscroll(hbar, first, last))
listbox_frame.grid_columnconfigure(0, weight=1)
listbox_frame.grid_rowconfigure(0, weight=1)
x = -self.cget("borderwidth") - self.cget("highlightthickness")
y = self.winfo_height() - self.cget("borderwidth") - self.cget("highlightthickness")
width = self._listbox_width or self.winfo_width()
listbox_frame.place(in_=self, x=x, y=y, width=width)
height = min(self._listbox_height, len(values))
self._listbox.configure(height=height)
for item in values:
self._listbox.insert(END, item)
def post_listbox(self) -> None:
if self._listbox is not None:
return
entry_data = self._entry_var.get()
if entry_data == "":
return
values = self.filter_function(entry_data)
if values:
self._build_listbox(values)
def unpost_listbox(self, _event: Union[None, tk.Event] = None) -> str:
if self._listbox is not None:
self._listbox.master.destroy()
self._listbox = None
return ""
def get_value(self) -> str:
return self._entry_var.get() # type: ignore[no-any-return] # mypy bug
def set_value(self, text: str, close_dialog: bool = False) -> None:
self._set_var(text)
if close_dialog:
self.unpost_listbox()
self.icursor(END)
self.xview_moveto(1.0)
def _set_var(self, text: str) -> None:
self._entry_var.trace_remove("write", self._trace_id)
self._entry_var.set(text)
self._trace_id = self._entry_var.trace_add("write", self._on_change_entry_var)
def update_entry_from_listbox(self, _event: Union[None, tk.Event]) -> str:
if self._listbox is not None:
current_selection = self._listbox.curselection() # type: ignore[no-untyped-call]
if current_selection:
text = self._listbox.get(current_selection)
self._set_var(text)
self._listbox.master.destroy()
self._listbox = None
self.focus()
self.icursor(END)
self.xview_moveto(1.0)
return "break"
def _previous(self, _event: Union[None, tk.Event]) -> str:
if self._listbox is not None:
current_selection = self._listbox.curselection() # type: ignore[no-untyped-call]
if len(current_selection) == 0:
self._listbox.selection_set(0)
self._listbox.activate(0)
else:
index: int = int(current_selection[0])
self._listbox.selection_clear(index)
if index == 0:
index = END # type: ignore[assignment]
else:
index -= 1
self._listbox.see(index)
self._listbox.selection_set(first=index)
self._listbox.activate(index)
return "break"
def _next(self, _event: Union[None, tk.Event]) -> str:
if self._listbox is not None:
current_selection = self._listbox.curselection() # type: ignore[no-untyped-call]
if len(current_selection) == 0:
self._listbox.selection_set(0)
self._listbox.activate(0)
else:
index = int(current_selection[0])
self._listbox.selection_clear(index)
if index == self._listbox.size() - 1:
index = 0
else:
index += 1
self._listbox.see(index)
self._listbox.selection_set(index)
self._listbox.activate(index)
return "break"
if __name__ == "__main__":
def main() -> None:
list_of_items = [
"Cordell Cannata",
"Lacey Naples",
"Zachery Manigault",
"Regan Brunt",
"Mario Hilgefort",
"Austin Phong",
"Moises Saum",
"Willy Neill",
"Rosendo Sokoloff",
"Salley Christenberry",
"Toby Schneller",
"Angel Buchwald",
"Nestor Criger",
"Arie Jozwiak",
"Nita Montelongo",
"Clemencia Okane",
"Alison Scaggs",
"Von Petrella",
"Glennie Gurley",
"Jamar Callender",
"Titus Wenrich",
"Chadwick Liedtke",
"Sharlene Yochum",
"Leonida Mutchler",
"Duane Pickett",
"Morton Brackins",
"Ervin Trundy",
"Antony Orwig",
"Audrea Yutzy",
"Michal Hepp",
"Annelle Hoadley",
"Hank Wyman",
"Mika Fernandez",
"Elisa Legendre",
"Sade Nicolson",
"Jessie Yi",
"Forrest Mooneyhan",
"Alvin Widell",
"Lizette Ruppe",
"Marguerita Pilarski",
"Merna Argento",
"Jess Daquila",
"Breann Bevans",
"Melvin Guidry",
"Jacelyn Vanleer",
"Jerome Riendeau",
"Iraida Nyquist",
"Micah Glantz",
"Dorene Waldrip",
"Fidel Garey",
"Vertie Deady",
"Rosalinda Odegaard",
"Chong Hayner",
"Candida Palazzolo",
"Bennie Faison",
"Nova Bunkley",
"Francis Buckwalter",
"Georgianne Espinal",
"Karleen Dockins",
"Hertha Lucus",
"Ike Alberty",
"Deangelo Revelle",
"Juli Gallup",
"Wendie Eisner",
"Khalilah Travers",
"Rex Outman",
"Anabel King",
"Lorelei Tardiff",
"Pablo Berkey",
"Mariel Tutino",
"Leigh Marciano",
"Ok Nadeau",
"Zachary Antrim",
"Chun Matthew",
"Golden Keniston",
"Anthony Johson",
"Rossana Ahlstrom",
"Amado Schluter",
"Delila Lovelady",
"Josef Belle",
"Leif Negrete",
"Alec Doss",
"Darryl Stryker",
"Michael Cagley",
"Sabina Alejo",
"Delana Mewborn",
"Aurelio Crouch",
"Ashlie Shulman",
"Danielle Conlan",
"Randal Donnell",
"Rheba Anzalone",
"Lilian Truax",
"Weston Quarterman",
"Britt Brunt",
"Leonie Corbett",
"Monika Gamet",
"Ingeborg Bello",
"Angelique Zhang",
"Santiago Thibeau",
"Eliseo Helmuth",
]
root = tk.Tk()
root.geometry("300x300")
combobox_autocomplete = EntryWithDynamicalyFilteredListbox(
root, list_of_items=list_of_items, ignorecase_match=True, startswith_match=False
)
combobox_autocomplete.pack()
combobox_autocomplete.focus()
root.mainloop()
main()