Reputation: 10621
When one of the categories is clicked, a list of instances will cascade down and each one is also clickable. Like file manager in Windows.
Upvotes: 0
Views: 174
Reputation: 36630
It looks like a QTreeWidget
(or QTreeView
) with custom QItemDelegate
s.
See also HowTo create delegate for QTreeWidget?.
In QT Designer, you can edit the contents of the tree widget through the "Edit Items" menu entry from the context menu which opens the "Edit Tree Widget" dialog:
Upvotes: 3