how to word wrap a QTreeWidgetItem
- by japs
hello all,
i have to populate a QTreeWidget with items (or children of items) that may happen to be too long to fit in a single line, so i'm looking for a way to word wrap them.
i thought
myQTreeWidget.setWordWrap(True)
(done via QtDesigner4) would have done the job, but that doesn't seem to be the case.
i don't konw if it is relevant, but the tree is enveloped in a splitter frame, so the wrapping should be somehow dynamic to allow resizing of the splitter.
Any ideas? I use PyQt4, but hints in any language/binding would be much appreciated.
have a good day all.