qitemdelegate

QListView/QListWidget with custom items and custom item widgets

僤鯓⒐⒋嵵緔 提交于 2019-11-26 21:51:28
I'm writing a PyQt application 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. To clarify, the custom widgets are interactive (contain buttons), so the solution requires more than painting a widget. Idan K I think you need to subclass QItemDelegate .

QListView/QListWidget with custom items and custom item widgets

ぃ、小莉子 提交于 2019-11-26 08:04:47
问题 I\'m writing a PyQt application 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. To clarify, the custom widgets are interactive (contain buttons),