CDT
CDT

Reputation: 10621

Qt - What's the corresponding widget to this picture in Qt?

enter image description here

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

Answers (1)

Andreas Fester
Andreas Fester

Reputation: 36630

It looks like a QTreeWidget (or QTreeView) with custom QItemDelegates.

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:

enter image description here

Upvotes: 3

Related Questions