how to display "complex" widgets in a list in pyqt?
- by Giorgio Gelardi
I'm quite new to QT and I have to display a list of "panels" like this:
My datamodel handles different classes' instances, so having more than one panel layout would be great - but it's not a requirement. Btw I have to catch mouse clicks on the images to execute related actions.
I'm thinking about use some html capable widget (QWebPage?) to render the items in a QListView or QListWidget, but as I said, I don't know QTs so much and need a direction (delegates? stylesheets?).
Any help will be appreciated.