How do i do that?
Actually my main goal is to get which checkbox in the QTreeWidget
is checked. But this I can do if you guys help me out with that one.
Well, I cannot find a method that gives me the QList<QTreeWidgetItem *>
again so I could go all over the list and check if the checkboxes are checked(weird sentence, huh?).
QTreeWidget::selectedItems()
does not do what I want. It actually gets the selected item (which can be just one. So I don't know what the itemS means here. I might be wrong anyway).
My main goal NOW is: go through the QTreeWidget
being able to do whatever I want with the items of it.
Thanks in advance.