QListView inside QTreeWidget
-
Hello,
I was just wondering if it is possible to place QListView (or QListWidget) inside QTreeWidget. By "inside" I mean structure like this:
[item_1st_Level]
------[item_2nd_Level]
------------[item_3rd_Level]
| 1 2 3 4 |
| 5 6 7 8 |------------[item_3rd_Level]
Where item_1st_Level, item_2nd_Level, item_3rd_Level are regular QTreeWidgetItem and numbers 1 2 ... 8 represent QListView which has ViewMode set as IconMode.
Do You have any ideas how to it?
I was thinking about subclassing QTreeWidgetItem but I don't know how to place QListView inside it. -
Thanks Andre for Your help. I will have a look at it, but at the moment I changed idea of solving this problem.