QSearchableListWidget#
QSearchableListWidget is a variant of
QListWidget that add text entry
above list widget that allow to filter list of available options.
Due to implementation details, this widget it does not inherit directly from
QListWidget but it does fully
satisfy its api. The only limitation is that it cannot be used as argument of
QListWidgetItem constructor.
from qtpy.QtWidgets import QApplication
from superqt import QSearchableListWidget
app = QApplication([])
slider = QSearchableListWidget()
slider.addItems(["foo", "bar", "baz", "foobar", "foobaz", "barbaz"])
slider.show()
app.exec_()
