QListView/QListWidget with custom items
- by Daniel
I'm writing my first Qt application with PyQt and am having some trouble creating a custom list view. I'd like the list to contain arbitrary widgets (one custom widget in particular). How would I go about this?
It seems that the alternative would be to create a table or grid view wrapped in a scrollbar. However, I'd like to be able to take advantage of the model/view approach as well as the nesting (tree-view) support the built-ins handle.
EDIT: To clarify, this widget is interactive (contains buttons), so the solution requires more than painting a widget.