Reputation: 10661
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: 175
Reputation: 36649
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