Hi,

I am starting to develop with Qt so I am sorry if my doubt is too obvious.

I am developing an UI on which there is a list that display "complex" items. I said "complex" because each item has an uncommon design and a lot of information and pictures. I have read about QListView and found I can only easily use Strings item on it. After research a little more I found out that using a QItemDelegate I would have more control on what I will render for each item using paint method.

However I would like to create a composite Widget (with layout, picture and labels) and render it as an item using ItemDelegate::paint (or another method you suggest me).

Any help is appreciated!

Thanks in advance.

Rafael