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.
Asked
Active
Viewed 165 times
1 Answers
3
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:

Community
- 1
- 1

Andreas Fester
- 36,091
- 7
- 95
- 123
-
How can I insert default categories, like the `TCP Server`, `TCP Client` above, to the Tree View with Qt designer ?? – CDT May 23 '13 at 07:18
-
My bad, I tried tree view instead and found it cannot add items. Tree widget can. Thanks a lot ! – CDT May 23 '13 at 07:57